Portfolio/styles/global.css

339 lines
5.9 KiB
CSS
Raw Normal View History

2024-05-22 22:20:33 +00:00
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap');
body {
background-color: #111;
color: #eee;
margin: 0;
font-family: "Fira Mono", monospace;
font-weight: 400;
font-style: normal;
font-size: 16px;
width: 100vw;
overflow: hidden;
}
2024-05-23 02:53:01 +00:00
#nav-btn {
display: none;
2024-05-22 22:20:33 +00:00
}
2024-05-23 02:53:01 +00:00
#navbar {
2024-05-22 22:20:33 +00:00
background-color: black;
margin: 0;
overflow: hidden;
padding-inline: 16px;
font-size: 1.4em;
2024-05-22 22:20:33 +00:00
display: flex;
flex-direction: row;
align-items: center;
height: 60px;
}
main {
max-width: 1300px;
margin: 0 auto;
padding-inline: 30px;
}
em {
color: hsl(30, 100%, 65%);
font-style: normal;
2024-05-22 22:20:33 +00:00
}
#logo {
font-weight: 500;
}
2024-05-23 02:53:01 +00:00
#navbar p {
2024-05-22 22:20:33 +00:00
margin: 16px;
margin-inline: 0;
}
#links, #nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
position: absolute;
}
#links {
right: 0;
}
#nav {
left: 50%;
transform: translateX(-50%);
}
#links a, #nav a {
text-decoration: none;
color: #eee;
margin: 16px;
display: flex;
flex-direction: row;
align-items: center;
position: relative;
}
#links a:after, #nav a:after {
content: "";
display: block;
border-bottom: solid 3px #f05;
position: absolute;
width: 0;
height: 36px;
transition: width 0.3s ease;
}
#links a:after {
right: 0;
}
2024-05-22 22:20:33 +00:00
#links a:hover:after, #nav a:hover:after {
width: 100%;
}
#links a svg {
fill: #eee;
width: 1em;
height: 1em;
2024-05-22 22:20:33 +00:00
padding-right: 8px;
}
#homepage {
width: 100%;
height: calc(100vh - 60px);
display: flex;
justify-content: center;
align-items: center;
gap: 70px;
}
.card {
border-radius: 4em;
display: flex;
justify-content: center;
align-items: center;
backdrop-filter: blur(10px);
background-color: #111c;
position: relative;
overflow: hidden;
background-image: linear-gradient(
135deg,
hsl(263, 80%, 40%),
hsl(341, 80%, 40%) 12%,
hsl(30, 80%, 40%) 25%,
#161616 35%,
#161616 65%,
#252525 100%
);
&::after {
content: "";
position: absolute;
height: calc(100% - 0.5em);
width: calc(100% - 0.5em);
z-index: -2;
border-radius: 3.8em;
background-image: linear-gradient(
135deg,
hsl(263, 25%, 10%),
hsl(341, 25%, 10%) 10%,
hsl(30, 25%, 10%) 20%,
#161616 32%
);
}
}
#homepage .card {
flex-direction: row;
padding-block: 80px;
gap: 70px;
width: fit-content;
padding: 50px;
}
#homepage-text {
width: auto;
text-align: right;
}
#homepage-img {
background-image: url("/assets/headshot.jpg");
background-size: cover;
background-position: center;
width: 22em;
height: 22em;
aspect-ratio: 1/1;
border-radius: 50%;
position: relative;
}
#homepage-img::before {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
background-image: repeating-conic-gradient(
#ff0050 0%,
#ff8000 33.333%,
#7520ff 66.666%,
#ff0050 100%
);
border-radius: 50%;
z-index: -1;
filter: blur(14px);
}
#homepage p {
margin: 0;
max-width: 800px;
}
#hi {
font-size: 1.5em;
color: hsl(263, 50%, 65%);
}
#name {
font-size: 5em;
color: #f05;
font-weight: 700;
}
@media screen and (max-width: 1100px) {
#logo {
display: none;
}
2024-05-23 02:53:01 +00:00
#nav-btn {
content: "";
display: block;
position: absolute;
top: 0.5em;
right: 0.5em;
font-size: 5em;
z-index: 11;
margin: 0;
background-image: url("/assets/plus.svg");
background-size: contain;
height: 0.6em;
width: 0.6em;
padding: 0px;
transition: transform 0.5s ease;
2024-05-23 03:02:22 +00:00
cursor: pointer;
}
body::before {
content: "[N]";
display: flex;
position: absolute;
top: 1.1em;
left: 1.1em;
font-size: 2.5em;
font-weight: 700;
z-index: 11;
margin: 0;
padding: 0px;
}
2024-05-23 02:53:01 +00:00
#nav-btn.expanded {
transform: rotate(225deg);
}
2024-05-23 02:53:01 +00:00
#navbar {
flex-direction: column;
2024-05-23 03:10:18 +00:00
height: 100vh;
width: 100vw;
justify-content: space-between;
position: absolute;
z-index: 10;
font-size: 3em;
margin: 0;
border: 0;
padding-inline: 0;
transform: translateX(-100vw);
transition: transform 0.5s ease;
background-color: #000a;
backdrop-filter: blur(10px);
}
2024-05-23 02:53:01 +00:00
#navbar.expanded {
transform: translateX(0);
}
#links, #nav {
position: static;
display: flex;
flex-direction: column;
transform: none;
}
#links a, #nav a {
justify-content: center;
text-align: right;
}
#links a:after, #nav a:after {
right: auto;
height: 1.2em;
}
#nav {
transform: translatey(2em);
}
#links a svg {
padding-right: 30px;
}
#homepage .card {
flex-direction: column-reverse;
padding-block: 80px;
gap: 70px;
width: fit-content;
padding: 80px;
}
.card::after {
height: calc(100% - 0.35em);
width: calc(100% - 0.35em);
border-radius: 3.9em;
}
#homepage-text {
text-align: center;
2024-05-23 03:02:22 +00:00
max-width: 20em;
}
#homepage-img {
width: 16em;
height: 16em;
}
#hi {
font-size: 1.2em;
}
#name {
font-size: 3em;
}
2024-05-23 03:02:22 +00:00
}
@media (pointer: fine) and (hover: hover) {
body {
font-size: 16px;
}
}
@media (pointer: coarse) and (hover: none) {
body {
font-size: 30px;
}
2024-05-23 03:10:18 +00:00
#navbar #links {
padding-bottom: 1em;
}
2024-05-22 22:20:33 +00:00
}