summaryrefslogtreecommitdiff
path: root/_bulma/node_modules/bulma/sass/components/list.sass
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
committerAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
commit3df910b359125d35ca71f4e9419b0bd41d56718c (patch)
tree5820c70c948223d4dcbb329cb05c25b94859a47a /_bulma/node_modules/bulma/sass/components/list.sass
parent7a21088226eb6be30e72ec99f695c70e93a76173 (diff)
downloadcarpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.tar.xz
carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.zip
stripping bulma and cobalt; uneeded at this point
Diffstat (limited to '_bulma/node_modules/bulma/sass/components/list.sass')
-rw-r--r--_bulma/node_modules/bulma/sass/components/list.sass39
1 files changed, 0 insertions, 39 deletions
diff --git a/_bulma/node_modules/bulma/sass/components/list.sass b/_bulma/node_modules/bulma/sass/components/list.sass
deleted file mode 100644
index bc99428..0000000
--- a/_bulma/node_modules/bulma/sass/components/list.sass
+++ /dev/null
@@ -1,39 +0,0 @@
-$list-background-color: $scheme-main !default
-$list-shadow: 0 2px 3px rgba($scheme-invert, 0.1), 0 0 0 1px rgba($scheme-invert, 0.1) !default
-$list-radius: $radius !default
-
-$list-item-border: 1px solid $border !default
-$list-item-color: $text !default
-$list-item-active-background-color: $link !default
-$list-item-active-color: $link-invert !default
-$list-item-hover-background-color: $background !default
-
-.list
- @extend %block
- background-color: $list-background-color
- border-radius: $list-radius
- box-shadow: $list-shadow
- // &.is-hoverable > .list-item:hover:not(.is-active)
- // background-color: $list-item-hover-background-color
- // cursor: pointer
-
-.list-item
- display: block
- padding: 0.5em 1em
- &:not(a)
- color: $list-item-color
- &:first-child
- border-top-left-radius: $list-radius
- border-top-right-radius: $list-radius
- &:last-child
- border-bottom-left-radius: $list-radius
- border-bottom-right-radius: $list-radius
- &:not(:last-child)
- border-bottom: $list-item-border
- &.is-active
- background-color: $list-item-active-background-color
- color: $list-item-active-color
-
-a.list-item
- background-color: $list-item-hover-background-color
- cursor: pointer