-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
69 lines (57 loc) · 1.1 KB
/
index.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
html {
min-width: 100vw;
min-height: 100vh;
}
body {
background: linear-gradient(135deg,#ffffff, #abbaab);
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
h1 {
font-family: cursive;
}
.super-board {
border-collapse: collapse;
border-style: hidden;
}
.super-board-row > td {
border: 5px solid black;
}
.super-board-row table {
border-collapse: collapse;
border-style: hidden;
}
.super-board-row table td {
border: 1px solid black;
width: 2rem;
height: 2rem;
max-width: 2rem;
max-height: 2rem;
}
.super-board-row > td button {
width: 100%;
height: 100%;
background-color: Transparent;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
cursor: pointer;
overflow: hidden;
outline: none;
}
.super-board-row > td button:disabled {
cursor: not-allowed;
}
.blue-taken {
background-color: rgba(0, 0, 255, 0.2);
}
.red-taken {
background-color: rgba(255, 0, 0, 0.2);
}
.tied {
background-color: rgba(255, 255, 0, 0.2);
}
.unplayable {
background-color: rgba(0, 0, 0, 0.2)
}