-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
192 lines (167 loc) · 4.13 KB
/
Copy pathlayout.css
File metadata and controls
192 lines (167 loc) · 4.13 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
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
body {
background: black url("https://raw.githubusercontent.com/RobbieNesmith/SpaceJunk/master/stars.png");
}
body::before {
content: "";
position: fixed;
width: 100%;
height: 100%;
top: 0;
background: linear-gradient(rgba(0, 0, 0, 0), #1f0e56df 50%, #c8813d 60%, #fcf49f 70%, #260e00 70%, #08251f);
background-attachment: fixed;
z-index: -1;
}
main {
background-color: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(25px);
color: white;
box-shadow: 0 0 0 1px #264709,
0 0 0 2px lime,
0 0 0 3px #bfffab,
0 0 0 4px #264709,
0 0 0 6px black;
border-radius: 1rem;
margin-top: 2rem;
}
nav {
background-color: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(25px);
border-radius: 0 0 1rem 1rem;
box-shadow: 0 0 0 1px #151e36,
0 0 0 2px #1d4ed8,
0 0 0 3px #87a7ff,
0 0 0 4px #151e36,
0 0 0 6px black;
}
#q {
background-color: black;
color: white;
border: none;
height: 20px;
box-shadow: 0 0 0 1px #151e36,
0 0 0 2px #1d4ed8,
0 0 0 3px #87a7ff,
0 0 0 4px #151e36;
border-radius: 1rem 0 0 1rem;
padding-left: 1rem;
}
.center form button {
height: 20px;
border-radius: 0 1rem 1rem 0;
background-color: #1d4ed8;
border: none;
box-shadow: 0 0 0 2px #1d4ed8,
0 0 0 3px #87a7ff,
0 0 0 4px #151e36;
color: #87a7ff;
text-shadow: 0 1px black;
transition: background-color 0.1s, color 0.1s;
}
.center form button:hover {
background-color: #87a7ff;
color: white;
box-shadow: 0 0 0 2px #87a7ff,
0 0 0 3px #87a7ff,
0 0 0 4px #151e36;
}
nav .top,
nav .links {
background-color: unset;
}
nav .links a:hover {
color: var(--dark-orange);
}
.details-table {
color: black;
}
.details-table td {
background: none;
border-bottom: solid var(--lightest-blue) 2px;
color: white;
}
.details-table tr:last-child td {
border: none;
}
.details-table td:first-child {
background: none;
border-bottom: solid var(--even-lighter-blue) 2px;
}
.profile .contact .heading,
.profile .table-section .heading {
border-bottom: solid 2px var(--lighter-blue);
background: unset;
}
.profile .friends .heading,
.profile .blurbs .heading {
background: unset;
border: solid 2px var(--light-orange);
border-radius: .5rem;
}
.profile .friends .heading h4,
.profile .blurbs .heading h4 {
color: #df9b27;
}
.profile .friends .person p {
color: white;
}
.profile .contact,
.profile .url-info,
.profile .table-section,
.home-actions {
border-radius: 0.5rem;
}
footer {
background-color: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(25px);
color: white;
border-radius: 1rem;
margin-top: 2rem;
box-shadow: 0 0 0 1px #36151e,
0 0 0 2px #d81d4e,
0 0 0 3px #ff87a7,
0 0 0 4px #36151e,
0 0 0 6px black;
}
a {
color: var(--logo-blue);
}
@media (prefers-reduced-motion: no-preference) {
.general-about {
perspective: 1000px;
}
.profile-pic {
width: 160px;
height: 160px;
animation-name: verticalRotate;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
backface-visibility: hidden;
transform-style: preserve-3d;
}
.profile-pic::after {
position: absolute;
left: 0;
content: "";
width: 160px;
height: 160px;
background-image: url("https://raw.githubusercontent.com/RobbieNesmith/SpaceJunk/master/robbiesclub.png");
background-repeat: no-repeat;
background-size: cover;
transform: rotateY(180deg);
display: inline-block;
z-index: -1;
}
.profile-pic img {
width: 100%;
height: 100%;
}
@keyframes verticalRotate {
from {
transform: rotateY(0);
}
to {
transform: rotateY(360deg);
}
}
}