-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanets.css
More file actions
58 lines (51 loc) · 1.09 KB
/
planets.css
File metadata and controls
58 lines (51 loc) · 1.09 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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-image: url(2137189.png);
background-size: cover;
}
#quiz-container {
background-color: rgb(10, 1, 32);
border-radius: 8px;
box-shadow: -2px -2px 13px rgba(237, 85, 85, 0.2);
padding: 20px;
max-width: 500px;
width: 100%;
text-align: center;
color: antiquewhite;
}
.question {
font-size: 18px;
margin-bottom: 10px;
}
.options button {
margin: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 4px;
background-color: rgb(22, 7, 61);
box-shadow: -2px -2px 13px rgba(237, 85, 85, 0.2);
color: #fff;
}
.options button:hover {
background-color: #010c18;
}
#result {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
#quiz-container button{
border-radius:20px ;
margin-top :15px ;
background-color: rgb(22, 7, 61);
box-shadow: -2px -2px 13px rgba(237, 85, 85, 0.2);
color: #fff;
}