-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 916 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (38 loc) · 916 Bytes
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
.background {
z-index: -1;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.background .shape-thing svg {
width: 35vw;
}
.bio h1 {
font-size: calc(1.375rem + 6vw);
font-family: var(--mont);
background: var(--gd-blue);
background: -webkit-linear-gradient(to bottom left, var(--gd-blue) 0%, var(--gd-purple) 100%);
background: -moz-linear-gradient(to bottom left, var(--gd-blue) 0%, var(--gd-purple) 100%);
background: linear-gradient(to bottom left, var(--gd-blue) 0%, var(--gd-purple) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin-top: 24px;
}
.bio img {
max-height: 250px;
margin-top: 24px;
}
.posts {
margin-top: 24px;
margin-bottom: 24px;
}
.offset .limiter {
width: 100%;
}
@media (min-width: 768px) {
.offset .limiter {
width: 60vw;
}
}