Begin redesign

This commit is contained in:
2026-01-31 00:26:50 -06:00
parent 298233e9f6
commit 24e8d9ef23
5 changed files with 301 additions and 235 deletions

View File

@@ -0,0 +1,112 @@
/* -- INITIAL OBJECT SETUP */
#hex-svg * {
fill: white;
}
#hex-logo-h {
transform-origin: center;
transform-box: fill-box;
fill-opacity: 0;
animation: fade-in 4s 1 normal ease-in-out forwards 3s;
}
#hex-logo-e {
transform-origin: center;
transform-box: fill-box;
fill-opacity: 0;
animation: fade-in 4s 1 normal ease-in-out forwards 3s;
}
#hex-logo-hexagon {
transform-origin: center;
transform-box: fill-box;
fill-opacity: 0;
stroke-opacity: 0;
animation: fade-in-hexagon 4s 1 normal ease-in-out forwards 3s;
stroke: white;
}
#hex-logo-greater {
transform-origin: center;
transform-box: fill-box;
transform: translateX(-10px);
animation: reset-translations 1s 1 normal ease-in-out forwards 1s;
stroke: rgb(255, 255, 255);
}
#hex-logo-lesser {
transform-origin: center;
transform-box: fill-box;
transform: translateX(-32px);
animation: reset-translations 1s 1 normal ease-in-out forwards 1s;
stroke: rgb(255, 255, 255);
}
#hex-logo-slash {
fill: rgb(255, 255, 255);
transform-origin: center;
transform-box: fill-box;
fill-opacity: 100;
transform: translate(-1px, -8px) rotate(15deg);
animation: fade-out 0.001s 1 normal ease-out forwards 1s;
}
/* -- ANIMATION BEGIN -- */
@keyframes fade-in {
0% {
fill-opacity: 0;
}
50% {
fill-opacity: 50;
}
100% {
fill-opacity: 100;
}
}
@keyframes fade-in-hexagon {
0% {
stroke-opacity: 0;
fill-opacity: 0;
}
50% {
stroke-opacity: 50;
fill-opacity: 50;
}
100% {
stroke-opacity: 100;
fill-opacity: 100;
}
}
@keyframes fade-out {
0% {
fill-opacity: 100;
}
50% {
fill-opacity: 50;
}
100% {
fill-opacity: 0;
}
}
@keyframes reset-translations {
0% {
fill: white;
stroke: white;
}
100% {
transform: translate(0, 0);
fill: red;
stroke: red;
}
}

212
old/css/master.css Normal file
View File

@@ -0,0 +1,212 @@
:root {
--color-pallete-red: #a80000;
--color-pallete-dark-red: #731010;
--color-pallete-dark-grey: #101010;
--color-pallete-grey: #707070;
--color-pallete-darkish-grey: #303030;
--color-pallete-light-grey: #d4d4d4;
--mobile-style-width: 1000px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: var(--color-pallete-light-grey);
font-family: monospace;
}
::selection {
background-color: var(--color-pallete-red);
}
.hexlink {
text-decoration: none;
font-style: italic;
color: #a80000;
}
.hexlink:visited {
color: #a80000;
}
.hexlink:hover::before{
content: ">";
} .hexlink:hover::after{
content: "<";
}
html {
background-color: var(--color-pallete-dark-grey);
}
body {
text-align: center;
}
#header {
display: flex;
height: 70vh;
justify-content: center;
align-items: center;
background-color: black;
}
#content {
background-color: var(--color-pallete-dark-grey);
}
#footer {
background-color: black;
height: 20vh;
}
#fader {
height: 150px;
background-color: var(--color-pallete-red);
background: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
display: block;
}
#fader-reverse {
height: 150px;
background-color: var(--color-pallete-red);
background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
display: block;
}
/* CONTENT */
.content-title {
padding: 30px 0 30px 0;
font-family: monospace;
}
.content-break {
width: 70vw;
height: 2px;
border-color: var(--color-pallete-red);
margin: auto;
margin-bottom: 30px;
}
@media (max-width: 1000px)
{
.content-break {
width: 90vw;
}
}
/* ABOUT ME SECTION */
#aboutme {
width: 100%;
}
.aboutme-box {
display: flex;
margin: auto;
max-width: 1000px;
overflow: hidden;
}
.aboutme-box img {
height: auto;
width: auto;
/* border-radius: 15%; */
border-top-right-radius: 10%;
border-bottom-right-radius: 10%;
border-top-left-radius: 1%;
border-bottom-left-radius: 1%;
border: var(--color-pallete-dark-red) solid 2px;
} .aboutme-box p {
text-align: left;
font-size: larger;
} .aboutme-box h2 {
text-align: left;
margin-bottom: 20px;
font-size: xx-large;
}
.aboutme-box-left {
margin-right: 30px;
}
.aboutme-box-left img {
height: auto;
width: 100%;
}
.aboutme-box-right {
width: 100%;
}
@media (max-width: 1000px)
{
.aboutme-box {
display: block;
margin: 0 30px 0 30px;
}
.aboutme-box-left {
margin: 0 10px 0 10px;
}
}
/* PROJECTS SECTION */
#projects {
width: 100%;
}
.projects-box {
display: flex;
flex-wrap: wrap;
margin: auto;
max-width: 70%;
} .projects-box .card {
margin: auto;
padding-bottom: 30px;
} .projects-box img {
width: 100%;
height: 100%;
border-top-right-radius: 10%;
border-top-left-radius: 1%;
}
@media (max-width: 1000px)
{
.projects-box {
display: block;
margin: 0 30px 0 30px;
} .projects-box .card {
margin: auto;
padding: 20px 0 20px 0;
}
}
/* CONTACT SECTION */
#contact {
width: 100%;
}
.contact-box {
margin: auto;
width: auto;
height: auto;
}
/* Cards */
.card {
width: 300px;
height: 500px;
} .card .upper {
width: auto;
height: 60%;
background-color: var(--color-pallete-grey);
border-bottom: var(--color-pallete-red) solid 4px;
border-top-right-radius: 10%;
border-top-left-radius: 1%;
} .card .lower {
background-color: var(--color-pallete-darkish-grey);
height: 40%;
width: auto;
border-bottom-right-radius: 10%;
border-bottom-left-radius: 1%;
}