diff options
| author | Adam T. Carpenter <atc@53hor.net> | 2021-06-14 22:11:50 -0400 | 
|---|---|---|
| committer | Adam T. Carpenter <atc@53hor.net> | 2021-06-14 22:11:50 -0400 | 
| commit | 3df910b359125d35ca71f4e9419b0bd41d56718c (patch) | |
| tree | 5820c70c948223d4dcbb329cb05c25b94859a47a /_bulma/node_modules/bulma/sass/layout | |
| parent | 7a21088226eb6be30e72ec99f695c70e93a76173 (diff) | |
| download | carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.tar.xz carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.zip  | |
stripping bulma and cobalt; uneeded at this point
Diffstat (limited to '_bulma/node_modules/bulma/sass/layout')
| -rw-r--r-- | _bulma/node_modules/bulma/sass/layout/_all.sass | 5 | ||||
| -rw-r--r-- | _bulma/node_modules/bulma/sass/layout/footer.sass | 9 | ||||
| -rw-r--r-- | _bulma/node_modules/bulma/sass/layout/hero.sass | 145 | ||||
| -rw-r--r-- | _bulma/node_modules/bulma/sass/layout/section.sass | 13 | 
4 files changed, 0 insertions, 172 deletions
diff --git a/_bulma/node_modules/bulma/sass/layout/_all.sass b/_bulma/node_modules/bulma/sass/layout/_all.sass deleted file mode 100644 index 143ada3..0000000 --- a/_bulma/node_modules/bulma/sass/layout/_all.sass +++ /dev/null @@ -1,5 +0,0 @@ -@charset "utf-8" - -@import "hero.sass" -@import "section.sass" -@import "footer.sass" diff --git a/_bulma/node_modules/bulma/sass/layout/footer.sass b/_bulma/node_modules/bulma/sass/layout/footer.sass deleted file mode 100644 index 8faa11e..0000000 --- a/_bulma/node_modules/bulma/sass/layout/footer.sass +++ /dev/null @@ -1,9 +0,0 @@ -$footer-background-color: $scheme-main-bis !default -$footer-color: false !default -$footer-padding: 3rem 1.5rem 6rem !default - -.footer -  background-color: $footer-background-color -  padding: $footer-padding -  @if $footer-color -    color: $footer-color diff --git a/_bulma/node_modules/bulma/sass/layout/hero.sass b/_bulma/node_modules/bulma/sass/layout/hero.sass deleted file mode 100644 index b5283a8..0000000 --- a/_bulma/node_modules/bulma/sass/layout/hero.sass +++ /dev/null @@ -1,145 +0,0 @@ -$hero-body-padding: 3rem 1.5rem !default -$hero-body-padding-small: 1.5rem !default -$hero-body-padding-medium: 9rem 1.5rem !default -$hero-body-padding-large: 18rem 1.5rem !default - -// Main container -.hero -  align-items: stretch -  display: flex -  flex-direction: column -  justify-content: space-between -  .navbar -    background: none -  .tabs -    ul -      border-bottom: none -  // Colors -  @each $name, $pair in $colors -    $color: nth($pair, 1) -    $color-invert: nth($pair, 2) -    &.is-#{$name} -      background-color: $color -      color: $color-invert -      a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -      strong -        color: inherit -      .title -        color: $color-invert -      .subtitle -        color: bulmaRgba($color-invert, 0.9) -        a:not(.button), -        strong -          color: $color-invert -      .navbar-menu -        +touch -          background-color: $color -      .navbar-item, -      .navbar-link -        color: bulmaRgba($color-invert, 0.7) -      a.navbar-item, -      .navbar-link -        &:hover, -        &.is-active -          background-color: bulmaDarken($color, 5%) -          color: $color-invert -      .tabs -        a -          color: $color-invert -          opacity: 0.9 -          &:hover -            opacity: 1 -        li -          &.is-active a -            opacity: 1 -        &.is-boxed, -        &.is-toggle -          a -            color: $color-invert -            &:hover -              background-color: bulmaRgba($scheme-invert, 0.1) -          li.is-active a -            &, -            &:hover -              background-color: $color-invert -              border-color: $color-invert -              color: $color -      // Modifiers -      @if type-of($color) == 'color' -        &.is-bold -          $gradient-top-left: darken(saturate(adjust-hue($color, -10deg), 10%), 10%) -          $gradient-bottom-right: lighten(saturate(adjust-hue($color, 10deg), 5%), 5%) -          background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%) -          +mobile -            .navbar-menu -              background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%) -  // Sizes -  &.is-small -    .hero-body -      padding: $hero-body-padding-small -  &.is-medium -    +tablet -      .hero-body -        padding: $hero-body-padding-medium -  &.is-large -    +tablet -      .hero-body -        padding: $hero-body-padding-large -  &.is-halfheight, -  &.is-fullheight, -  &.is-fullheight-with-navbar -    .hero-body -      align-items: center -      display: flex -      & > .container -        flex-grow: 1 -        flex-shrink: 1 -  &.is-halfheight -    min-height: 50vh -  &.is-fullheight -    min-height: 100vh - -// Components - -.hero-video -  @extend %overlay -  overflow: hidden -  video -    left: 50% -    min-height: 100% -    min-width: 100% -    position: absolute -    top: 50% -    transform: translate3d(-50%, -50%, 0) -  // Modifiers -  &.is-transparent -    opacity: 0.3 -  // Responsiveness -  +mobile -    display: none - -.hero-buttons -  margin-top: 1.5rem -  // Responsiveness -  +mobile -    .button -      display: flex -      &:not(:last-child) -        margin-bottom: 0.75rem -  +tablet -    display: flex -    justify-content: center -    .button:not(:last-child) -      margin-right: 1.5rem - -// Containers - -.hero-head, -.hero-foot -  flex-grow: 0 -  flex-shrink: 0 - -.hero-body -  flex-grow: 1 -  flex-shrink: 0 -  padding: $hero-body-padding diff --git a/_bulma/node_modules/bulma/sass/layout/section.sass b/_bulma/node_modules/bulma/sass/layout/section.sass deleted file mode 100644 index 6f2d352..0000000 --- a/_bulma/node_modules/bulma/sass/layout/section.sass +++ /dev/null @@ -1,13 +0,0 @@ -$section-padding: 3rem 1.5rem !default -$section-padding-medium: 9rem 1.5rem !default -$section-padding-large: 18rem 1.5rem !default - -.section -  padding: $section-padding -  // Responsiveness -  +desktop -    // Sizes -    &.is-medium -      padding: $section-padding-medium -    &.is-large -      padding: $section-padding-large  |