-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
92 lines (75 loc) · 1.34 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
margin: 0;
background: #fafafa;
display: flex;
align-items: center;
height: 100vh;
}
.gameboard {
height: 100vh;
width: 100vh;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
max-height: 60vh;
max-width: 60vh;
}
.color {
width: 50%;
height: 50%;
display: inline-block;
}
.izquierda {
float: left;
}
.derecha {
float: left;
}
.azul {
background: #ffdd57;
}
.azul.light {
background: #ffeeab;
}
.morado {
background: #3273dc;
}
.morado.light {
background: #99b9ee;
}
.naranja {
background: #f14668;
}
.naranja.light {
background: #f8a3b4;
}
.verde {
background: #48c774;
}
.verde.light {
background: #a4e3ba;
}
.btn-start {
width: 400px;
height: 100px;
font-family: inherit;
font-size: 2.5rem;
padding: 0.5em 1em;
color: #ffffff;
border: none rgba(0, 0, 0, 0);
background-color: #00d1b2;
text-decoration: none;
border-radius: 6px;
border: 4px solid #fff; /* Green */
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 200px);
}
.btn-start-hover,
.btn-start:hover,
.btn-start:focus {
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.hide {
display: none;
}