-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (50 loc) · 1.01 KB
/
style.css
File metadata and controls
60 lines (50 loc) · 1.01 KB
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
* {
margin: 0;
padding: 0;
color: white;
}
.cabecalho {
background-color: #273447;
color: white;
display: flex;
justify-content: space-around;
align-items: center;
padding: 24px 0;
border-bottom-left-radius: 30%;
border-style: dotted;
border-color: #5F7D41;
}
.cabecalho-imagem{
width: 30%;
margin: -20 0 0 -70;
}
.cabecalho-nome-escola{
display:block;
font-size: 48px;
padding: 50px 0;
margin: 0 0 0 -90;
border: solid;
border-radius: 20%;
border-style: dotted;
border-color: #5F7D41;
}
.cabecalho-lista-item{
display: inline-block;
margin: 16px 16px;
font-size: 24px;
border: solid;
border-radius: 20%;
border-style: dotted;
border-color: #5F7D41;
}
.main-superior{
background-color: #5F7D41;
border-radius: 5%;
}
.main-inferior{
background-color: #5F7D41;
border-radius: 5%;
}
.footer{
background-color: #273447;
}