-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
75 lines (64 loc) · 1.04 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
body {
background-color: var(--main-bg);
color: var(--text);
display: flex;
flex-direction: column;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
line-height: 1.3;
user-select: none;
padding-bottom: 100px;
}
a {
color: var(--text);
}
.c-game-rules {
display: inline-block;
text-align: left;
margin: auto;
}
.c-create-game {
border: 5px solid var(--menu-border);
background-color: var(--menu-bg);
margin: 10px;
padding: 5px 10px;
}
#c {
border: 5px solid var(--c-border);
touch-action: manipulation;
}
.c-game-board {
display: inline-block;
text-align: left;
font-size: 16px;
}
.c-options {
margin-top: 20px;
width: 300px;
}
.c-theme {
border: solid thin;
padding: 4px 8px;
border-radius: 2px;
}
.c-theme-light {
color: #000;
background: #fff;
border-color: #000;
}
.c-theme-dark {
color: #eee;
background: #333;
border-color: #eee;
}
.c-theme-black {
color: #fff;
background: #000;
border-color: #fff;
}
.c-theme-mystic {
color: #cce;
background: #224;
border-color: #cce;
}