mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-02 01:21:06 -05:00
* [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
21 lines
208 B
CSS
21 lines
208 B
CSS
@charset "UTF-8";
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: xx-large;
|
|
text-shadow: 1px -1px 0 #ccc;
|
|
}
|
|
|
|
h1 a {
|
|
color: #0062be;
|
|
text-decoration: none;
|
|
}
|
|
|
|
img {
|
|
border: 0;
|
|
}
|