-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResponsividade.css
123 lines (99 loc) · 1.66 KB
/
Responsividade.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
@media screen and (min-width: 501px) and (max-width: 767px){
footer{
width: 640px;
}
header{
height: 40px;
width: 767px;
}
main{
padding: 0 0 10px 10px;
}
.logo{
width: 80px;
}
h1{
font-size: 60px;
margin-top: 50px;
color: #5C1362;
font-family: 'Rubik', sans-serif;
}
h3, p{
font-size: 20px;
color: #352c84;
font-family: "Red Hat Display", sans-serif;;
}
h2{
font-size: 30px;
color: #353c84;
font-family: 'Rubik', sans-serif;
}
}
@media screen and (min-width: 300px) and (max-width: 500px) {
header{
width: 500px;
height: 30px;
}
footer{
width: 500px;
}
.logo{
width: 80px;
}
main{
padding: 0 0 10px 10px;
}
h1{
font-size: 50px;
margin-top: 50px;
color: #5C1362;
font-family: 'Rubik', sans-serif;
}
h3, p{
font-size: 20px;
color: #352c84;
font-family: "Red Hat Display", sans-serif;
}
h2{
font-size: 30px;
color: #353c84;
font-family: 'Rubik', sans-serif;
}
}
@media screen and (min-width: 1541px) {
main{
margin: 5px 30px;
}
.mobile-menu{
padding-left: 50px;
}
nav{
justify-content: space-between;
}
.nav-home li {
margin: 50px;
margin-right: 150px;
}
.logo{
width: 150px;
margin-bottom: 30px;
margin-right: 50px;
}
h1{
color: #5C1362;
font-size: 70px;
font-family: 'Rubik', sans-serif;
margin-left: 25px;
padding-top: 60px;
}
h3, p{
color: #352C84;
font-size: 30px;
font-family: "Red Hat Display", sans-serif;
}
h2{
color: #352c84;
font-size: 50px;
font-family: 'Rubik', sans-serif;
}
}