-
Notifications
You must be signed in to change notification settings - Fork 0
/
link-in-bio.css
163 lines (153 loc) · 2.67 KB
/
link-in-bio.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@font-face {
font-family: "HagridFont";
src: url("src/hagrid/Hagrid-Text-Extrabold-trial.ttf") format("truetype"); /* Replace 'path/to/hagrid-font.ttf' with the actual path to your font file */
}
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1,
h6 {
color: white;
}
p {
font-family: "Courier Prime", monospace;
color: white;
font-style: normal;
}
a,
a:link,
a:visited {
text-decoration: none;
color: white;
}
.HagridFont {
font-family: HagridFont;
}
.container {
display: flex;
width: 100vw;
background-color: black;
}
.child-1 {
width: 50vw;
}
.child-2 {
width: 50vw;
padding: 4%;
}
.title {
margin-bottom: 15%;
}
.title-name {
margin-bottom: 10px;
color: white;
/*-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
}
.title-about {
font-size: 0.7rem;
font-weight: 400;
}
.profile-img {
object-fit: cover;
height: 45vh;
width: 100%;
animation: profile 2s alternate-reverse infinite;
}
@keyframes profile {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.about-me-container {
padding: 15% 5% 10%;
}
.about-me {
font-size: 0.6rem;
font-weight: 400;
}
.website-title h6 {
font-size: 1rem;
margin: 1vh;
}
.website-icon {
display: flex;
align-items: center;
justify-content: start;
}
.website-icon div {
margin: 5%;
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
border-radius: 5px;
background-color: white;
}
.website-icon p {
font-size: 0.8rem;
}
.link-container {
margin: 10% 0;
}
.link {
margin: 5% 0;
}
.link-title h6 {
font-size: 1rem;
}
.flex-link {
display: flex;
justify-content: space-between;
align-items: center;
}
.link button {
color: white;
margin: 10px 0;
font-size: 1.2rem;
text-align: left;
width: 100%;
padding: 10px 5px;
border: none;
background-color: #1649ff;
box-shadow: 3px 3px 0px 0px rgb(255, 255, 255);
}
.social-title h6 {
font-size: 1rem;
margin-bottom: 5%;
}
.social-icons {
margin: 10% 0;
display: flex;
justify-content: space-around;
align-items: center;
}
.social-icons i {
font-size: 1.25rem;
color: white;
}
.footer {
height: 5vh;
width: 100vw;
background-color: #1649ff;
display: flex;
align-items: center;
justify-content: center;
}
.made-by {
color: black;
font-size: 0.8rem;
font-style: italic;
display: flex;
align-items: center;
justify-content: center;
}