34 lines
651 B
SCSS
34 lines
651 B
SCSS
|
$section-padding: 1rem 0rem;
|
||
|
$section-padding-desktop: $section-padding;
|
||
|
$section-padding-large: $section-padding;
|
||
|
|
||
|
@import "./bulma/bulma.sass";
|
||
|
|
||
|
.nav-tabs.tabs {
|
||
|
li:first-of-type a {
|
||
|
justify-content: left !important;
|
||
|
}
|
||
|
li:last-of-type a {
|
||
|
justify-content: right !important;
|
||
|
}
|
||
|
a {
|
||
|
padding: 0.5rem 0
|
||
|
}
|
||
|
|
||
|
.is-active a {
|
||
|
text-decoration: underline;
|
||
|
font-weight: bold;
|
||
|
color: $tabs-link-color;
|
||
|
border-bottom-color: $tabs-border-bottom-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.is-size-0 {
|
||
|
font-size: 5rem;
|
||
|
}
|
||
|
|
||
|
.header .hero-body {
|
||
|
padding-left: 0px !important;
|
||
|
padding-top: 8em;
|
||
|
}
|