39 lines
564 B
SCSS
39 lines
564 B
SCSS
// Setup stuff
|
|
body {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
background-attachment: fixed;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
font-size: 16px;
|
|
top: 0;
|
|
}
|
|
|
|
a {
|
|
cursor: crosshair;
|
|
border: 1px solid transparent;
|
|
margin: 0;
|
|
}
|
|
|
|
a:hover {
|
|
border: 2px solid transparent;
|
|
border-image: url("/ants.gif") 1 repeat;
|
|
}
|
|
|
|
#main {
|
|
position: absolute;
|
|
top: 50px;
|
|
right: 20%;
|
|
left: 250px;
|
|
padding-bottom: 25px;
|
|
}
|
|
|
|
#main > div {
|
|
margin: auto;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
li {
|
|
list-style-type: none;
|
|
width: 100%;
|
|
}
|