-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
101 lines (75 loc) · 1.45 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
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
body {
font-family: Roboto;
font-weight: 300;
font-size: 20px;
background: black;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
cursor: default;
}
#container {
width: 800px;
margin: 20px auto 0 auto;
}
svg {
background: #00E94F;
box-shadow: 0 0 50px 0px rgba(0, 0, 0, 0.5) inset;
}
#solve-button {
width: 410px;
height: 50px;
background: #00E94F;
border: 1px solid #026223;
font-family: Roboto;
font-weight: 500;
font-size: 20px;
outline: none;
cursor: pointer;
}
#solve-button:hover {
background: #00CE44;
}
#solve-button:active {
background: #00A032;
}
#clear-button {
width: 125px;
height: 50px;
background: #E80000;
border: 1px solid #630000;
font-family: Roboto;
font-weight: 500;
font-size: 20px;
outline: none;
cursor: pointer;
}
#clear-button:hover {
background: #BC0000;
}
#clear-button:active {
background: #960000;
}
select {
width: 100px;
height: 50px;
background: #00A4E5;
border: 1px solid #006B96;
font-family: Roboto;
font-weight: 500;
font-size: 20px;
}
#hint-size-selector {
width: 150px;
}
h1 {
margin: 0 0 10px 0;
color: white;
font-weight: 300;
}
h2 {
margin: 0 0 20px 0;
color: #aaa;
font-weight: 300;
font-size: 20px;
}