-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 846 Bytes
/
style.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
body {
background-color: rgb(217, 217, 217);
font-family: sans-serif;
text-align: center;
}
#title {
font-size: 48px;
}
#container {
box-shadow: 4px 4px 5px black;
background: linear-gradient(#2E3192, #1BFFFF);
padding: 25px;
border-radius: 20px;
color: white;
margin-top: 125px;
width: 50%;
margin-left: 350px;
}
#question {
font-size: 40px;
font-weight: bolder;
}
#ans {
border: none;
font-size: 20px;
padding: 10px;
border-radius: 10px;
}
button {
background-color: red;
font-size: 20px;
cursor: pointer;
padding: 10px;
border: none;
color: white;
border-radius: 10px;
}
button:hover {
background-color: hsl(0, 100%, 60%);
}
button:active {
background-color: hsl(0, 100%, 70%);
}