mirror of
https://github.com/minio/docs.git
synced 2025-08-05 03:41:24 +03:00
43 lines
900 B
SCSS
43 lines
900 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
&:focus,
|
|
&:active {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
html {
|
|
font-size: $root-font-size;
|
|
scroll-padding: 1rem;
|
|
|
|
@include breakpoint-min(breakpoints(lg)) {
|
|
&.read-mode {
|
|
body {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
body {
|
|
all: unset;
|
|
font-family: $font-family-base;
|
|
font-size: 1rem;
|
|
line-height: $body-line-height;
|
|
color: var(--text-color);
|
|
font-weight: $font-weight-normal;
|
|
background-color: var(--body-bg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
word-break: break-word;
|
|
overflow-x: hidden;
|
|
|
|
@include breakpoint-min(breakpoints(xl)) {
|
|
background: url(../img/bg.png) no-repeat top 5rem right;
|
|
background-size: 120px;
|
|
}
|
|
} |