Files
FreshRSS/p/themes/Mapco/mapco.scss
Frans de Jonge 20c38d7083 [CI] Run stylelint (#2477)
* [CI] Run stylelint

Perform some basic CSS sanity checking and style enforcement.

I removed vendor prefixed linear-gradient and transform because those are from the IE9 era. With IE11 as a minimum and soon obsolete requirement it doesn't make much sense anymore.

* Remove as-link override

* Don't require newline after comment

* Also apply those newline rules to SCSS

* refine opening/closing braces, allow for single-line
2019-08-14 22:29:28 +02:00

49 lines
589 B
SCSS

@import "fonts";
@import "mixins";
@import "variables";
@import "forms";
@import "tables";
@import "components";
@import "divers";
@import "sidebar";
@import "layout";
@import "list-view";
@import "global-view";
@import "reader-view";
@import "configuration";
@import "logs";
@import "stats";
@import "mobile";
@charset "UTF-8";
/*=== GENERAL */
/*============*/
html, body {
background: $grey-light;
height: 100%;
font-family: "lato", "Helvetica", "Arial", sans-serif;
font-size: 0.875rem;
}
/*=== Links */
a, button.as-link {
outline: none;
color: $main-first;
}