mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-30 12:12:42 -04:00
* Main font color from blue to regular dark * newline added at the end of rtl css file * Text display improvements (code, quotes) + minor UI fixes * replaced 2 spaces with 1 tab bcz phpcs is whining about that * make fix-all * Mapco/base-theme - CSS cleaning * make fix-all * PR #4711 cleaning * Exclude generated CSS from lint check * Revert exclusion of generated CSS files Co-authored-by: patjennings <patjennings@MacBook-Pro-de-patjennings.local> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> Co-authored-by: patjennings <patjennings@macbook-pro-de-patjennings.home> Co-authored-by: maTh <math-home@web.de>
55 lines
650 B
SCSS
55 lines
650 B
SCSS
@use "fonts";
|
|
|
|
@use "mixins";
|
|
|
|
@use "variables";
|
|
|
|
@use "forms";
|
|
|
|
@use "tables";
|
|
|
|
@use "components";
|
|
|
|
@use "divers";
|
|
|
|
@use "sidebar";
|
|
|
|
@use "layout";
|
|
|
|
@use "list-view";
|
|
|
|
@use "global-view";
|
|
|
|
@use "reader-view";
|
|
|
|
@use "configuration";
|
|
|
|
@use "logs";
|
|
|
|
@use "stats";
|
|
|
|
@use "mobile";
|
|
|
|
@charset "UTF-8";
|
|
|
|
/*=== GENERAL */
|
|
/*============*/
|
|
html, body {
|
|
background: variables.$grey-light;
|
|
color: variables.$main-font-color;
|
|
font-family: "lato", "Helvetica", "Arial", sans-serif;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
body.formLogin,
|
|
body.register {
|
|
background: variables.$sid-bg;
|
|
}
|
|
|
|
/*=== Links */
|
|
a, button.as-link {
|
|
outline: none;
|
|
color: variables.$main-first;
|
|
}
|
|
|