summaryrefslogtreecommitdiff
path: root/static/styles.css
blob: 99356ab53008ac8cad2a4e4b6fa997e95b99cdb6 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#board {
	display: contents;
}

#answers {
	display: contents;
}

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

@media only screen and (min-width: 700px) {
    #game {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.box {
	border: 1px darkslategrey dotted;
	border-radius: 4px;
	word-break: break-all;
	text-overflow: ellipsis;
    padding: .25em;
	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: 4;
	border: 1px darkslategrey dotted;
	border-radius: 4px;
	word-break: break-all;
	text-overflow: ellipsis;
    padding: .25em;
	padding-top: 2em;
	padding-bottom: 2em;
	text-align: center;
	font-family: Cantarell;
}

@media only screen and (min-width: 700px) {
    .answer {
        grid-column-end: 5;
    }
}


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