65 lines
902 B
CSS
65 lines
902 B
CSS
body {
|
|
background-color: black;
|
|
color: #00FF00;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
}
|
|
|
|
.link-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bottom {
|
|
position: fixed;
|
|
bottom: 2vw;
|
|
width: 100%;
|
|
}
|
|
|
|
div {
|
|
margin: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
font-size: 1vw;
|
|
color: #00FF00;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
button {
|
|
background-color: black;
|
|
color: #00FF00;
|
|
border: 1px solid #00FF00;
|
|
padding: 10px 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #00FF00;
|
|
color: black;
|
|
}
|
|
|
|
input, textarea {
|
|
background-color: black;
|
|
color: #00FF00;
|
|
border: 1px solid #00FF00;
|
|
padding: 5px;
|
|
}
|
|
|
|
input::placeholder, textarea::placeholder {
|
|
color: #00FF00;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4vw;
|
|
color: #00FF00;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 2vw;
|
|
color: #00FF00;
|
|
}
|