-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorario.css
189 lines (155 loc) · 4.16 KB
/
horario.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/* Estilos base */
body {
background-color: black;
color: rgb(72, 70, 70);
font-family: 'Times New Roman', Times, serif;
font-size: 15px;
}
ul {
display: flex;
justify-content: space-between;
list-style-type: none;
align-items: center;
padding: 10px;
}
a {
color: rgb(112, 104, 104);
text-decoration: none;
text-align: center;
}
.headerlink img {
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid rgb(185, 183, 173);
margin: 10px;
}
.footerCab img {
width: 100%; /* Ajustado para ocupar 100% da largura */
height: auto; /* Para manter a proporção da imagem */
}
.dimensao {
padding: 0 20px; /* Ajustado para espaçamento menor em telas menores */
}
main {
padding: 0 20px; /* Ajustado para espaçamento menor em telas menores */
text-align: initial;
}
.main-content {
display: flex;
flex-wrap: wrap; /* Permite que os itens se ajustem em várias linhas */
align-items: flex-start;
justify-content: space-between; /* Distribuição uniforme dos elementos */
}
.main-content img {
max-width: 100%; /* Para garantir que a imagem não ultrapasse o contêiner */
height: auto; /* Para manter a proporção da imagem */
border: 5px solid rgb(255, 255, 255);
margin-bottom: 20px; /* Espaçamento inferior aumentado */
}
.text-content h1, .text-content h2 {
margin: 10px 0;
}
.text-content h1 {
font-size: 4rem; /* Ajustado para uma unidade de medida mais flexível */
color: white;
margin-bottom: 10px;
}
.text-content h2 {
font-size: 3rem; /* Ajustado para uma unidade de medida mais flexível */
color: white;
margin-bottom: 10px;
}
.text-content p {
color: white;
font-size: 1.5rem; /* Ajustado para uma unidade de medida mais flexível */
margin-bottom: 20px; /* Espaçamento inferior aumentado */
}
.footerRod {
display: flex;
justify-content: space-around; /* Espaçamento uniforme entre os itens */
align-items: center;
padding: 10px;
}
.footerRod a img {
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid rgb(185, 183, 173);
margin: 10px;
}
.footerRod a {
text-align: center;
color: rgb(112, 104, 104);
text-decoration: none;
}
.hr p {
color: red;
text-align: left;
font-size: 30px;
}
nav a:hover{
color: red;
}
.text-content h1:hover{
color: red;
}
footer p:hover{
color:red
}
.hr img {
height: 250px;
width: 250px;
justify-content: left;
}
.hr {
width: 50%;
height: auto;
text-align: left;
}
.footerRod p {
margin: 0; /* Removido margin-top para melhor alinhamento */
}
/* Media queries para ajustes responsivos */
@media screen and (min-width: 768px) {
.dimensao {
padding: 0 50px;
}
main {
padding: 0 50px;
}
.main-content img {
width: 45%; /* Ajustado para ocupar 45% da largura em telas maiores */
margin-right: 2%; /* Espaçamento direito reduzido */
}
.text-content h1 {
font-size: 5rem; /* Ajustado para uma unidade de medida maior em telas maiores */
}
.text-content h2 {
font-size: 3.5rem; /* Ajustado para uma unidade de medida maior em telas maiores */
}
.text-content p {
font-size: 1.8rem; /* Ajustado para uma unidade de medida maior em telas maiores */
}
}
@media screen and (max-width: 767px) {
.dimensao {
padding: 0 10px;
}
main {
padding: 0 10px;
}
.main-content img {
width: 100%; /* Ajustado para ocupar 100% da largura em telas menores */
margin-bottom: 10px; /* Espaçamento inferior reduzido */
}
.text-content h1 {
font-size: 3rem; /* Ajustado para uma unidade de medida menor em telas menores */
}
.text-content h2 {
font-size: 2.5rem; /* Ajustado para uma unidade de medida menor em telas menores */
}
.text-content p {
font-size: 1.3rem; /* Ajustado para uma unidade de medida menor em telas menores */
}
}