-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (89 loc) · 2.11 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
93
94
95
96
97
98
99
100
101
102
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
html,body{
width: 100%;
height: 100%;
background-image: url(bg.gif);
background-repeat: no-repeat;
background-position: center;
}
.panel{
width: 90%;
max-width: 600px;
height: 420px;
margin: 100px auto 0;
padding: 20px;
border-radius: 30px;
display: flex;
flex-direction: column;
background: rgba( 255, 255, 255, 0.05 );
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
backdrop-filter: blur( 0px );
-webkit-backdrop-filter: blur( 0px );
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.panel h1{
font-weight: 200;
color: #fff;
border-bottom: 3px solid #fff;
padding-bottom: 12px;
}
.panel h1:hover{
color: #00C99D;
font-size: 33px;
}
.quiz{
padding: 15px 0;
}
#question{
font-size: 18px;
color: #fff;
font-weight: 600;
}
.btn{
background: #fff;
color: #222;
font-weight: 500;
width: 100%;
border: 1px solid #222;
padding: 10px;
margin: 10px 0;
text-align: left;
border-radius: 4px;
}
.btn:hover:not([disabled]){
/* background-color: #F7FEB8; */
background-color: #F7FEB8;
color: #414141;
text-decoration: none;
cursor: pointer;
}
.btn:disabled{
cursor: no-drop;
}
#next-btn{
background: #fff;
font-weight: 800;
width: 100px;
height: 30px;
border: 0;
padding: 20px auto 0;
margin: 20px auto 0;
border-radius: 4px;
display: block;
}
#next-btn:hover{
background-color: #00C99D;
color: #414141;
cursor: pointer;
}
.correct{
background: #00C99D;
}
.incorrect{
background-color: red;
}