-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
54 lines (48 loc) · 1.12 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
*{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* Definimos la fuente de todos los elementos del documento que lleven texto */
color: rgb(255, 255, 255);
}
html, body {
margin: 10 px;
padding: 5 px;
/* background-image: url('imagenes/backg.jpg'); */
background-size: 57%;
background-color: black;
}
canvas {
display: block;
}
#encabezado{
background-image: url('imagenes/fondo-b.png');
background-size: 251px;
height: 100px;
margin: 2px;
padding: 3px;
background-position: left;
background-color: rgba(0,0,0,20);
}
p{
font-size: larger;
font-weight: bold;
}
button{
color: rgb(0, 0, 0);
padding: 3px;
margin: 5px;
border-radius: 10px;
border: 2px solid rgb(118, 7, 170);
width: 180px;
transition-duration: 0.4s;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
font-size: Larger;
font-weight: bolder;
font-style: oblique;
}
.pie{
background-color: rgba(208, 218, 224, 0.13);
position: fixed;
width: 97%;
padding: 10px;
margin: 5px;
margin-top: 730px;
}