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,87 @@
1
+.jumbotron {
2
+  background-color: lighten(@jumbotron-bg, 2%);
3
+  border-top: 1px solid mix(@jumbotron-bg, @jumbotron-color, 90%);
4
+  border-bottom: 1px solid @jumbotron-border;
5
+  margin-bottom: 0;
6
+  &, h1 { color: @jumbotron-color; }
7
+  padding: 50px 0 40px;
8
+
9
+  h1 {
10
+    font-size: 80px;
11
+    letter-spacing: -2px;
12
+    line-height: 1;
13
+    margin: 0 0 15px;
14
+  }
15
+  p {
16
+    font-family: @font-family-alt;
17
+    margin-top: 15px;
18
+    margin-bottom: 15px;
19
+    font-size: 24px;
20
+    line-height: 1.3;
21
+    font-weight: lighter;
22
+  }
23
+
24
+  .list-group-item {
25
+    border-color: mix(@jumbotron-color, @fa-green, 15%);
26
+    background: transparent;
27
+  }
28
+
29
+  .text-muted {
30
+    color: mix(@jumbotron-color, @fa-green, 45%);
31
+  }
32
+}
33
+
34
+.jumbotron-ad, .jumbotron-carousel {
35
+  h1 {
36
+    text-shadow: 4px 3px 0px @jumbotron-bg, 9px 8px 0px rgba(0,0,0,0.15); // double text shadow
37
+  }
38
+  p {
39
+    color: mix(@jumbotron-color, @jumbotron-bg, 75%);
40
+    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
41
+  }
42
+}
43
+
44
+.jumbotron-icon {
45
+  padding: 30px 0 25px;
46
+  background-color: @gray-lighter;
47
+  color: @gray-darker;
48
+  &, h1 { text-shadow: 0 1px 0 #fff; }
49
+  border-bottom-color: mix(@gray-light, @gray-lighter, 25%);
50
+  border-top-color: mix(#fff, @gray-lighter, 50%);
51
+  h1 {
52
+    color: @gray-darker;
53
+    margin-top: @buffer-lg;
54
+    small {
55
+      letter-spacing: normal;
56
+      font-family: @font-family-sans-serif;
57
+      font-size: @font-size-base;
58
+      margin-left: 20px;
59
+    }
60
+  }
61
+
62
+  .info-icons {
63
+    font-size: @font-size-base;
64
+  }
65
+  .info-details {
66
+    float: left;
67
+    p {
68
+      margin: 25px 0;
69
+      font-weight: bold;
70
+    }
71
+    .dl-horizontal {
72
+      dt { width: @component-offset-horizontal - 100; }
73
+      dd { margin-left: @component-offset-horizontal - 85; }
74
+    }
75
+  }
76
+  .fa-2 { font-size: 2em; }
77
+  .fa-3 { font-size: 4em; }
78
+  .fa-4 { font-size: 7em; }
79
+  .fa-5 { font-size: 12em; }
80
+  .fa-6 { font-size: 20em; }
81
+
82
+  .fa-1, .fa-2, .fa-3, .fa-4, .fa-5, .fa-6 { margin-right: 1/14em; }
83
+}
84
+
85
+h1.info-class {
86
+  font-size: 30px;
87
+}