-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
55 lines (46 loc) · 961 Bytes
/
estilos.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
#titulo{
font-size: 50px;
}
/*boton uno*/
#botonone{
margin: 20px;
margin-bottom: 0;
position: relative;
padding: 10px 20px;
background-color: brown;
text-align: center;
color: aliceblue;
width: 80px;
border-radius: 10px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
transition: .3s;
}
#botonone:hover{
padding: 12px 22px;
cursor: pointer;
}
#botonone:active{
padding: 10px 20px;
}
/*boton dos*/
#botontwo{
margin: 20px;
margin-top: 10px;
padding: 10px 20px;
background-color: rgb(42, 50, 165);
text-align: center;
color: aliceblue;
width: 80px;
border-radius: 10px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
transition: .3s;
}
#botontwo:hover{
padding: 12px 22px;
cursor: pointer;
}
#botontwo:active{
padding: 10px 20px;
}