-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
198 lines (167 loc) · 3.26 KB
/
style.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
@import url(//fonts.googleapis.com/css2?family=Courier+Prime);
html {
overflow-y: scroll;
}
body {
background-color: #000000;
margin: auto;
max-width: 800px;
font-family: 'Courier Prime', monospace;
text-align: center;
overflow-x: hidden;
}
h1.headingbar {
margin-top: 20px;
margin-bottom: 20px;
font-family: 'Courier Prime';
font-style: italic;
font-size: 90px;
background: -webkit-linear-gradient(#161639, #36aea0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1 {
font-style: italic;
color: #cdcdcd;
}
h2 {
font-style: italic;
color: #cdcdcd;
}
h3 {
color: #a2a2a2;
}
div.backbutton {
text-align: left;
}
a.backbutton {
alignment: left;
}
a.backbutton:visited {
color: #ffa200;
}
div.project_post {
padding: 1px;
alignment: center;
margin: 10px auto;
max-width: 500px;
background-color: #1a1a1a;
border-radius: 20px;
}
p {
line-height: 1.4;
color: #a2a2a2;
font-size: 18px;
}
ul,
li {
line-height: 1.4;
color: #a2a2a2;
font-size: 18px;
text-align: left;
margin-left: 40px;
margin-right: 40px;
background-color: darkred;
line-height: 2;
}
p.projectdescription {
font-style: italic;
}
span {
line-height: 1.4;
color: #a2a2a2;
font-size: 17px;
}
a {
text-decoration: none;
color: #cf7b00;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #a42100;
}
a:active {
text-decoration: underline;
color: white;
}
h2.transtextuwu {
color: #5BCEFA;
font-size: 60px;
text-shadow: 2px 0 0 currentColor,
7px 7px 0 #F5A9B8,
12px 12px 0 #FFFFFF,
17px 17px 0 #F5A9B8,
22px 22px 0 #5BCEFA;
padding-right: 20px;
padding-top: 0;
alignment: center;
}
hr {
width: 100%;
border: 1px solid #cf7b00;
}
div.pagecontent {
display: flex;
flex-direction: column;
min-height: 100vh;
min-height: 100svh;
}
div.transgender {
width: 30px;
height: 15px;
border: 1px solid white;
border-radius: 3px;
background: linear-gradient(180deg, #5BCEFA 20%, #F5A9B8 20%, 40%, #FFFFFF 40%, 60%, #F5A9B8 60%, 80%, #5BCEFA 80%);
display: inline-block;
}
div.asexual {
width: 30px;
height: 15px;
border: 1px solid white;
border-radius: 3px;
background: linear-gradient(180deg, #181818 25%, #A3A3A3 25%, 50%, #FFFFFF 50%, 75%, #800080 75%);
display: inline-block;
}
div.lesbian {
width: 30px;
height: 15px;
display: inline-block;
border: 1px solid white;
border-radius: 3px;
background: linear-gradient(180deg, #D62900 20%, #FF9B55 20%, 40%, #FFFFFF 40%, 60%, #D461A6 60%, 80%, #A50062 80%);
}
div.aromantic {
width: 30px;
height: 15px;
border: 1px solid white;
border-radius: 3px;
display: inline-block;
background: linear-gradient(180deg, #39A33E 20%, #A2CF72 20%, 40%, #FFFFFF 40%, 60%, #A3A3A3 60%, 80%, #181818 80%);
}
div.bottombar {
border: #cf7b00 solid 1px;
display: inline-block;
border-radius: 10px;
}
footer {
margin-top: auto;
}
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
background: #474747;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #212121;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #131313;
}