Blame view

frontend/themes/markup/src/scss/_bootstrap.scss 1.64 KB
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  // Core variables and mixins
  @import "bootstrap/variables";
  @import "bootstrap/mixins";
  
  // Reset and dependencies
  @import "bootstrap/normalize";
  @import "bootstrap/print";
  @import "bootstrap/glyphicons";
  
  // Core CSS
  @import "bootstrap/scaffolding";
  @import "bootstrap/type";
  @import "bootstrap/code";
  @import "bootstrap/grid";
  @import "bootstrap/tables";
  @import "bootstrap/forms";
  @import "bootstrap/buttons";
  
  // Components
  @import "bootstrap/component-animations";
  @import "bootstrap/dropdowns";
  @import "bootstrap/button-groups";
  @import "bootstrap/input-groups";
  @import "bootstrap/navs";
  @import "bootstrap/navbar";
  @import "bootstrap/breadcrumbs";
  @import "bootstrap/pagination";
  @import "bootstrap/pager";
  @import "bootstrap/labels";
  @import "bootstrap/badges";
  @import "bootstrap/jumbotron";
  @import "bootstrap/thumbnails";
  @import "bootstrap/alerts";
  @import "bootstrap/progress-bars";
  @import "bootstrap/media";
  @import "bootstrap/list-group";
  @import "bootstrap/panels";
  @import "bootstrap/responsive-embed";
  @import "bootstrap/wells";
  @import "bootstrap/close";
  
  
  // Components w/ JavaScript
  @import "bootstrap/modals";
  //@import "bootstrap/tooltip";
  //@import "bootstrap/popovers";
  //@import "bootstrap/carousel";
  
  // Utility classes
  @import "bootstrap/utilities";
  @import "bootstrap/responsive-utilities";
  /* Sticky footer styles
  -------------------------------------------------- */
  html {
    position: relative;
    min-height: 100%;
  }
  body {
    /* Margin bottom by footer height */
    margin-bottom: 190px;
  }
  .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 190px;
    padding: 40px 0 80px 0;
  }