coloured border experiment

This commit is contained in:
Mashy
2019-10-15 16:05:58 +10:00
parent 1c611c31e9
commit b2e4570bfb
2 changed files with 41 additions and 1 deletions
+18
View File
@@ -139,6 +139,24 @@ button, input {
color: @gray-focus;
border-color: @gray-focus;
}
&.red-border {
font-z-color: @red;
}
&.blue-border {
border-color: @blue;
}
&.green-border {
border-color: @green;
}
&.red-blue-border {
border-image: linear-gradient(to right, @red 50%, @blue 50%) 5;
}
&.red-green-border {
border-image: linear-gradient(to right, @red 50%, @green 50%) 5;
}
&.blue-green-border {
border-image: linear-gradient(to right, @blue 50%, @green 50%) 5;
}
}
a {