mirror of
https://codeberg.org/mclemens/resume.git
synced 2024-11-16 17:01:27 -05:00
39 lines
740 B
SCSS
39 lines
740 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background: #fff;
|
|
color: $text-color;
|
|
font-family: $font-1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
color: $text-color;
|
|
|
|
i {
|
|
padding: 0 0.2rem 0 0.25rem;
|
|
}
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
color: red;
|
|
}
|
|
|
|
&:not(.no-external-icon)::after {
|
|
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
|
|
margin: 0 0.2rem 0 0.25rem;
|
|
}
|
|
}
|
|
|
|
li {
|
|
list-style-type: square;
|
|
padding-left: 0px;
|
|
list-style-position: inside;
|
|
margin: 0.5rem 0;
|
|
}
|