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,50 @@
1
+// view-specific
2
+
3
+// reset background
4
+.v-get-started,
5
+.v-store,
6
+.v-accessibility {
7
+  background: @alert-well-bg; // resetting for depth
8
+}
9
+
10
+// get started
11
+.v-get-started {
12
+
13
+  .get-started-cdn {
14
+    background: @section-emphasized-bg;
15
+  }
16
+
17
+  .jumbotron {
18
+    border-bottom: none;
19
+  }
20
+
21
+  // sections
22
+  .get-started-cdn {
23
+    z-index: 2;
24
+    position: relative;
25
+    border-radius: @border-radius-base;
26
+    padding: @buffer-sm @buffer-xl @buffer-lg @buffer-xl;
27
+  }
28
+
29
+  .hr .hr-text {
30
+    background:  @alert-well-bg;
31
+    font-family: @font-family-serif;
32
+    font-size: (@font-size-large*1.5);
33
+  }
34
+}
35
+
36
+// accessibility
37
+.v-accessibility {
38
+
39
+  .accessibility-cdn {
40
+    background: @section-emphasized-bg;
41
+    border-radius: @border-radius-base;
42
+    padding: @buffer-lg;
43
+  }
44
+
45
+  .hr .hr-text {
46
+    background:  @alert-well-bg;
47
+    font-family: @font-family-serif;
48
+    font-size: (@font-size-large*1.5);
49
+  }
50
+}