-
Notifications
You must be signed in to change notification settings - Fork 0
/
eu.css
123 lines (101 loc) · 1.85 KB
/
eu.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
body {
background-color: rgb(0, 0, 0);
color: rgb(72, 70, 70);
font-family: 'Times New Roman', Times, serif;
font-size: 30px;
}
ul {
display: flex;
justify-content: space-between;
list-style-type: none;
align-items: center;
padding: 5px;
flex-wrap: wrap;
}
a {
color: rgb(112, 104, 104);
text-decoration: none;
text-align: center;
display: block;
}
header img {
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid rgb(185, 173, 173);
margin: 10px;
}
header p {
font-size: 20px;
}
.footerCab img {
width: 100%;
height: auto;
}
.dimensao {
padding: 0px 100px;
}
.footerRod {
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px;
}
.footerRod a img {
width: 250px;
height: 250px;
border-radius: 50%;
border: 5px solid rgb(185, 183, 173);
margin: 10px;
}
.footerRod a {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin: 10px;
}
.footerRod p {
font-size: 20px;
margin-top: 5px;
}
nav a:hover{
color: red;
}
.text-content h1:hover{
color: red;
}
footer p:hover{
color:red
}
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
.dimensao {
padding: 0 50px;
}
body {
font-size: 20px;
}
}
@media (max-width: 480px) {
.dimensao {
padding: 0 20px;
}
body {
font-size: 16px;
}
header img {
width: 100px;
height: 100px;
margin: 5px;
}
.footerRod a img {
width: 60px;
height: 60px;
margin: 5px;
}
.footerRod p {
font-size: 16px;
margin-top: 3px;
}
}