forked from TanishBansal9102/MyJavascriptGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.css
More file actions
58 lines (48 loc) · 798 Bytes
/
quiz.css
File metadata and controls
58 lines (48 loc) · 798 Bytes
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
#button button{
background-color: #4CAF50;
border: none;
color: white;
margin-top:20px;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
outline: none;
}
#button button:hover{
transform: scale(1.1);
background-color:#46a049;
}
#options h4{
background-color: #f1f1f1;
margin:3px auto;
font-weight: 400;
font-size:20px;
padding:4px;
}
#options h4:hover{
background-color: #e6e6e6;
}
#content{
font-family: "Segoe UI",Arial,sans-serif;
font-weight:200;
margin-left:30px;
margin-right: 100px;
}
.hide{
display:none;
}
input[type="radio"]{
cursor: pointer;
}
h3{
font-size:30px;
}
h2{
font-size:40px;
}
h1{
font-size:50px;
}