-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (87 loc) · 1.71 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
padding: 0;
margin:0;
box-sizing: border-box;
}
body{
background-color: #dabc95;
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.heading{
text-align: center;
padding:15px;
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: azure;
}
.main-dev{
width: 100vw;
min-height: 80vh;
display: grid;
place-items: center;
}
.inner-section{
/* width: 50vw; */
padding: 3rem 8rem;
background-color: rgb(255, 255, 255);
padding:20px 25px;
border-radius: 1rem;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.inner-section .question{
margin-bottom:20px;
font-size: 1.4rem;
}
.inner-section li{
list-style-type: none;
margin: 10px;
font-size: 1rem;
}
input{
cursor: pointer;
}
#submit ,.btn{
padding: 0.8rem 1.8rem;
outline: none;
font-size: 1.3rem;
font-weight: 400;
display: block;
margin:auto;
border-radius: 30px;
border: none;
color: #fff;
background-color: #795548;
cursor: pointer;
}
#submit:hover{
background-color: #343333;
}
.footer{
text-align: center;
font-family: cursive;
}
#showScore{
background-color: #606060;
margin-top: 1rem;
padding:1rem 1rem;
font-size: 1rem;
font-weight: 500;
border-radius: 1rem;
color: #ffffff;
text-align: center;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.scoreArea{
display: none;
}
#showScore .btn{
background-color: #ed8e53;
font-size: 1rem;
font-weight: 600;
margin-top:10px;
}
#showScore .btn:hover{
background-color: #be0404;
}