-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 1.16 KB
/
style.css
File metadata and controls
65 lines (56 loc) · 1.16 KB
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
body{
margin: 0;
padding: 0;
height: 100vh;
width: 100%;
background: url('imagenes/background.png') center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
align-items: center;
flex-direction: column;
}
p{
margin-top: 50px;
margin-bottom: 50px;
font-family: 'PixelFont', monospace;
font-size: 24px;
color: white;
text-align: center;
line-height: 1.5;
}
img{
margin-top: 15px;
width: 250px;
}
button {
background-color: #4CAF50;
border-radius: 10px;
color: white;
font-size: 15px;
cursor: pointer;
}
button:hover{
background-color: #458d47;
transform: scale(1.09,1.09);
}
button:disabled{
background-color: #536354;
border-radius: 10px;
color: white;
font-size: 15px;
cursor: pointer;
}
#canvas {
background: url('imagenes/background_lvl2.png') center;
background-repeat: no-repeat;
background-size: 605px 420px;
border-radius: 10px;
border: solid 5px rgb(76, 57, 44);
}
#seccionBotones {
margin-top: 20px;
}
section > *{
margin: 2px;
}