-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
72 lines (57 loc) · 918 Bytes
/
index.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
.page-main {
align-items: center;
flex-direction: column;
display: flex;
& .pfp {
width: clamp(200px, 20%, 20%);
}
& .credits {
font-size: xx-small;
}
& h2 {
margin-top: 10px;
margin-bottom: 10px;
}
& p {
margin-top: 0px;
margin-bottom: 0px;
}
}
.socials {
margin-top: 20px;
.socials-links {
display: flex;
}
}
.socials-logo {
width: 30px;
height: 30px;
margin: 2px;
}
.mastodon-logo {
fill: black;
&:hover {
fill: hsl(204deg, 71%, 50%);
}
}
.modrinth-logo {
fill: black;
&:hover {
fill: hsl(145deg, 78%, 48%);
}
}
.oomfs {
display: flex;
flex-direction: row;
}
.oomf {
padding: 10px;
}
.oomf-img {
transition: transform 0.3s ease;
margin: 2px;
max-width: 5rem;
&:hover {
transform: scale(1.1);
}
}