This repository has been archived on 2023-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-website/assets/css/index.css
2023-05-10 16:40:36 +02:00

137 lines
No EOL
2.4 KiB
CSS

/* imports */
@import url(./scrollbar.css);
@import url(./palette.css);
/* general style */
html,
body {
font-family: 'Manrope', sans-serif;
width: 100%;
height: 100%;
margin: 0;
background-color: var(--color-space-black);
color: var(--color-white);
margin-bottom: 0px;
}
.link:link {
color: var(--color-french-sky-blue);
background-color: transparent;
text-decoration: underline;
}
.link:visited {
color: var(--color-deep-sky-blue);
background-color: transparent;
text-decoration: underline;
}
/* colored words */
span.word-hello-world-color {
color: var(--color-french-sky-blue);
}
span.word-sangelo-color {
color: var(--color-deep-sky-blue);
}
span.word-create-color {
color: var(--color-capri);
}
/* content style */
.home {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 80%;
}
.home h1 {
font-size: 4em;
font-weight: 700;
text-align: center;
}
.home .logo {
/* width: 145px;
height: 145px; */
width: 8em;
height: 8em;
transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.home .logo:hover {
filter: drop-shadow(0 4px 10px rgba(0, 145, 251, 0.2));
}
/* socials */
socials {
display: flex;
justify-content: center;
align-items: center;
}
socials .button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 80px;
width: 80px;
border-radius: 100%;
margin: 0 16px;
color: var(--color-white);
font-size: 24px;
font-weight: bold;
text-decoration: none;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
socials .button-discord {
background-color: var(--color-french-sky-blue);
}
socials .button-youtube {
background-color: var(--color-deep-sky-blue);
}
socials .button-github {
background-color: var(--color-capri);
}
socials .button-email {
background-color: var(--color-light-capri);
}
socials .button:hover {
transform: scale(1.1);
}
socials .icon {
height: 45px;
width: 45px;
position: static;
filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.2));
}
/* copyright & license */
copyright {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}
copyright .rights1 {
margin-right: 0.2em;
}
copyright .rights2 {
margin-left: 0.2em;
}
copyright .link {
margin-left: 0.2em;
}