-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (48 loc) · 843 Bytes
/
styles.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
body {
background-color: #18171A;
color: white;
font-family: monospace;
background-image: url("./assets/bg.svg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position-x: center;
padding-left: 2rem;
padding-right: 1.5rem;
max-width: 33rem;
margin: 3rem auto;
}
.pfp {
display: inline-block;
width: 5rem;
height: 5rem;
border-radius: 1rem;
margin-right: 1.5rem;
}
.icons {
/* display: inline-block; */
/* max-width: 20%; */
fill: grey;
transition: 0.15s;
width: 1.75rem;
}
.icons:hover {
fill: white;
}
h1 {
font-size: 1.2rem;
margin-top: 0rem;
}
p {
font-size: 0.85rem;
}
ul {
font-size: 0.85rem;
}
li {
margin-top: 0.75rem;
}
a {
font-weight: bold;
color: pink;
}