-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
133 lines (110 loc) · 2.45 KB
/
styles.css
File metadata and controls
133 lines (110 loc) · 2.45 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
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
html {
font-family: sans-serif;
--main-bg: #181618;
--content-bg: #221f20;
--text-main: #fff5ff;
--text-sub: #ccc2cc;
--accent: #bd5fda;
--accent-b: #e581e9;
--header-bg: linear-gradient(333deg, var(--accent) 33%, var(--accent-b) 100%);
--button-bg-accent: linear-gradient(0deg, var(--accent) 0%, var(--accent-b) 100%);
--button-bg-discord: linear-gradient(0deg, #ac75eb 0%, #c7a3f0 100%);
--button-bg-gh: linear-gradient(0deg, #222121 0%, #423f3f 100%);
}
body {
background-color: var(--main-bg);
margin: 0px;
}
a {
color: var(--accent-b);
text-decoration-style: dotted;
}
p {
margin: 0.25em 1em;
color: var(--text-main);
text-shadow: black 1px 1px 1px;
}
h1 {
margin: 0px 0.5em;
color: var(--text-main);
text-shadow: black 1px 1px 1px;
}
h2 {
margin: 0.55em 0.8em;
color: var(--accent-b);
text-shadow: black 1px 1px 1px;
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: var(--text-sub);
font-size: larger;
}
h2::before {
content: "➜ ";
color: var(--text-main);
}
ul {
padding-left: 0px;
margin: 0px 2em;
color: var(--text-main);
}
li {
padding: 0.15em 0.35em;
text-shadow: black 1px 1px 1px;
}
li::marker {
color: var(--text-main);
}
.content-body {
margin: auto;
background-color: var(--content-bg);
max-width: 45em;
box-shadow: black 0px 0px 4px;
}
.content-header {
padding: 1.2em 0px;
background: var(--header-bg);
box-shadow: black 1px 1px 7px;
}
.content-main {
margin: 1.5em 0px;
}
.content-footer {
padding-bottom: 0.75em;
}
.content-footer>p {
font-size: 0.85em;
color: var(--text-sub)
}
.center-contents {
text-align: center;
}
.fancy-button-container {
display: flex;
padding: 1.25em 0.55em;
justify-content: space-evenly;
}
.link-button {
padding: 0.65em 0.55em;
color: var(--text-main);
text-shadow: black 1px 1px 1px;
text-decoration: none;
border-radius: 0.15em;
box-shadow: inset var(--content-bg) 0px 0px 1px;
transition: all 0.2s;
}
.link-button-accent {
background: var(--button-bg-accent);
}
.link-button-discord {
background: var(--button-bg-discord);
}
.link-button-gh {
background: var(--button-bg-gh);
}
.link-button:hover {
transform: translateY(-0.15em);
box-shadow: inset var(--content-bg) 0px 0px 1px, var(--text-sub) 0px 2px 5px;
}
.link-listing>a {
display: block;
}