mirror of
https://github.com/ddworken/hishtory.git
synced 2024-12-02 05:03:12 +01:00
42 lines
585 B
SCSS
42 lines
585 B
SCSS
// Global styling for this template
|
|
body,
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
// Typography
|
|
.text-white-75 {
|
|
color: fade-out($white, .25);
|
|
}
|
|
|
|
// Custom horizontal rules
|
|
hr.divider {
|
|
max-width: 3.25rem;
|
|
border-width: 0.2rem;
|
|
border-color: $primary;
|
|
}
|
|
|
|
hr.light {
|
|
border-color: $white;
|
|
}
|
|
|
|
// Button restyling
|
|
.btn {
|
|
font-family: $font-family-sans-serif;
|
|
}
|
|
|
|
.btn-xl {
|
|
padding: 1.25rem 2.25rem;
|
|
font-size: 0.85rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
border: none;
|
|
border-radius: 10rem;
|
|
}
|
|
|
|
// Page section padding
|
|
.page-section {
|
|
padding: 8rem 0;
|
|
}
|