-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaaps1.css
122 lines (103 loc) · 1.91 KB
/
aaps1.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
*, *::before, *::after {
box-sizing: border-box;
}
:root {
--hue-neutral: 23;
--hue-wrong: 0;
--hue-correct: 145;
}
h1{
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;;
color:green ;
text-shadow: 2px 2px black;
text-decoration : none;
text-align: center;
text-decoration:underline;
}
h3{
padding-bottom: 20px;
text-align: center;
color: black;
font-size: 20px;
}
body {
--hue: var(--hue-neutral);
font-family:inherit;
padding:0;
margin: 0;
display: flex;
width: 100vw;
height: 100vw;
justify-content: center;
align-items: center;
background-image: url(https://s3.envato.com/files/144797738/sightsignal-mysteryquestionmarkquizloop1IMG.jpg);
}
body.correct {
--hue: var(--hue-correct);
}
body.wrong {
--hue: var(--hue-wrong);
}
.container {
font-size: 20px;
width: 50%;
max-width: 90%;
background-color:white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 7px black;
background-image:url(https://p7.hiclipart.com/preview/378/613/232/question-mark-computer-icons-desktop-wallpaper-clip-art-question-mark.jpg)
}
.btn-grid {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 10px;
margin: 20px 0;
}
.btn {
--hue: var(--hue-neutral);
border: 1px solid hsl(var(--hue), 100%, 30%);
background-color: black;
border-radius: 20px;
padding: 12px 24px;
color: white;
outline-color: black;
t
}
.btn:hover {
border-color: black;
opacity: 0.5;
background-color: white;
color: black;
}
.btn.correct {
--hue: var(--hue-correct);
color:green;
}
.fa-certificate {
color: orange;
border: black;
}
.abc {
text-align: center;
}
.btn.wrong {
--hue: var(--hue-wrong);
color: red;
}
.start-btn, .next-btn {
font-size: 1.5rem;
font-weight: bold;
padding: 10px 20px;
}
.controls {
display: flex;
justify-content: center;
align-items: center;
}
.hide {
display: none;
}
#question {
text-decoration: none;
}