-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmob_styles.css
106 lines (84 loc) · 1.59 KB
/
mob_styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@import url("fonts/fonts.css");
@import url("mob_bottom.css");
@import url("pagination.css");
* {
/* Avoid fat fonts and custom browser margin values */
font-weight: lighter;
margin: 0;
padding: 0;
color: #56565b;
}
html {
background-color: #56565b;
}
h1, h2 {
text-transform: uppercase;
}
h1 {
letter-spacing: -1px;
font-family: "LatoHairline";
margin-top: 32px;
margin-bottom: 32px;
}
#top {
background-image: url("img/pixel_branco.png");
background-repeat: repeat-x;
}
#intern {
background-image: url("img/pixel_branco.png");
background-repeat: repeat-x;
min-height: 500px;
padding: 32px;
}
#middle {
font-family: "LatoLight";
}
#middle p {
color: black;
}
#middle a {
font-family: "LatoBlack";
}
/* title */
#welcome {
font-family: "LatoHairline";
font-size: 40px;
line-height: 55px;
margin-top: 0px;
}
#welcome:first-line {
font-size: 48px;
}
#welcome strong {
font-family: "LatoLight";
}
/* slides */
.slides_container {
background-image: url("img/mob_indextitle.png");
background-repeat: no-repeat;
}
.slides_container div {
height: 742px;
width: 100%;
background-repeat: no-repeat;
background-position: left bottom;
}
#highlight01 {
background-image: url("img/mob_highlight_01.png");
}
#highlight02 {
background-image: url("img/mob_highlight_02.png");
}
#highlight03 {
background-image: url("img/mob_highlight_03.png");
}
/* pagination */
ul.pagination {
position: absolute;
top: 20px;
left: 50%;
margin-left: -40px;
}
.clear {
clear: both;
}