-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (84 loc) · 1.67 KB
/
style.css
File metadata and controls
102 lines (84 loc) · 1.67 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
99
100
101
102
* {
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.cabeçalho {
background-image: linear-gradient(#7459AE, #EBC7E6);
color: #7459AE;
display: flex;
justify-content: space-around;
}
.cabeçalho-logo {
width: 25%;
height: 25%;
}
.cabeçalho-itens {
font-size: 36px;
display: inline-block;
margin: 5px;
padding-top: 20px;
font-weight: bold;
}
.formadores {
background-image: linear-gradient(#EBC7E6, #BFACE2);
color: #7459AE;
height: 300px;
}
.formadores-título {
padding-top: 80px;
text-align: center;
font-size: 64px;
}
.formadores-parágrafo {
text-align: center;
font-size: 36px;
padding-top: 20px;
}
.galeria {
background-image: linear-gradient(#BFACE2,#7459AE);
height: 1600px;
text-align: center;
}
.galeria-foto {
margin-top: 20px;
width: 300px;
height: 500px;
border-radius: 32px;
}
.galeria-titulo {
padding-top: 30px;
text-align: center;
font-size: 48px;
color: #7459AE;
}
.galeria-topo {
margin-top: 80px;
text-align: center;
font-size: 30px;
color: #7459AE;
}
.legenda {
text-align: center;
font-size: 30px;
color: #ffffff;
font-weight: bold;
}
.galeria-todos {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto auto;
}
.rodape {
background-image: linear-gradient(#7459AE, #EBC7E6);
color: #7459AE;
text-align: center;
height: 150px;
}
.copyright {
padding-top: 80px;
font-size: 30px;
color: #ffffff;
}