-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
168 lines (143 loc) · 3.14 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
body {
background-image: url("/images/Emo-grunge-wallpapers.jpg");
background-attachment: fixed;
background-size: contain;
font-family: "Cutive Mono";
color: white;
line-height: 1.225;
}
/* This is the cursor that appears when you hover over links. */
a:hover {
cursor: url("https://cur.cursors-4u.net/cursors/cur-7/cur608.cur"), auto;
}
/* This is the main cursor. */
* {
cursor: url("https://cur.cursors-4u.net/cursors/cur-7/cur610.cur"), auto;
}
/* This is where the colors are rooted. */
:root {
--background-color: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 30%);
--font: "Cutive Mono";
--names: #bababa;
--links: #bababa;
--hover: #757575;
--borders: 3px Ridge #e5e5e5;
--shadow: 0px 0px 8px #ffffff;
}
/* This is where links are colored. */
a:link {
color: var(--links);
text-decoration: none;
}
a:hover {
color: var(--hover);
text-decoration: underline;
}
a:visited {
color: var(--links);
text-decoration: none;
}
Footer {
background: var(--background-color);
border: var(--borders);
box-shadow: var(--shadow);
text-align: center;
margin: 50px 0px;
}
h1 {
padding: 5px;
background: rgba(0, 0, 0, 0.5);
border: var(--borders);
box-shadow: var(--shadow);
font-family: var(font);
font-size: 17px;
text-align: center;
}
#Status {
padding: 10px;
margin: 0px 20px;
font-weight: bold;
font-size: 14px;
}
.Container {
width: 850px;
max-width: 100%;
margin: 0 auto 10px;
}
.Main {
display: flex;
}
.One {
padding: 10px 10px 10px 10px;
}
.Two {
padding: 10px 10px 10px 10px;
}
.Profile {
padding: 5px 20px 40px 10px;
display: flex;
text-align: right;
}
.pfp {
padding: 2px;
box-shadow: var(--shadow);
float: left;
}
.Sticker {
padding: 85px 0px 15px 33%;
}
.Sticker2 {
margin: 20px 0px 0px 0px;
border: var(--borders);
box-shadow: var(--shadow);
}
.Sticker2 img {
display: block;
}
.AboutMe {
padding: 5px;
margin: 13px 15px;
background: var(--background-color);
border: var(--borders);
box-shadow: var(--shadow);
font-family: var(font);
text-align: center;
}
.Contact {
padding: 5px;
background: var(--background-color);
border: var(--borders);
box-shadow: var(--shadow);
}
.Header {
margin: -20px 0px 0px 0px;
text-align: center;
font-size: 16px;
}
.Info {
padding: 5px;
background: var(--background-color);
border: var(--borders);
box-shadow: var(--shadow);
text-align: center;
margin: 25px 0px 0px 0px;
}
/* Force scrollbars onto browser windowa.
Doesn't work in Firefox */
/* Scrollbar styles */
::-webkit-scrollbar {
width: 5px;
height: 10px;
}
::-webkit-scrollbar-track {
border-radius: 0px;
border: 1px solid #E5E5E5;
background: #000000;
}
::-webkit-scrollbar-thumb {
background: #E5E5E5;
border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
background: #E5E5E5;
}