-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbigboard.css
More file actions
92 lines (80 loc) · 1.44 KB
/
bigboard.css
File metadata and controls
92 lines (80 loc) · 1.44 KB
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
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 200;
margin: 50px 0;
padding: 0;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
#outer {
width: 600px;
margin: 0 auto;
}
.answer {
cursor: pointer;
padding: 5px;
}
.answer .text {
display: inline-block;
width: 300px;
font-size: 1.75em;
}
.answer .score {
display: inline-block;
width: 100px;
text-align: right;
font-size: 2em;
font-weight: bold;
color: #777;
}
.answer .bigtext-no {
display: inline-block;
width: 300px;
font-size: 1.75em;
color: white;
}
.answer .bigscore-no {
display: inline-block;
width: 100px;
text-align: right;
font-size: 2em;
font-weight: bold;
color: white;
}
.answer .bigtext-yes {
display: inline-block;
width: 300px;
font-size: 1.75em;
}
.answer .bigscore-yes {
display: inline-block;
width: 100px;
text-align: right;
font-size: 2em;
font-weight: bold;
color: #777;
}
.answer.selected {
background-color: yellow;
}
.answer.selected .score {
color: black;
}
.details, .none {
font-weight: bold;
font-size: 2em;
border-style: dashed none none none;
border-color: #ccc;
border-width: 4px;
margin: 50px 10px;
padding: 10px 0px;
}
.none {
color: #777;
}
.inc {
cursor: pointer;
}