website: initial ooknet website commit
This commit is contained in:
parent
97be7a19c6
commit
a9280b78cd
55 changed files with 2424 additions and 2 deletions
16
outputs/pkgs/website/src/sass/abstracts/_variables.scss
Normal file
16
outputs/pkgs/website/src/sass/abstracts/_variables.scss
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
@mixin min-screen($min-width: $body-width) {
|
||||
@media screen and (min-width: $min-width) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin max-screen($max-width: $body-width) {
|
||||
@media screen and (max-width: $max-width) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
$sidebar-width: 300px;
|
||||
$navbar-height: 50px;
|
||||
|
||||
$solid-border: 1px solid var(--clr-text);
|
||||
Loading…
Add table
Add a link
Reference in a new issue