Subversion Repositories oidplus

Rev

Rev 637 | Rev 846 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 637 Rev 679
Line 1... Line 1...
1
/*!
1
/*!
2
 * Bootstrap Grid v5.1.1 (https://getbootstrap.com/)
2
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
3
 * Copyright 2011-2021 The Bootstrap Authors
3
 * Copyright 2011-2021 The Bootstrap Authors
4
 * Copyright 2011-2021 Twitter, Inc.
4
 * Copyright 2011-2021 Twitter, Inc.
5
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6
 */
6
 */
7
:root {
7
:root {
Line 100... Line 100...
100
.row {
100
.row {
101
  --bs-gutter-x: 1.5rem;
101
  --bs-gutter-x: 1.5rem;
102
  --bs-gutter-y: 0;
102
  --bs-gutter-y: 0;
103
  display: flex;
103
  display: flex;
104
  flex-wrap: wrap;
104
  flex-wrap: wrap;
105
  margin-top: calc(var(--bs-gutter-y) * -1);
105
  margin-top: calc(-1 * var(--bs-gutter-y));
106
  margin-left: calc(var(--bs-gutter-x) * -.5);
106
  margin-left: calc(-0.5 * var(--bs-gutter-x));
107
  margin-right: calc(var(--bs-gutter-x) * -.5);
107
  margin-right: calc(-0.5 * var(--bs-gutter-x));
108
}
108
}
109
.row > * {
109
.row > * {
110
  box-sizing: border-box;
110
  box-sizing: border-box;
111
  flex-shrink: 0;
111
  flex-shrink: 0;
112
  width: 100%;
112
  width: 100%;
113
  max-width: 100%;
113
  max-width: 100%;
114
  padding-left: calc(var(--bs-gutter-x) * .5);
114
  padding-left: calc(var(--bs-gutter-x) * 0.5);
115
  padding-right: calc(var(--bs-gutter-x) * .5);
115
  padding-right: calc(var(--bs-gutter-x) * 0.5);
116
  margin-top: var(--bs-gutter-y);
116
  margin-top: var(--bs-gutter-y);
117
}
117
}
118
 
118
 
119
.col {
119
.col {
120
  flex: 1 0 0%;
120
  flex: 1 0 0%;