mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
107 lines
2.2 KiB
Sass
107 lines
2.2 KiB
Sass
.tabs
|
|
+block
|
|
+unselectable
|
|
align-items: stretch
|
|
display: flex
|
|
font-size: $size-normal
|
|
justify-content: space-between
|
|
overflow: hidden
|
|
overflow-x: auto
|
|
white-space: nowrap
|
|
a
|
|
align-items: center
|
|
border-bottom: 1px solid $border
|
|
color: $text
|
|
display: flex
|
|
justify-content: center
|
|
margin-bottom: -1px
|
|
padding: 0.5em 1em
|
|
vertical-align: top
|
|
&:hover
|
|
border-bottom-color: $text-strong
|
|
color: $text-strong
|
|
li
|
|
display: block
|
|
&.is-active
|
|
a
|
|
border-bottom-color: $primary
|
|
color: $primary
|
|
ul
|
|
align-items: center
|
|
border-bottom: 1px solid $border
|
|
display: flex
|
|
flex-grow: 1
|
|
flex-shrink: 0
|
|
justify-content: flex-start
|
|
&.is-left
|
|
padding-right: 0.75em
|
|
&.is-center
|
|
flex: none
|
|
justify-content: center
|
|
padding-left: 0.75em
|
|
padding-right: 0.75em
|
|
&.is-right
|
|
justify-content: flex-end
|
|
padding-left: 0.75em
|
|
.icon
|
|
&:first-child
|
|
margin-right: 0.5em
|
|
&:last-child
|
|
margin-left: 0.5em
|
|
// Alignment
|
|
&.is-centered
|
|
ul
|
|
justify-content: center
|
|
&.is-right
|
|
ul
|
|
justify-content: flex-end
|
|
// Styles
|
|
&.is-boxed
|
|
a
|
|
border: 1px solid transparent
|
|
border-radius: $radius $radius 0 0
|
|
&:hover
|
|
background-color: $background
|
|
border-bottom-color: $border
|
|
li
|
|
&.is-active
|
|
a
|
|
background-color: $white
|
|
border-color: $border
|
|
border-bottom-color: transparent !important
|
|
&.is-fullwidth
|
|
li
|
|
flex-grow: 1
|
|
flex-shrink: 0
|
|
&.is-toggle
|
|
a
|
|
border: 1px solid $border
|
|
margin-bottom: 0
|
|
position: relative
|
|
&:hover
|
|
background-color: $background
|
|
border-color: $border-hover
|
|
z-index: 2
|
|
li
|
|
& + li
|
|
margin-left: -1px
|
|
&:first-child a
|
|
border-radius: $radius 0 0 $radius
|
|
&:last-child a
|
|
border-radius: 0 $radius $radius 0
|
|
&.is-active
|
|
a
|
|
background-color: $primary
|
|
border-color: $primary
|
|
color: $primary-invert
|
|
z-index: 1
|
|
ul
|
|
border-bottom: none
|
|
// Sizes
|
|
&.is-small
|
|
font-size: $size-small
|
|
&.is-medium
|
|
font-size: $size-medium
|
|
&.is-large
|
|
font-size: $size-large
|