mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
77a60c6c48
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
28 lines
496 B
SCSS
28 lines
496 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
& {
|
|
color: $body-color;
|
|
background-color: $body-bg; // 2
|
|
}
|
|
|
|
a {
|
|
color: $link-color;
|
|
background-color: transparent; // Remove the gray background on active links in IE 10.
|
|
|
|
@include hover() {
|
|
color: $link-hover-color;
|
|
}
|
|
}
|
|
|
|
caption {
|
|
color: $table-caption-color;
|
|
}
|
|
|
|
button:focus {
|
|
outline: 1px dotted;
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
}
|