-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.css
100 lines (86 loc) · 1.95 KB
/
quiz.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
body {
color: #271d1d;
background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgAnJ_8IEqSQ9snarMmgoM_NNdee9tISFsLg&s);
background-size: cover;
background-repeat: no-repeat;
background-position: bottom,center;
margin:0;
}
.question {
margin-bottom: 2rem;
background: #ffffff;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 105%;
color: #131111;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #fefefe;
color: #000000;
padding-top: 1em;
/* min-height: 8px; */
border-bottom: #000000 0.30rem solid;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.logo{
float: left;
width: 25%;
}
header a {
color: #0f0f0f;
text-decoration: none;
text-transform: uppercase;
font-size: 1.25rem;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: bold;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header nav {
float: right;
margin-top: 1rem;
}
header h1 {
float: left;
margin-top: 10px;
}
.btn {
background-color: #372c3e; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius:0.4rem;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #678968;
}
.btn.clicked {
background-color: #008CBA; /* Blue */
}
#quiz-result{
/* background-color:white; */
font-size: large;
font-weight:bold;
margin:3%;
/* padding:10px; */
}