remove venv
BIN
static/images/colors/colors.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
1412
static/images/elements/ai/line_long.ai
Normal file
1423
static/images/elements/ai/line_medium.ai
Normal file
1447
static/images/elements/ai/line_short.ai
Normal file
BIN
static/images/elements/png/discord.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
static/images/elements/png/github.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
static/images/elements/png/gmail.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
static/images/elements/png/itch.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
static/images/elements/png/line_long.png
Normal file
|
After Width: | Height: | Size: 653 B |
BIN
static/images/elements/png/line_medium.png
Normal file
|
After Width: | Height: | Size: 630 B |
BIN
static/images/elements/png/line_short.png
Normal file
|
After Width: | Height: | Size: 515 B |
BIN
static/images/elements/png/timmy.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
static/images/elements/png/twitter.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
static/images/elements/png/youtube.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
static/images/elements/psd/discord.psd
Normal file
BIN
static/images/elements/psd/github.psd
Normal file
BIN
static/images/elements/psd/gmail.psd
Normal file
BIN
static/images/elements/psd/itch.psd
Normal file
BIN
static/images/elements/psd/twitter.psd
Normal file
BIN
static/images/elements/psd/youtube.psd
Normal file
100
static/styles.css
Normal file
@@ -0,0 +1,100 @@
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #FB93DA;
|
||||
color: #404082;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: 400;
|
||||
font-size: 1vh;
|
||||
text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
#end__of__page {
|
||||
margin-bottom: -30vh;
|
||||
}
|
||||
|
||||
.centered {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pink__colored {
|
||||
color: #D26BB9;
|
||||
}
|
||||
|
||||
.orange__highlight {
|
||||
background-color: #D26BB9;
|
||||
border-radius: 20px;
|
||||
line-height: 1.5;
|
||||
padding-right: 0.9vw;
|
||||
padding-left: 0.9vw;
|
||||
font-weight: 520;
|
||||
text-shadow: none;
|
||||
box-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
|
||||
}
|
||||
|
||||
.hero__header {
|
||||
font-size: 6vw;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.divider__line {
|
||||
height: 4vw;
|
||||
}
|
||||
|
||||
.about__header {
|
||||
font-size: 3vw;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.logo {
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.logo:hover {
|
||||
transform: scale(1.1);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.logo__image {
|
||||
margin-left: 2vw;
|
||||
margin-right: 2vw;
|
||||
width: 10vw;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1024px) {
|
||||
.hero__header {
|
||||
font-size: 12vw;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.about__header {
|
||||
font-size: 5vw;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.divider__line {
|
||||
height: 8vw;
|
||||
}
|
||||
|
||||
.logo__image {
|
||||
margin-left: 2vw;
|
||||
margin-right: 2vw;
|
||||
width: 14vw;
|
||||
}
|
||||
}
|
||||