-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (75 loc) · 1.63 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
*{
margin: 0;
border: 0;
}
/*Header da página inicial*/
header{
background-color: rgb(15, 79, 175);
padding: 40px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
/*Header para retornar na página inicial*/
header h1, header h1 a:hover, header h1 a:active, header h1 a:link, header h1 a:visited{
text-align: center;
color: #ffffff;
text-decoration: none;
}
/*Gênios na página inicial*/
main{
background-color: rgb(231, 231, 231);
color: #333;
}
main .genios{
margin: 0 auto;
padding: 50px 0;
}
main .genios li{
display: inline-block;
text-align: center;
width: 30%;
vertical-align: top;
margin: 0 1.5%;
padding: 30px 20px;
box-sizing: border-box;
}
main .genios li:active{
border-color: #ffffff;
}
main .genios li:hover h2{
font-size: 34px;
}
main .genios h2{
font-size: 30px;
font-weight: bold;
}
main .genios img{
height: 20rem;
}
/*Parte sobre o gênio em especifico*/
main section{
text-align: center;
}
main section h2.nomeg{
padding: 30px;
font-family: Arial, Helvetica, sans-serif;
}
main section img{
width: 13rem;
}
main section p.paragrafo{
padding: 20px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
/*Rodapé*/
footer{
background-color: rgb(15, 79, 175);
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
font-style: italic;
padding: 40px;
color: #ffffff;
bottom: 0;
}
footer p.copyright{
color: rgb(173, 173, 173);
}