imamnurby commited on
Commit
130b79c
1 Parent(s): c6454af

Create static/frontend.css

Browse files
Files changed (1) hide show
  1. static/frontend.css +45 -0
static/frontend.css ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --jumbotron-padding-y: 3rem;
3
+ }
4
+
5
+ .jumbotron {
6
+ padding-top: var(--jumbotron-padding-y);
7
+ padding-bottom: var(--jumbotron-padding-y);
8
+ margin-bottom: 0;
9
+ background-color: #fff;
10
+ }
11
+ @media (min-width: 768px) {
12
+ .jumbotron {
13
+ padding-top: calc(var(--jumbotron-padding-y) * 2);
14
+ padding-bottom: calc(var(--jumbotron-padding-y) * 2);
15
+ }
16
+ }
17
+
18
+ .jumbotron p:last-child {
19
+ margin-bottom: 0;
20
+ }
21
+
22
+ .jumbotron-heading {
23
+ font-weight: 300;
24
+ }
25
+
26
+ .jumbotron .container {
27
+ max-width: 40rem;
28
+ }
29
+
30
+ footer {
31
+ padding-top: 3rem;
32
+ padding-bottom: 3rem;
33
+ }
34
+
35
+ footer p {
36
+ margin-bottom: .25rem;
37
+ }
38
+
39
+ .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
40
+
41
+ #hide {
42
+ display: none;
43
+ }
44
+
45
+