mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
59 lines
No EOL
867 B
CSS
59 lines
No EOL
867 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
color: white;
|
|
font-family: monospace;
|
|
font-size: 13px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
input {
|
|
display: block;
|
|
background: black;
|
|
color: white;
|
|
width: 250px;
|
|
padding: 5px 4px;
|
|
margin: 2px 0 6px 0;
|
|
border: 1px solid #ff5252;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
input::-ms-reveal,
|
|
input::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
input[type='submit'] {
|
|
width: 150px;
|
|
}
|
|
|
|
a {
|
|
color: #ff5252;
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.content-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
min-height: 100vh;
|
|
} |