mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 03:26:16 +00:00
205 lines
4 KiB
Sass
205 lines
4 KiB
Sass
.banner,
|
|
.banner-small
|
|
width: 100%
|
|
position: relative
|
|
color: RGB($fg-white)
|
|
|
|
.link
|
|
padding: 0.1rem 0.3rem
|
|
|
|
text-decoration: none
|
|
font-weight: 500
|
|
|
|
background-color: RGB($fg-white)
|
|
color: RGB($fg-black)
|
|
border-radius: $rad-inner
|
|
|
|
cursor: pointer
|
|
|
|
&:hover
|
|
background-color: RGB($fg-black)
|
|
color: RGB($fg-white)
|
|
|
|
.banner
|
|
height: 30rem
|
|
max-height: 69vh
|
|
|
|
img
|
|
position: absolute
|
|
inset: 0
|
|
|
|
width: 100%
|
|
height: 100%
|
|
|
|
background-color: inherit
|
|
|
|
object-fit: cover
|
|
object-position: center center
|
|
|
|
.banner-filter
|
|
position: absolute
|
|
inset: 0
|
|
|
|
width: 100%
|
|
height: 100%
|
|
|
|
background: linear-gradient(to right, RGB($bg-100), transparent)
|
|
|
|
z-index: +1
|
|
|
|
.banner-content
|
|
padding: 0.5rem
|
|
|
|
width: 100%
|
|
height: auto
|
|
|
|
position: absolute
|
|
left: 0
|
|
bottom: 0
|
|
|
|
display: grid
|
|
grid-template-columns: auto 1fr auto
|
|
grid-template-areas: 'info info info' 'image header header' 'subtitle subtitle options'
|
|
|
|
z-index: +2
|
|
|
|
.banner-header,
|
|
.banner-info,
|
|
.banner-subtitle
|
|
margin: 0
|
|
padding: 0
|
|
width: 100%
|
|
|
|
.banner-header
|
|
grid-area: header
|
|
|
|
margin: 0.5rem 0
|
|
|
|
text-align: left
|
|
font-size: 6.9rem
|
|
font-weight: 700
|
|
|
|
color: RGB($primary)
|
|
|
|
.banner-info
|
|
grid-area: info
|
|
font-size: 1rem
|
|
font-weight: 400
|
|
.banner-subtitle
|
|
grid-area: subtitle
|
|
font-size: 1rem
|
|
font-weight: 400
|
|
|
|
.pill-row
|
|
margin-top: auto
|
|
grid-area: options
|
|
|
|
.banner-picture
|
|
grid-area: image
|
|
|
|
margin: auto 1rem auto 0
|
|
|
|
position: relative
|
|
|
|
width: 6.9rem
|
|
height: 6.9rem
|
|
|
|
background-color: RGB($primary)
|
|
border-radius: $rad
|
|
|
|
.banner-small
|
|
height: 3.5rem
|
|
|
|
.banner-content
|
|
padding: 0 0.5rem
|
|
|
|
width: 100%
|
|
height: 100%
|
|
|
|
position: absolute
|
|
inset: 0
|
|
|
|
display: flex
|
|
flex-direction: row
|
|
justify-content: flex-start
|
|
|
|
z-index: +2
|
|
|
|
.banner-header,
|
|
.banner-info
|
|
margin: auto 0
|
|
padding: 0
|
|
width: auto
|
|
height: auto
|
|
justify-self: flex-start
|
|
|
|
.banner-header
|
|
margin-right: 0.6rem
|
|
|
|
white-space: nowrap
|
|
text-overflow: ellipsis
|
|
overflow: hidden
|
|
text-align: left
|
|
font-weight: 700
|
|
font-size: 1.5rem
|
|
|
|
color: RGB($primary)
|
|
|
|
.banner-info
|
|
margin-right: 0.6rem
|
|
|
|
font-size: 0.9rem
|
|
font-weight: 400
|
|
|
|
.pill-row
|
|
margin-left: auto
|
|
width: auto
|
|
|
|
@media (max-width: $breakpoint)
|
|
.banner,
|
|
.banner-small
|
|
&::after
|
|
display: none
|
|
|
|
.banner
|
|
min-height: 15rem
|
|
height: auto
|
|
max-height: 30vh
|
|
|
|
.banner-filter
|
|
background: linear-gradient(to bottom, RGB($bg-100), transparent)
|
|
|
|
.banner-content
|
|
padding: 0.5rem
|
|
height: 100%
|
|
|
|
display: flex
|
|
flex-direction: column
|
|
justify-content: center
|
|
align-items: center
|
|
|
|
.banner-header
|
|
margin: 0.7rem 0
|
|
text-align: center
|
|
font-size: 2.5rem
|
|
|
|
.banner-info
|
|
font-size: 1.1rem
|
|
text-align: center
|
|
|
|
.banner-subtitle
|
|
display: none
|
|
|
|
.pill-row
|
|
margin-top: 0rem
|
|
|
|
.banner-picture
|
|
margin: 0 auto
|
|
width: 4rem
|
|
height: 4rem
|
|
display: flex
|
|
|
|
.banner-small
|
|
.banner-content
|
|
.banner-info
|
|
display: none
|