website/static/style.css
Joey Hines eb4876c739 Initial commit
+ Contains base files and a resume file
+ More links are planned for the future
+ Might need some cleanup work and testing in the future
2020-02-16 15:33:09 -06:00

48 lines
598 B
CSS

.blinking{
animation:blinkingText 0.8s infinite;
}
@keyframes blinkingText{
100%{ color: transparent; }
}
.text {
font-family: "Ubuntu Mono", monospace;
color: whitesmoke;
}
.body {
font-size: large;
}
.heading {
font-family: "Ubuntu Mono", monospace;
color: limegreen;
}
.no_underline {
text-decoration: none;
}
.link {
color: #268BD2;
}
.center {
max-width: 1250px;
margin: auto;
}
.terminal {
background-color: #292929;
padding: 5px;
border-radius: 10px;
}
.prompt {
color: limegreen;
}
body {
background-color: black;
}