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,55 @@
1
+#footer {
2
+  background-color: lighten(@fa-green, 2%);
3
+  border-top: 1px solid @jumbotron-border;
4
+  color: mix(@jumbotron-color, @fa-green, 60%);
5
+  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
6
+  margin-top: 60px;
7
+  a {
8
+    color: mix(@jumbotron-color, @fa-green, 80%);
9
+    border-bottom: dotted 1px mix(@jumbotron-color, @fa-green, 60%);
10
+    &:hover {
11
+      color: @jumbotron-color;
12
+      text-decoration: none;
13
+      border-bottom: solid 1px @jumbotron-color;
14
+    }
15
+  }
16
+  .container {
17
+    padding-top: 50px;
18
+    padding-bottom: 55px;
19
+  }
20
+  .project { margin-top: 10px; }
21
+
22
+  #inventory {
23
+    a {
24
+      width: 220px;
25
+      overflow: hidden;
26
+      display: inline-block;
27
+      border-bottom: inherit;
28
+      margin: 0 15px 20px;
29
+
30
+    }
31
+    #CVADP2Y { display: inline; }
32
+  }
33
+}
34
+
35
+
36
+// Sticky Footer Styles
37
+// --------------------
38
+
39
+//html, body { height: 100%; }
40
+//
41
+//#wrap {
42
+//  min-height: 100%;
43
+//  height: auto !important;
44
+//  height: 100%;
45
+//}
46
+//
47
+//.sticky-footer();
48
+//
49
+//.sticky-footer(@footer-height: 356px, @footer-margin: 60px) {
50
+//  #wrap {
51
+//    margin: 0 auto -(@footer-height);
52
+//    padding: 0 0 (@footer-height + @footer-margin);
53
+//  }
54
+//  #footer { height: @footer-height; }
55
+//}