nixfox-reborn/sass/style.scss
2025-07-01 17:16:48 -04:00

57 lines
761 B
SCSS

// Setup stuff
* {
font-family: 'IBM Plex Mono', monospace;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
top: 0;
}
body {
color: #141414;
background-color: #DDE1E9;
padding-bottom: 5em;
}
a {
color:#b7162e;
cursor: crosshair;
outline: 1px solid transparent;
margin: 0;
text-decoration: none;
}
a:hover {
font-weight: bold;
outline: 3px solid;
transition: 0.3s;
}
h1 {
font-weight: bold;
}
#main {
position: relative;
width:60%;
max-width:50em;
margin: auto;
top: 3em;
left: 6.5em;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 3em;
padding-right: 3em;
background-color: #EFF1F5;
}
li {
list-style-type: square;
}
.container {
padding: 20px;
}