-
Notifications
You must be signed in to change notification settings - Fork 16
/
mobile.css
107 lines (78 loc) · 1.25 KB
/
mobile.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
107
/** VERSAO TAMANHO MEDIO - TABLET **/
@media screen and (max-width: 900px) {
html {
font-size: 90%;
}
.title-1 {
font-size: 2.5rem; /* contexto / 16px = rem */
}
.title-1 + p {
margin: 0 auto 50px;
width: 80%;
}
/***
**** HEADER
***/
.header {
position: static;
padding: 0;
}
.header a,
.header li {
display: block;
}
.header a {
padding: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header li:last-child a {border-bottom: none;}
/***
**** DESTAQUE
***/
.highlight {
padding: 50px 0;
}
.highlight p {width: 80%; padding: 15px 0 25px;}
section {
padding: 50px 0;
}
.feature {
width: 49%;
text-align: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding-bottom: 40px;
}
.feature:last-child {border: none;}
.more-info {
width: 40%;
padding-bottom: 25px;
margin-right: 0;
}
.more-info p {width: 80%;}
.text {
width: 100%;
}
.offer img {
float: none;
max-width: 100%;
width: auto;
margin: 0 0 15px;
}
.offer h1,
.offer p {
width: 80%;
text-align: center;
margin: 0 auto;
}
}
/** VERSAO PEQUENA - CELULARES **/
@media screen and (max-width: 400px) {
html {
font-size: 75%;
}
.feature,
.more-info {
width: 100%;
}
}