hedgedoc/src/style/index.scss

82 lines
1.2 KiB
SCSS
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
2020-09-13 12:04:02 -04:00
@import './light';
@import "../../node_modules/bootstrap/scss/bootstrap";
@import '../../node_modules/react-bootstrap-typeahead/css/Typeahead';
@import "fonts/source-code-pro/source-code-pro";
@import "fonts/twemoji/twemoji";
2020-09-26 03:54:17 -04:00
@import '../../node_modules/fork-awesome/css/fork-awesome.min';
2020-09-13 12:04:02 -04:00
.text-black, body.dark .text-black {
color: $black;
}
body {
background-color: darken($dark, 8%);
}
html {
height: 100%;
}
body {
min-height: 100%;
font-family: "Source Sans Pro", Helvetica, Arial, "Twemoji Mozilla", sans-serif;
}
*:focus {
outline: 0 !important;
}
.mt-1dot5 {
margin-top: 0.375rem !important;
}
.fa.fa-fix-line-height {
line-height: inherit;
}
.text-start {
text-align: start;
}
.mvh-100 {
min-height: 100vh;
}
.overflow-y-scroll {
overflow-y: scroll;
}
.font-style-normal {
font-style: normal;
}
.cursor-zoom-in {
cursor: zoom-in;
}
.cursor-zoom-out {
cursor: zoom-out;
}
2020-09-26 03:54:17 -04:00
.faded-fa {
.fa, &::after {
opacity: 0.5;
}
&:hover .fa, &:hover::after {
opacity: 1;
}
}
.dropup .dropdown-toggle, .dropdown-toggle {
&.no-arrow::after {
content: initial;
}
}