site/sass/style.scss

48 lines
644 B
SCSS
Raw Normal View History

2021-11-09 21:45:56 -06:00
.container {
/*Text margin*/
margin: auto;
2021-11-10 18:03:18 -06:00
width: 75%;
padding: 10px;
2021-11-09 21:45:56 -06:00
}
2021-11-10 11:38:26 -06:00
body {
font-family: 'Ubuntu', sans-serif;
2021-11-11 11:46:22 -06:00
background: linear-gradient(180deg, #003B6F, black);
2021-11-10 15:15:33 -06:00
color: white;
background-repeat: no-repeat;
background-attachment: fixed;
filter: drop-shadow(2px 2px 2px black);
2021-11-10 11:38:26 -06:00
}
2021-11-10 15:15:33 -06:00
$linkcolor: #c256ff;
@mixin linkstyle {
color: $linkcolor;
filter: none;
}
a:link {
@include linkstyle;
}
a:visited {
@include linkstyle;
}
a:hover {
@include linkstyle;
color: white;
}
a:active {
@include linkstyle;
}
hr { background-color: white; height: 1px; border: 0; }
2022-01-14 11:15:22 -06:00
pre {
padding: 1em;
border: 0.5em;
overflow-x: scroll;
}