-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
212 lines (198 loc) · 6.25 KB
/
index.html
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<style>
html,body
{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow-x: hidden;
}
@font-face {
font-family: Pixel Operator;
src: url(PixelOperator.ttf);
}
.screen {
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
background-image: linear-gradient(to top right, #81689D, #8368a1);
color:#1F2544;
font-family: Pixel Operator;
}
.holder1 {
width: 100%;
height: 75%;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
filter: drop-shadow(rgba(56, 56, 56, 0.432) 1rem 1rem 10px);
border: 5px solid #1F2544;
background-image: linear-gradient(to bottom right, #FFD0EC, #c58bae);
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
padding: 1%;
margin: 2%;
}
h1 {
filter: drop-shadow(rgba(56, 56, 56, 0.432) 2rem 2rem 10px);
}
h2 {
filter: drop-shadow(rgba(56, 56, 56, 0.432) 2rem 2rem 10px);
}
p {
font-size: larger;
font-weight: 600;
}
.bigtitle {
font-size: 400%;
font-weight: bold;
transform: rotate(-2.5deg);
filter: drop-shadow(rgba(56, 56, 56, 0.432) 5px 5px 2px);
}
.biosection {
width: 25%;
height: 40%;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
filter: drop-shadow(rgba(56, 56, 56, 0.432) 1rem 1rem 10px);
border: 5px solid #1F2544;
background-image: linear-gradient(to bottom right, #FFD0EC, #c58bae);
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
padding:4%;
text-align: center;
row-gap: 1%;
}
.pfpbioholder {
height: 60%;
width: 90%;
flex-direction: row;
display: flex;
align-items: center;
justify-content: center;
}
.links {
width: 75%;
height: 25%;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
filter: drop-shadow(rgba(56, 56, 56, 0.432) 1rem 1rem 10px);
border: 5px solid #1F2544;
background-image: linear-gradient(to bottom right, #FFD0EC, #c58bae);
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
padding: 1%;
margin: 2%;
}
.pfplinks {
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
width: 25%;
height: 50%;
margin: 4%;
}
.pfpholder {
height: 40%;
display: flex;
align-items: center;
justify-content: center;
column-gap: 10%;
>img {
background-image: "pfp.jpg";
border: 2px solid #1F2544;
height: 100%;
border-radius: 50%;
filter: drop-shadow(rgba(56, 56, 56, 0.432) 5px 5px 10px);
}
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
a {
font-size: larger;
font-weight: 500;
filter: drop-shadow(rgba(56, 56, 56, 0.432) 2px 2px 3px);
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}
.linkholder {
flex-direction: row;
display: flex;
align-items: center;
justify-content: center;
gap: 10%;
}
</style>
</head>
<body>
<div class="screen">
<div class="bigtitle"> WELCOME TO MY WEBSITE!!!!</div>
<div class="pfpbioholder">
<div class="pfplinks">
<div class="holder1">
<div class="pfpholder">
<img src="pfp.jpg">
<h1>Kate McCarney</h1>
</div>
<h2>Amature-ish Game Developer</h2>
</div>
<div class="links">
<div class="linkholder">
<span class="material-symbols-outlined">
code
</span>
<a href="https://github.com/ScoutWozniak">Github!</a>
</div>
<div class="linkholder">
<span class="material-symbols-outlined">
youtube_activity
</span>
<a href="https://www.youtube.com/channel/UCdHuRiGy88ItN6gR441O2rg">Youtube!</a>
</div>
</div>
</div>
<div class="biosection">
<h1>BIO:</h1>
<p>I'm an aspiring Game Developer trying to make it through life!
I try my best to create unique experiences that blend story and gameplay.
I want to make games with meaning. I try my best to involve myself with all areas of development,
such as programming, level design, writing, music, modelling, materials and game design in general!
</p>
</div>
</div>
</div>
</body>
</html>