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,26 @@
1
+.small-caps {
2
+  font-family: @font-family-alt;
3
+}
4
+
5
+.hr {
6
+  position: relative;
7
+  text-align: center;
8
+  font-size: @font-size-base;
9
+  z-index: 1;
10
+  min-height: 20px;
11
+
12
+  &:after {
13
+    content: " ";
14
+    position: absolute;
15
+    top: 50%;
16
+    left: 0;
17
+    right: 0;
18
+    border-top: 2px solid @hr-border;
19
+    z-index: -1;
20
+  }
21
+  .hr-text {
22
+    display: inline-block;
23
+    background-color: #fff;
24
+    padding: 0 .5em;
25
+  }
26
+}