-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
76 lines (65 loc) · 1.05 KB
/
estilo.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
body {
text-align: center;
font-size: large;
}
#num {
font-size: 20pt;
}
#bt {
background-color: rgb(129, 129, 129);
border-radius: 8px;
margin-top: 10%;
}
#info {
height: 6em;
}
.botao {
color: white;
width: 25%;
height: 3em;
border: none;
background-color: rgb(110, 110, 110);
margin-top: 1%;
}
.botao2 {
width:25%;
height: 3em;
border: none;
background-color: red;
color: white;
}
.botao3 {
border: none;
width: 25%;
height: 3em;
color: white;
background-color: rgb(26, 158, 26);
}
.botao:hover {
background-color: black;
color: white;
}
.botao2:hover {
background-color: rgb(138, 0, 0);
}
.botao3:hover {
background-color: rgb(9, 255, 0);
}
#finalizar {
margin-top: 10%;
width: 80%;
margin-left: 5%;
margin-right: 5%;
background-color: cyan;
border-color: rgb(0, 0, 0);
border-radius: 4px;
height: 4em;
}
#finalizar:hover {
background-color: darkblue;
color: White;
}
a {
text-decoration: none;
color:green;
}