-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (78 loc) · 1.5 KB
/
style.css
File metadata and controls
98 lines (78 loc) · 1.5 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
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
* {
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.cabeçalho {
background-color: #F5F5F5;
color: #FFFFFF;
display: flex;
justify-content: space-around;
}
.cabeçalho-logo{
width: 10%;
height: 10%;
}
.cabeçalho-itens {
font-size: 36px;
margin: 5px;
display: inline-block;
font-weight: bold;
color: #145CA4;
padding-top: 30px;
}
.escola {
background-image: linear-gradient(#F5F5F5, #5D83AC);
width: 100%;
height: 350px;
}
.escola-título {
text-align: center;
color: #145CA4;
font-size: 48px;
padding-top: 100px;
}
.escola-parágrafo {
text-align: center;
font-size: 36px;
color:#F5F5F5;
padding-top: 50px;
}
.galeria {
background-image: linear-gradient(#5D83AC, #F5F5F5);
height: 1800px;
color: #FFFFFF;
justify-content: space-around;
}
.galeria-título{
padding-top: 50px;
font-size: 48px;
text-align: center;
}
.galeria-foto {
padding-top: 100px;
width: 240px;
height: 360px;
border-radius: 33px;
}
.flamula {
color: #1B436A;
font-size: 36px;
text-align: center;
}
.galeria-todos {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.rodape {
background-color: #5D83AC;
height: 50px;
}
.copyright {
text-align: center;
font-size: 30px;
color:#FFFFFF;
}