Auto fix stylelint

This commit is contained in:
Christian Wolf 2025-02-27 09:11:58 +01:00
parent 497b5cced7
commit b9db6db126
6 changed files with 16 additions and 21 deletions

View File

@ -1,5 +1,4 @@
$green: #69a840; $green: #69a840;
$black: #000000; $black: #000;
$light-gray: #d3d3d3; $light-gray: #d3d3d3;
$background-color: $light-gray; $background-color: $light-gray;

View File

@ -1,4 +1,5 @@
// Generated with https://google-webfonts-helper.herokuapp.com/fonts/noto-sans?subsets=latin // Generated with https://google-webfonts-helper.herokuapp.com/fonts/noto-sans?subsets=latin
/* noto-sans-regular - latin */ /* noto-sans-regular - latin */
@font-face { @font-face {
font-family: 'Noto Sans'; font-family: 'Noto Sans';

View File

@ -5,13 +5,11 @@
#header { #header {
.text { .text {
background-color: $green; background-color: $green;
padding: 5px 0;
padding: 5px 0px;
.logo-link { .logo-link {
display: flex; display: flex;
justify-content: center; justify-content: center;
width: 100%; width: 100%;
@include r.normal { @include r.normal {
@ -21,6 +19,7 @@
img { img {
max-width: 85%; max-width: 85%;
// height: 100%; // height: 100%;
@include r.normal { @include r.normal {
max-height: 100px; max-height: 100px;

View File

@ -30,7 +30,6 @@
> a { > a {
border: 1pt solid c.$black; border: 1pt solid c.$black;
padding: 5px 10px; padding: 5px 10px;
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
} }

View File

@ -3,7 +3,7 @@ $width-narrow: 750px;
$width-normal: 1000px; $width-normal: 1000px;
$width-wide: 1600px; $width-wide: 1600px;
@mixin responsive ($min-width) { @mixin responsive($min-width) {
@media screen and (min-width: $min-width) { @media screen and (min-width: $min-width) {
@content; @content;
} }

View File

@ -6,16 +6,14 @@
@use './menu'; @use './menu';
@use "./footer"; @use "./footer";
$color-green-1: rgb(184,229,162); $color-green-1: rgb(184 229 162);
$color-green-2: rgb(162,221,131); $color-green-2: rgb(162 221 131);
$color-brown-header: rgb(0 62 41);
$color-brown-header: rgb(0,62,41); $color-darkgreen: rgb(1 67 39);
$color-darkgreen: rgb(1,67,39); $color-midgreen: rgb(0 70 8);
$color-midgreen: rgb(0,70,8); $color-green: rgb(5 162 23);
$color-green: rgb(5,162,23); $color-petrol: rgb(6 78 75);
$color-petrol: rgb(6,78,75); $color-darkgray: rgb(0 40 39);
$color-darkgray: rgb(0,40,39);
$major-radius: 15px; $major-radius: 15px;
$big-button-radius: 10px; $big-button-radius: 10px;
$button-radius: 5px; $button-radius: 5px;
@ -24,17 +22,16 @@ $button-radius: 5px;
$width-narrow: 750px; $width-narrow: 750px;
$width-normal: 1000px; $width-normal: 1000px;
$width-wide: 1600px; $width-wide: 1600px;
$indent-menu-left: 25px; $indent-menu-left: 25px;
body { body {
padding: 0px; padding: 0;
margin: 0px auto; margin: 0 auto;
font-size: 12px; font-size: 12px;
// max-width: 1100px; // max-width: 1100px;
min-height: 100.1vh; min-height: 100.1vh;
background-color: colors.$background-color; background-color: colors.$background-color;
font-family: 'Noto Sans', sans-serif; font-family: 'Noto Sans', sans-serif;
@include r.narrow { @include r.narrow {