mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
40 lines
997 B
Sass
40 lines
997 B
Sass
@import branding
|
|
|
|
.producers
|
|
.active_table .active_table_node
|
|
|
|
// Header row
|
|
@media all and (max-width: 640px)
|
|
.skinny-head
|
|
background-color: $clr-turquoise-light
|
|
margin-top: -1rem
|
|
margin-bottom: 1rem
|
|
padding-top: 1rem
|
|
padding-bottom: 1rem
|
|
|
|
//Open row
|
|
&.open
|
|
|
|
.active_table_row
|
|
border-left: 1px solid $clr-turquoise-bright
|
|
border-right: 1px solid $clr-turquoise-bright
|
|
background-color: rgba(255,255,255,0.4)
|
|
.cta-container
|
|
background: none
|
|
.columns img
|
|
padding: 1rem 0
|
|
max-height: 160px
|
|
width: auto
|
|
|
|
.active_table_row:first-child
|
|
border-top: 1px solid $clr-turquoise-bright
|
|
|
|
.active_table_row:last-child
|
|
border-bottom: 1px solid $clr-turquoise-bright
|
|
cursor: auto
|
|
|
|
//Closed row
|
|
&.closed
|
|
&:hover, &:active, &:focus
|
|
.active_table_row.closed
|
|
border: 1px solid $clr-turquoise |