-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (53 loc) · 976 Bytes
/
styles.css
File metadata and controls
63 lines (53 loc) · 976 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@500;700&display=swap");
body {
font-family: "Roboto", sans-serif;
height: 100vh;
}
h1 {
font-family: "Ubuntu", sans-serif;
text-align: center;
padding: 2rem;
}
th {
vertical-align: middle;
}
.edit-icon,
.delete-icon {
font-size: 1.25rem;
cursor: pointer;
color: #888;
margin-right: 10px;
}
.edit-icon:hover {
color: #0d6efd;
}
.delete-icon:hover {
color: red;
}
#newButton {
margin-bottom: 10px;
}
.table.dataTable thead th {
text-align: center;
}
.footer {
font-family: "Roboto", sans-serif;
font-weight: 400;
margin-top: 0.5rem;
}
footer a {
text-decoration: none;
}
.buttonContainer {
display: flex;
justify-content: space-between;
}
#darkModeToggle {
background-color: #ECECEC;
}
/* media query for width 767px and below for footer to be centered */
@media (max-width: 767px) {
.footer {
text-align: center;
}
}