mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

Why go full-circle with the Sass variables? This way we only need one interface for add-on authors to interact with. It also makes it easier for us to apply additional themes in the future.
41 lines
588 B
SCSS
41 lines
588 B
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
@use "sass/vars" as *;
|
|
@use "sass/card-counts";
|
|
@use "sass/button-mixins" as button;
|
|
|
|
.smallLink {
|
|
font-size: 10px;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.descfont {
|
|
padding: 1em;
|
|
color: color(fg-subtle);
|
|
}
|
|
|
|
.description {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
#fulldesc {
|
|
display: none;
|
|
}
|
|
|
|
.descmid {
|
|
width: 70%;
|
|
margin: 0 auto 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.dyn {
|
|
text-align: center;
|
|
}
|
|
|
|
#study {
|
|
@include button.base($primary: true);
|
|
}
|