100 lines
No EOL
1.4 KiB
CSS
100 lines
No EOL
1.4 KiB
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 {
|
|
text-align: center;
|
|
width: 10vw;
|
|
height: auto;
|
|
font-size: 1.5vw;
|
|
background-color: rgb(42, 42, 42);
|
|
color: #00FF00;
|
|
border: 1px solid #00FF00;
|
|
padding: 5px;
|
|
margin: 2vw;
|
|
}
|
|
|
|
label, button {
|
|
text-align: center;
|
|
font-size: 1.5vw;
|
|
color: #00FF00;
|
|
}
|
|
|
|
input::placeholder, textarea::placeholder {
|
|
color: #00FF00;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4vw;
|
|
color: #00FF00;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 2vw;
|
|
color: #00FF00;
|
|
}
|
|
|
|
img {
|
|
width: 20vw;
|
|
height: auto;
|
|
margin: 2vw;
|
|
}
|
|
|
|
.post {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
height: 50% auto;
|
|
width: 50% auto;
|
|
background-color: rgb(42, 42, 42);
|
|
border: 1px solid #00FF00;
|
|
padding: 10px;
|
|
margin: 2vw;
|
|
}
|
|
|
|
.post:hover {
|
|
background-color: #00FF00;
|
|
color: black;
|
|
} |