forked from COPS-IITBHU/Debugit_2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion.css
More file actions
71 lines (70 loc) · 1.3 KB
/
question.css
File metadata and controls
71 lines (70 loc) · 1.3 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
@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');
body{
background-color: purple;
font-family: 'Nova Square', cursive;
text-align: center;
}
header{
font-size: 70px;
margin-top: 40px;
margin-bottom: 30px;
text-align: center;
color: white;
}
li{
list-style: none;
background-color: violet;
margin-top: 15px;
border-radius: 10px;
box-shadow: 0 4px 0 0 rgb(84, 9, 84);
height: 50px;
font-size: 25px;
cursor: pointer;
}
li:hover{
background-color: rgb(255, 0, 255);
}
.option{
margin-top: 30px;
}
.head{
display: inline;
}
.head .score{
color: pink;
display: inline;
float: left;
}
.head .question-number{
color: pink;
display: inline;
float: right;
}
#quit{
background-color: violet;
margin-top: 15px;
border-radius: 10px;
box-shadow: 0 4px 0 0 rgb(84, 9, 84);
height: 50px;
font-size: 25px;
cursor: pointer;
}
#question{
color: white;
}
#quit:hover{
background-color: rgb(255, 0, 255);
}
#lifeline{
background-color: violet;
margin-top: 15px;
border-radius: 10px;
box-shadow: 0 4px 0 0 rgb(84, 9, 84);
height: 50px;
font-size: 25px;
cursor: pointer;
margin-left: 50px;
}
#lifeline:hover{
background-color: rgb(255, 0, 255);
}