-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (51 loc) · 880 Bytes
/
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
html {
--gradient: linear-gradient(137deg, rgba(154,148,255,1) 0%, rgba(0,164,198,1) 75%);
}
.gradient-text {
background: var(--gradient);
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
h1 {
font-size: 3em;
font-weight: 600;
padding-bottom:0.5em;
display:inline-block;
}
li::before {
content: "> ";
}
li{
padding-bottom:0.5em;
font-weight:600;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul{
display:inline-block;
text-align: left;
list-style:none;
}
@media(max-width: 999.98px){
.row {
padding:1em;
}
}
@media(min-width: 1000px){
.row {
display:flex;
align-items:center;
}
.bio {
text-align:right;
}
html, body, .container, .row{
height:100%
}
}