mirror of
https://github.com/explosion/spaCy.git
synced 2025-12-05 01:04:45 +03:00
* Fix gap in landing pattern at the top * Replace `.jpg` patterns with `.png` This drastically reduces file size (for the landing page from 221kb to 57kb) while doubling the resolution to look sharper on retina displays.
42 lines
835 B
Sass
42 lines
835 B
Sass
@import base
|
|
|
|
.root
|
|
max-width: 100%
|
|
min-height: 100vh
|
|
|
|
@include breakpoint(min, md)
|
|
.root
|
|
padding: var(--height-nav) 0 0 0
|
|
|
|
.with-sidebar
|
|
margin-left: var(--width-sidebar)
|
|
|
|
.with-asides
|
|
margin-right: var(--width-aside)
|
|
position: relative
|
|
|
|
.asides
|
|
position: absolute
|
|
top: 0
|
|
left: 100%
|
|
width: var(--width-aside)
|
|
height: 100%
|
|
content: ""
|
|
display: block
|
|
background-color: var(--color-theme)
|
|
background-repeat: repeat
|
|
background-position: center top
|
|
background-size: 799px 643px
|
|
z-index: -1
|
|
min-height: 100vh
|
|
|
|
.content
|
|
padding: 3rem 7.5rem
|
|
margin: 0 auto
|
|
width: var(--width-content)
|
|
max-width: 100%
|
|
|
|
@include breakpoint(max, sm)
|
|
.content
|
|
padding: 3rem
|