44 lines
762 B
SCSS
44 lines
762 B
SCSS
$section-padding: 1rem 0rem;
|
|
$section-padding-desktop: $section-padding;
|
|
$section-padding-large: $section-padding;
|
|
|
|
$gray: #707070;
|
|
|
|
@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;
|
|
}
|
|
|
|
iframe {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
hr {
|
|
background-color: $gray;
|
|
height: 0.1rem;
|
|
} |