-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (83 loc) · 1.54 KB
/
style.css
File metadata and controls
100 lines (83 loc) · 1.54 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
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
html {
background: black;
font-family: "Fira Code SemiBold", monospace;
color: white;
}
nav {
z-index: 999;
position: sticky;
top: 0;
border: 2px solid;
border-color: rgb(71, 71, 71);
background: black;
transition: 0.2s ease-in-out;
}
nav:hover {
border-color: white;
}
.navContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.navElements {
text-align: right;
left: auto;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
nav p {
margin: 0;
padding: 0;
}
nav h1 {
margin: 4px;
}
a {
text-decoration: white underline dotted;
color: white;
padding-top: 5px;
text-underline-offset: 2px;
}
a:hover {
text-decoration: white underline;
}
.navElements a {
margin: 8px;
}
section {
position: inherit;
margin: 1em auto 1em;
border: 2px solid;
border-color: rgb(71, 71, 71);
width: auto;
transition: 0.2s ease-out;
}
section:hover {
transition: 0.2s ease-in;
border-color: white;;
}
.mainContainer p, h1, h2{
margin: 6px;
}
.npIcons {
text-align: right;
left: auto;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin: 5px;
}
/*
* there is DEFO a better way to do this
* but i'm too lazy to actually do it in that better way lol
*/
.npIconsGrey {
filter: invert(22%) sepia(0%) saturate(525%) hue-rotate(203deg) brightness(90%) contrast(75%);
}
.discordStatus {
display: flex;
flex-direction: row;
justify-content: space-between;
}