-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (63 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (63 loc) · 1.07 KB
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
:root {
--bg-navy-blue: #151945;
--lightblue: #569cff;
--blue: #286ac4;
}
body {
padding: 0;
margin: 0;
}
#title_bar {
background-color: var(--bg-navy-blue);
margin-left: 0;
margin-right: 0;
margin-top: 50px;
width: 100%;
}
#title_bar_headers {
margin: 15px auto;
width: 30%;
color: white;
}
.title_text {
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
}
#jump_to_offers {
width: 30%;
margin: auto;
}
button {
background-color: var(--bg-navy-blue);
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
transition-duration: 0.4s;
}
button:hover {
color: lightgray;
}
#quiz {
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
margin-right: 10%;
margin-left: 10%;
}
ul {
padding: 0px;
}
li {
display: flex;
background-color: #eee;
margin: 5px;
padding: 5px;
align-items: center;
}
li>span {
margin-left: auto;
background-color: var(--lightblue);
padding: 10px;
cursor: pointer;
}