-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
110 lines (94 loc) · 1.62 KB
/
styles.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 0;
background: #e9e9e9;
display: flex;
align-items: center;
height: 100vh;
font-family: system-ui;
}
.gameboard {
height: 100vh;
width: 100vh;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
max-height: 60vh;
max-width: 60vh;
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
.color {
width: 50%;
height: 50%;
display: inline-block;
}
.left {
float: left;
}
.right {
float: left;
}
.celeste {
background: #22377c;
transition: 0.2s;
}
.celeste.light {
background: #123ece;
transform: scale(1.03);
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.violeta {
background: #7b1592;
transition: 0.2s;
}
.violeta.light {
background: #bf0ce7;
transform: scale(1.03);
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.naranja {
background: #a32727;
transition: 0.2s;
}
.naranja.light {
background: #e61111;
transform: scale(1.03);
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.verde {
background: #1c864c;
transition: 0.2s;
}
.verde.light {
background: #10e46f;
transform: scale(1.03);
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-start {
cursor: pointer;
width: 420px;
height: 100px;
background: #ecf0f1;
color: #2c3e50;
border: none;
border: 2px solid #2c3e50;
border-radius: 8px;
font-size: 2em;
letter-spacing: 1.5px;
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 210px);
transition: 0.5s;
outline: none;
}
.btn-start:hover {
color: #ecf0f1;
background: #2c3e50;
border-bottom: 4px solid #1f3346;
letter-spacing: -1px;
}
.btn-start:active {
transform: scale(0.95);
}
.hide {
display: none;
}