-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercicios.css
More file actions
45 lines (39 loc) · 835 Bytes
/
exercicios.css
File metadata and controls
45 lines (39 loc) · 835 Bytes
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
body.exercicio {
grid-template-rows: 120px 60px 1fr 60px;
grid-template-areas:
"cabecalho"
"navegacao"
"principal"
"rodape";
}
.principal {
height: calc(100vh - 240px);
}
.navegacao {
grid-area: navegacao;
display: flex;
justify-content: flex-end;
align-items: center;
background-color: #555;
}
.navegacao > a {
text-decoration: none;
color: #FFF;
font-weight: 300;
font-size: 1.3rem;
background-color: #2196f3;
padding: 5px 10px;
margin-right: 10px;
}
.navegacao > a.verde { background-color: #4CAF50; }
.navegacao > a.vermelho { background-color: #F44336; }
.conteudo {
font-size: 2rem;
}
.conteudo > .titulo {
font-size: 2.5rem;
font-weight: 300;
padding-bottom: 10px;
border-bottom: 1px solid #999;
margin-bottom: 20px;
}