-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (68 loc) · 1.26 KB
/
style.css
File metadata and controls
82 lines (68 loc) · 1.26 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
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
html {
background-color: #000000;
}
html,
body {
scrollbar-color: rgba(255,255,255, 0.6) rgba(255,255,255, 0.2);
scrollbar-width: thin;
font-family: "Kosugi Maru", sans-serif;
padding: 0;
margin: 0;
}
a {
text-decoration: none;
color: #e26682;
}
.fredoka {
font-family: "Fredoka One", sans-serif;
}
.fullscreen {
height: 100vh;
display: flex;
flex-direction: column;
}
.background2 {
z-index: -1;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-attachment: fixed;
background-size: cover;
/* filter: blur(8px); */
}
.content {
margin: auto;
display: flex;
flex-direction: column;
}
.avatar {
width: 256px;
height: 256px;
margin: 32px auto 32px auto;
border-radius: 50%;
}
.shadow {
filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.3));
}
.text {
margin: 0 24px 0 24px;
padding: 12px;
background-color: rgba(242, 101, 177, 0.5);
border-radius: 8px;
}
.title {
color: #DD5B5B !important;
}
.subtitle {
text-align: right;
}
.desc {
color: #fff;
}
.contact {
color: 0;
}