-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (134 loc) · 3.32 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
padding: 0;
margin: 0;
}
body{
color: white;
font-family: "Poppins", sans-serif;
}
.flex {
background-color:black;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 5px;
}
.imgcentro{
width: 10%;
}
/*imagens quadradas */
.quadrado {
background-color:#113c61;
flex-wrap: wrap;
text-align: center;
}
.quadrado:hover{
color: rgb(238, 238, 238);
transition: 400ms;
opacity: 0.55;
}
.imagem{
width: 280px;
padding: 1px;
}
.texto{
font-size: 20px;
text-align: center;
font-weight: 400;
}
/*HAMBURGUER*/
.cabecalho{
background-color: #083359;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.container{ /*sobe o menu dentro do header e alinha verticalmente*/
display: flex;
align-items: center;
}
.container__botao { /*esconde o botãozinho do check*/
display: none;
}
/*cria o icone do menu hamburguer e coloca dentro do header*/
.cabecalho__menu-hamburguer{
width: 24px;
height: 24px;
background-image: url(img/Menu.svg);
background-repeat: no-repeat;
background-position: center;
display: inline-block;
}
/* ajeita o icone do menu*/
.container__imagem{
padding: 2em;
}
/* .container__titulo {
display: flex;/*REVER POR QUE FUI EU QUEM PUS*/
color: greenyellow;
/* padding-left: 1em;
} */ */
.container__botao:checked~.container__rotulo>.cabecalho__menu-hamburguer {
/*esconde e mostra o menu*/
background-image: url("img/menuAberto.png");
}
.container__botao:checked~.container__rotulo {
/*o fundo do botao fica na cor escolhida*/
background: red;
}
/*OS ITENS DA LISTA / MODALIDADES */
.container__botao:checked~.lista-menu {
display: block; /* mostra a lista bloqueada pq se nao por isso ela some */
}
.lista-menu {
display: none;
left: 25px;
position: absolute;
top: 100%;
width: 25vw; /*largura do menu */
background-color: #083359;
list-style-type: none;
}
.lista-menu__link { /*tam e cor da fonte dos itens de modo geral*/
font-size: 22px;
color: whitesmoke;
}
.lista-menu__link:hover { /*tam e cor da fonte altera ao passar o mouse*/
font-size: 100px;
color: purple;
}
.lista-menu__item:hover { /*muda cor de fundo ao passar o mouse*/
background-color: rgb(185, 177, 225);
}
.lista-menu__titulo { /* acima onde esta escrito MODALIDADE*/
color: greenyellow;
font-size: 24px;
text-transform: uppercase;
}
.lista-menu__titulo, .lista-menu__item { /*o titulo MODALIDADE e todos os itens (MODALIDADES) irao ter recuo*/
padding: 1em;
background-color:black;
color: pink;
}
/*RODAPE */
footer{
width: 100%;
height: 6em;
bottom: 0px;
color: white;
background-color:#083359;
}
footer ul{
margin-bottom: 1em;
}
footer h2{
padding-top: 10px;
color:white;
text-align: center;
}
footer ul li{
color: #e0ba74;
text-align: center;
}