mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-16 00:22:54 +11:00
25 lines
585 B
SCSS
25 lines
585 B
SCSS
// Global padding across all first level elements
|
|
@mixin boxPadding($paddingTop: 20px, $paddingBottom: 20px) {
|
|
padding: $paddingTop $boxPadding $paddingBottom $boxPadding;
|
|
}
|
|
|
|
// Vertical dotted separtor
|
|
@mixin separator($color: white, $margin: 4px) {
|
|
width: 0;
|
|
border-right: 2px dotted $color;
|
|
margin: 0 ($margin+2px) 0 $margin;
|
|
}
|
|
|
|
|
|
@mixin colored-links() {
|
|
a:link, a:visited {
|
|
color: $linkColor;
|
|
text-decoration: underline;
|
|
text-decoration-color: lighten($linkColor, 30%);
|
|
}
|
|
|
|
a:hover, a:active {
|
|
color: $hoverColor;
|
|
text-decoration: underline;
|
|
}
|
|
}
|