mirror of
https://github.com/Clortox/tylerperkins.xyz.git
synced 2026-03-07 10:37:58 +00:00
Add terminal effect
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
.background {
|
||||
background-image: url("/img/webb-dark.png");
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
height: 150%;
|
||||
overflow-y: hidden;
|
||||
z-index: -1;
|
||||
|
||||
background-position: center;
|
||||
background-repeat: repeat;
|
||||
background-attachment: auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* Footer */
|
||||
|
||||
footer {
|
||||
background-color: rgba(11,11,11,0.9);
|
||||
background-color: rgba(11,11,11,1);
|
||||
color: white;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
|
||||
@@ -9,6 +9,11 @@
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@keyframes blink-caret {
|
||||
from, to { border-color: transparent }
|
||||
50% { border-color: white }
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
margin: 0;
|
||||
@@ -52,7 +57,7 @@ html {
|
||||
}
|
||||
|
||||
.top-fade {
|
||||
background: linear-gradient(rgba(11,11,12,1) 0%, rgba(11,11,12,0.9) 30%, rgba(0,0,0,0.1) 100%)
|
||||
background: linear-gradient(rgba(11,11,12,1) 0%, rgba(11,11,12,0.9) 30%, rgba(0,0,0,0.0001) 100%)
|
||||
}
|
||||
|
||||
.dashed-bottom {
|
||||
@@ -69,7 +74,35 @@ html {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.typewriter {
|
||||
animation: blink-caret .75s step-end infinite;
|
||||
border-right: .15em solid white;
|
||||
display: inline;
|
||||
|
||||
}
|
||||
|
||||
.homepage-card {
|
||||
height: calc(100vh - 6vh);
|
||||
width: calc(100vw - 6vw);
|
||||
padding: 1vh 1vw;
|
||||
padding-top: 2vh;
|
||||
background-color: rgba(11,11,12,0.4);
|
||||
corner-radius: 10px;
|
||||
margin: 2vh 2vw;
|
||||
}
|
||||
|
||||
.about-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 65% 1fr;
|
||||
|
||||
}
|
||||
|
||||
.hobbies {
|
||||
background-color: black;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
|
||||
Reference in New Issue
Block a user