-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (59 loc) · 1006 Bytes
/
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
/*
Este estilo é para estilizar todo o conteudo
desse programa. Vou criar fontes mais grandes para
quem tem problemas de vistas poder exergar com mais
facilidade.
*/
body{
background-color: #ddd;
padding: 0px;
}
iframe{
width:100vw;
height:100vh;
}
#voltar{
font-size: 30px;
font-weight: bold;
background-color: white;
padding: 15px;
border: 1px solid black;
}
#voltar a{
padding: 10px;
border-radius: 5px;
transition: 0.5s;
}
#voltar a:hover{
background-color: #ccc;
transition: 0.5s;
}
article{
width: 80%;
min-width: 400px;
max-width: 900px;
background-color: white;
margin: 30px auto;
padding: 10px;
border: 1px solid black;
}
h1{
font-size: 55px;
}
p, li{
font-size: 22px;
}
li{
margin-top: 20px;
padding: 5px;
border-radius: 10px;
transition: 0.5s;
}
li:hover{
background-color: #ccc;
transition: 0.5s;
}
a{
text-decoration: none;
color: black;
}