Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_grid.scss « scss - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 583c00eac694afe16932df50f06da3c5e9b1ef21 (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//
// Grid system
// --------------------------------------------------


// Container widths
//
// Set the container width, and override it for fixed navbars in media queries.

.container {
  @include make-container();

  // For each breakpoint, define the maximum width of the container in a media query
  @each $breakpoint, $container-max-width in $container-max-widths {
    @include media-breakpoint-up($breakpoint) {
      max-width: $container-max-width;
    }
  }
}


// Fluid container
//
// Utilizes the mixin meant for fixed width containers, but without any defined
// width for fluid, full width layouts.

.container-fluid {
  @include make-container();
}


// Row
//
// Rows contain and clear the floats of your columns.

.row {
  @include make-row();
}


// Columns
//
// Common styles for small and large grid columns

@include make-grid-columns();


// Flex variation
//
// Custom styles for additional flex alignment options.

@if $enable-flex {

  // Flex column reordering

  .col-xs-first { order: -1; }
  .col-xs-last { order: 1; }

  @include media-breakpoint-up(sm) {
    .col-sm-first { order: -1; }
    .col-sm-last { order: 1; }
  }
  @include media-breakpoint-up(md) {
    .col-md-first { order: -1; }
    .col-md-last { order: 1; }
  }
  @include media-breakpoint-up(lg) {
    .col-lg-first { order: -1; }
    .col-lg-last { order: 1; }
  }
  @include media-breakpoint-up(xl) {
    .col-xl-first { order: -1; }
    .col-xl-last { order: 1; }
  }

  // Alignment for every column in row

  .row-xs-top    { align-items: flex-start; }
  .row-xs-center { align-items: center; }
  .row-xs-bottom { align-items: flex-end; }

  @include media-breakpoint-up(sm) {
    .row-sm-top    { align-items: flex-start; }
    .row-sm-center { align-items: center; }
    .row-sm-bottom { align-items: flex-end; }
  }
  @include media-breakpoint-up(md) {
    .row-md-top    { align-items: flex-start; }
    .row-md-center { align-items: center; }
    .row-md-bottom { align-items: flex-end; }
  }
  @include media-breakpoint-up(lg) {
    .row-lg-top    { align-items: flex-start; }
    .row-lg-center { align-items: center; }
    .row-lg-bottom { align-items: flex-end; }
  }
  @include media-breakpoint-up(xl) {
    .row-xl-top    { align-items: flex-start; }
    .row-xl-center { align-items: center; }
    .row-xl-bottom { align-items: flex-end; }
  }

  // Alignment per column

  .col-xs-top    { align-self: flex-start; }
  .col-xs-center { align-self: center; }
  .col-xs-bottom { align-self: flex-end; }

  @include media-breakpoint-up(sm) {
    .col-sm-top    { align-self: flex-start; }
    .col-sm-center { align-self: center; }
    .col-sm-bottom { align-self: flex-end; }
  }
  @include media-breakpoint-up(md) {
    .col-md-top    { align-self: flex-start; }
    .col-md-center { align-self: center; }
    .col-md-bottom { align-self: flex-end; }
  }
  @include media-breakpoint-up(lg) {
    .col-lg-top    { align-self: flex-start; }
    .col-lg-center { align-self: center; }
    .col-lg-bottom { align-self: flex-end; }
  }
  @include media-breakpoint-up(xl) {
    .col-xl-top    { align-self: flex-start; }
    .col-xl-center { align-self: center; }
    .col-xl-bottom { align-self: flex-end; }
  }

}