summaryrefslogtreecommitdiff
path: root/static/styles.css
blob: 76fe5dac732577631e87baa311506402832c9317 (plain)
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
#board {
	display: contents;
}

#answers {
	display: contents;
}

#game {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: .5em;
}

.box {
	border: 1px darkslategrey dotted;
	border-radius: 4px;
	word-break: break-all;
	text-overflow: ellipsis;
	padding-top: 2em;
	padding-bottom: 2em;
	text-align: center;
	font-family: Cantarell;
	cursor: pointer;
	user-select: none;
}

.box:hover {
	border: 1px darkslategrey solid;
	background: #f7f1e4;
}

.selected {
	border: 1px darkslategrey solid;
	background: #cec9bd !important;
}

#url {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.answer {
	grid-column-start: 1;
	grid-column-end: 5;
	border: 1px darkslategrey dotted;
	border-radius: 4px;
	word-break: break-all;
	text-overflow: ellipsis;
	padding-top: 2em;
	padding-bottom: 2em;
	text-align: center;
	font-family: Cantarell;
}

.answerline {
	font-weight: bold;
	font-size: large;
}