Die Definition der Gestaltung wird durch LESS übernommen. Alle Geräte bis zum iPad und größer werden beachtet.

This commit is contained in:
2021-04-14 14:13:12 +02:00
parent 1b4983a06f
commit 338c3ce5e4
15 changed files with 1248 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
.button(@color, @colorFont) {
@colorBackground: @color;
@colorBackgroundLight: lighten(@colorBackground,50%,relativ);
@colorShadow: fade(@colorBackground,50%);
height: 2.5em;
.border-radius(1.25em);
padding: 0.5em 1.25em;
.vertical-gradient(@colorBackgroundLight, @colorBackground);
.box-shadow(0.1em 0.2em 0.5em @colorShadow);
color: @colorFont;
font-weight: bold;
&:hover {
.vertical-gradient(@colorBackground, @colorBackgroundLight);
}
margin: 0.25rem;
}