mirror of
https://github.com/Febbweiss/springboot-react-webpack.git
synced 2026-03-04 22:25:34 +00:00
13 lines
312 B
Plaintext
13 lines
312 B
Plaintext
@base: #f938ab;
|
|
|
|
.box-shadow(@style, @c) when (iscolor(@c)) {
|
|
-webkit-box-shadow: @style @c;
|
|
box-shadow: @style @c;
|
|
}
|
|
.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
|
|
.box-shadow(@style, rgba(0, 0, 0, @alpha));
|
|
}
|
|
.box {
|
|
color: saturate(@base, 5%);
|
|
border-color: lighten(@base, 30%);
|
|
} |