-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (65 loc) · 1.54 KB
/
styles.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
/*
Copyright 2019 Liam Kelly
This file is part of WebQuiz.
WebQuiz is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
WebQuiz is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with WebQuiz. If not, see <https://www.gnu.org/licenses/>.
*/
body {
background-color: lightgrey;
}
.Card {
border-radius: 2em;
position: absolute;
top: 10%;
left:10%;
width: 80%;
min-height: 20%;
background-color: white;
display: none;
z-index:1;
}
.AnswerChoice {
background-color: #EEEEEE;
text-align: center;
width: 65%;
}
.AnswerChoice a {
color: darkred;
text-decoration: none;
}
.Answer {
display: none;
border:0.1em solid black;
padding: 0.3em;
background-color: #EEEEEE;
position:absolute;
z-index:2;
}
button {
margin: 5%;
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
button:disabled {
background-color: grey;
}
.Title {
margin-top: 5%;
margin-bottom: 5%;
text-align: center;
font-size: 2.5em;
}
.Content {
margin-left: 10%;
margin-right: 10%;
text-align: justify;
font-size: 1.5em;
}