2021-12-25 15:44:24 +00:00
|
|
|
/*
|
2021-01-06 20:37:59 +00:00
|
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 20:50:07 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-12-30 20:26:56 +00:00
|
|
|
@import "variables.module";
|
2020-11-28 21:08:18 +00:00
|
|
|
@import "variables.light";
|
2022-10-16 09:20:34 +00:00
|
|
|
@import "~bootstrap/scss/bootstrap";
|
2021-12-25 15:44:24 +00:00
|
|
|
@import '~react-bootstrap-typeahead/css/Typeahead';
|
|
|
|
@import "~@fontsource/source-sans-pro/index.css";
|
|
|
|
@import "~twemoji-colr-font/twemoji";
|
|
|
|
@import '~firacode/distr/fira_code';
|
|
|
|
@import "typeahead";
|
|
|
|
@import "./button-inside";
|
|
|
|
@import "./highlight-js";
|
|
|
|
@import "./github-markdown";
|
|
|
|
@import "./markdown-tweaks";
|
|
|
|
@import "./reveal";
|
2020-05-14 13:41:38 +00:00
|
|
|
|
2020-09-13 16:04:02 +00:00
|
|
|
.text-black, body.dark .text-black {
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
|
2021-01-24 19:50:51 +00:00
|
|
|
.cursor-pointer {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-09-13 16:04:02 +00:00
|
|
|
body {
|
2021-02-08 14:03:11 +00:00
|
|
|
background-color: $dark;
|
2020-09-13 16:04:02 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 15:44:24 +00:00
|
|
|
#__next {
|
2021-02-17 21:58:21 +00:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
2020-05-14 13:41:38 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-06-02 09:22:49 +00:00
|
|
|
|
2020-05-14 13:41:38 +00:00
|
|
|
body {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2020-06-06 23:09:04 +00:00
|
|
|
.mt-1dot5 {
|
|
|
|
margin-top: 0.375rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa.fa-fix-line-height {
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
2020-06-08 21:49:14 +00:00
|
|
|
|
|
|
|
.text-start {
|
|
|
|
text-align: start;
|
|
|
|
}
|
2020-06-12 22:04:10 +00:00
|
|
|
|
|
|
|
.mvh-100 {
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
2020-06-19 22:44:18 +00:00
|
|
|
|
|
|
|
.overflow-y-scroll {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2020-08-16 14:02:26 +00:00
|
|
|
|
|
|
|
.font-style-normal {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2020-09-19 18:12:57 +00:00
|
|
|
|
|
|
|
.cursor-zoom-in {
|
|
|
|
cursor: zoom-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cursor-zoom-out {
|
|
|
|
cursor: zoom-out;
|
|
|
|
}
|
2020-09-26 07:54:17 +00:00
|
|
|
|
|
|
|
.dropup .dropdown-toggle, .dropdown-toggle {
|
|
|
|
&.no-arrow::after {
|
|
|
|
content: initial;
|
|
|
|
}
|
|
|
|
}
|
2021-01-02 23:19:10 +00:00
|
|
|
|
|
|
|
.overflow-x-auto {
|
|
|
|
overflow-x: auto !important;
|
|
|
|
}
|
2021-02-08 14:03:11 +00:00
|
|
|
|
|
|
|
.overflow-y-hidden {
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
}
|