-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteststyle.css
143 lines (125 loc) · 2.47 KB
/
teststyle.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body {
background-color: #eae7dc;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.info {
display: flex;
align-items: center;
justify-content: space-around;
height: 90vh;
margin: 1rem;
}
.topic {
/* height: 80%; */
display: grid;
align-items: center;
}
.image {
text-align: center;
}
.quiz-container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
width: 600px;
overflow: hidden;
}
.quiz-header {
padding: 3rem;
}
h2 {
padding: 1rem;
text-align: center;
margin: 0;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
font-size: 1.2rem;
margin: 1rem 0;
}
ul li label {
cursor: pointer;
}
#submit,
#again {
background-color: #7cb888;
color: #fff;
border: none;
display: block;
width: 100%;
cursor: pointer;
font-size: 1.1rem;
font-family: inherit;
padding: 1.3rem;
}
#submit:hover {
background-color: #088d30;
}
#submit:focus {
outline: none;
background-color: #1fb612;
}
.alpha-slab {
color: #e85a4f;
font-family: "Lobster Two";
font-size: 5.5rem;
text-align: center;
-webkit-text-stroke: 1px black;
}
.subhead {
color: #e85a4f;
font-size: 2.2rem;
text-align: center;
-webkit-text-stroke: 0.6px black;
}
.prescribe {
color: #03942f;
text-align: center;
font-size: 1.2rem;
/* font-style: italic; */
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
padding: 1rem;
}
.prescribe-head {
text-align: center;
font-size: 1.5rem;
/* font-style: italic; */
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
padding: 1rem;
}
/*
.back-btn button {
cursor: pointer;
position: absolute;
border-radius: 1rem;
padding: 0.5rem;
margin-left: 50px;
background-color: #1ca438;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
CSS */
.back-btn button {
cursor: pointer;
position: absolute;
font-size: 16px;
font-weight: 200;
padding: 0.5rem;
margin-left: 50px;
background-color: #53e758;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
height: 6%;
width: 8%;
}
#toptag {
font-size: 1.2rem;
background: #10982d;
color: white;
border: solid 2px #10982d;
display: flex;
align-items: center;
position: fixed;
bottom: 0;
}