-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (73 loc) · 1.13 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
83
84
85
86
:root {
--bgcolour: whitesmoke;
--mainfont: "Open Sans", sans-serif;
--linkcolour: royalblue;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: var(--mainfont);
background-color: var(--bgcolour);
}
#wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
header,
#about,
#latest-update,
#about-anchor,
#sort-div,
main {
width: 60vw;
}
header {
text-align: center;
}
#sort-div {
margin: 3px 0 13px;
}
#sort-div i:first-of-type {
margin-right: 10px;
}
#sort-div i:last-of-type {
margin-left: 3px;
}
#container {
display: flex;
flex-direction: column;
}
main {
display: flex;
flex-direction: column-reverse;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.reverse {
display: flex;
flex-direction: column;
}
.data-div {
display: flex;
gap: 15px;
padding-left: 1rem;
}
button {
border: 0;
outline: none;
margin: 0;
padding: 0 3px 0 0;
background-color: transparent;
font-weight: bold;
text-decoration: underline;
text-align: left;
}
a:link,
a:visited,
a:hover,
a:active {
color: var(--linkcolour);
}