Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,21 @@
1
+// reset
2
+.label {
3
+  padding: .3em .6em;
4
+}
5
+
6
+// new types of labels
7
+.label-brand {
8
+  .label-variant(@label-brand-bg);
9
+}
10
+
11
+.label-dark {
12
+  .label-variant(@label-dark-bg);
13
+}
14
+
15
+// labels inside of headings
16
+h1, h2, h3, h4, h5, h6 {
17
+
18
+  .label {
19
+    font-family: @font-family-sans-serif;
20
+  }
21
+}