-
Notifications
You must be signed in to change notification settings - Fork 0
/
StyleSheet.css
62 lines (61 loc) · 1.09 KB
/
StyleSheet.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
body{
background: rgb(0,136,200);
font-family: Arial, Verdana, sans-serif;
}
#triviaGame{
width: 100%;
padding: 10px;
margin:0 auto;
max-width:600px;
}
#scoreCard{
background: rgb(255,255,255);
box-shadow: 0 18px 30px 0 rgba(0,0,0,.15);
border-radius: 4px;
max-width: 600px;
padding: 15px;
text-align: center;
font-size: 64px;
margin: 12px 0 36px 0;
color: rgb(0, 113, 160);
}
#scoreCard p{
font-weight:bold;
font-size: 24px;
padding: 0;
margin: 12px;
}
#answerResult, #question{
font-size: 24px;
color: rgb(255,255,255);
}
#answerResult{
background: rgb(0, 160, 225);
margin-bottom: 20px;
}
#answerResult.wrong,
#answerResult.correct{
padding: 10px;
background: rgb(192,0,27);
}
#answerResult.correct{
background: rgb(0,192,54);
}
#question{
margin:10px 0;
}
#question:before{
content: "Q: ";
}
button{
background: rgb(255,255,255);
color: rgb(0, 113, 160);
border: none;
padding: 10px;
font-size: 24px;
margin: 5px 0;
width:100%;
}
button:hover{
cursor: pointer;
}