-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglyphquiz.css
61 lines (61 loc) · 916 Bytes
/
glyphquiz.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
#content {
width:100%;
background:#f4f4f4;
display:inline-block;
}
.result {
width:50%;
height:400px;
float:left;
}
#winner {
background-color:green;
}
#loser {
background-color:red;
}
#quiz {
height:400px;
width:50%;
float:right;
background-color:black;
color:white;
}
.title {
font-size:x-large;
font-weight: bold;
text-align:center;
margin-top:10;
margin-bottom:20
}
.choices {
text-align:center;
}
li.choice {
padding:5px 30px 5px 0px;
margin:0;
list-style-type: none;
}
ul.foot li.foot {
float: left;
list-style-type: none;
border-right: 1px solid black;
padding: 0 .5em;
margin: 10px 0 10px 0;
}
ul.foot li:last-child.foot {
border: 0;
}
.glyph {
width: 150px;
margin: 0 auto;
}
a:visited.guess {
color: white
}
a:link.guess {
color: white
}
a:hover.guess {
background-color: green;
}