-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
100 lines (82 loc) · 1.34 KB
/
main.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
body {
background-color: lightgrey;
}
.text-center {
text-align: center;
}
.container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.cells {
width: 40px;
height: 40px;
border: 1px solid;
border-radius: 50%;
margin: 10px 5px;
cursor: pointer;
}
.hints-cell {
border-color: rgb(235, 235, 235);
}
.rows {
display: flex;
border: 1px solid dimgray;
padding: 0 10px;
}
.top-section {
display: flex;
}
.divider-horizontal {
border: 1px solid;
}
.colors-bar-container {
display: flex;
justify-content: space-between;
margin: 5px;
}
.red {
background-color: red;
border-color: red;
}
.green {
background-color: green;
border-color: green;
}
.cyan {
background-color: cyan;
border-color: cyan;
}
.blue {
background-color: royalblue;
border-color: royalblue;
}
.yellow {
background-color: yellow;
border-color: yellow;
}
.maroon {
background-color: maroon;
border-color: maroon;
}
.pink {
background-color: pink;
border-color: pink;
}
.purple {
background-color: purple;
border-color: purple;
}
.color-cell--selected {
border: 2px solid;
width: 38px;
height: 38px;
}
.guess-cell--selected {
background: gray;
cursor: default;
border-color: gray;
opacity: 0.2;
}