-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
80 lines (78 loc) · 1.09 KB
/
css.css
File metadata and controls
80 lines (78 loc) · 1.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
margin: 0;
background: #dedede;
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;
}
.left {
float: left;
}
.right {
float: left;
}
.celeste {
background: #22a6b3;
}
.celeste.light {
background: #7ed6df;
}
.violeta {
background: #be2edd;
}
.violeta.light {
background: #e056fd;
}
.naranja {
background: #f0932b;
}
.naranja.light {
background: #ffbe76;
}
.verde {
background: #6ab04c;
}
.verde.light {
background: #badc58;
}
.btn-start {
cursor: pointer;
width: 420px;
height: 100px;
background: #ecf0f1;
color: #2c3e50;
border: none;
border-bottom: 4px solid #c4c6c7;
border-radius: 8px;
font-size: 3em;
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 210px);
transition: .5s;
outline: none;
}
.btn-start:hover {
color: #ecf0f1;
background: #2c3e50;
border-bottom: 4px solid #1f3346;
}
.btn-start:active {
transform: scale(.95);
}
.hide {
display: none;
}