This repository has been archived by the owner on May 29, 2019. It is now read-only.
forked from hortonworks/fluid-bootstrap-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.scss
105 lines (86 loc) · 1.56 KB
/
demo.scss
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
@import "node_modules/bootstrap/scss/functions";
@import "scss/functions";
@import "scss/variables";
.wizard {
.alert-container.bottom {
bottom: $wizard-navbar-height;
}
}
#wizardContent {
height: 50vh;
}
.step-2,
.step-3 {
display: none;
}
.alert-container {
position: fixed;
z-index: 1030;
pointer-events: none;
padding: $grid-gutter-width;
width: 35%;
* {
pointer-events: all;
}
}
.section-header {
display: flex;
justify-content: space-between;
margin-top: $grid-gutter-width;
padding-top: $grid-gutter-width;
padding-bottom: $grid-gutter-width;
}
section {
min-height: 600px;
}
.specimen {
margin-bottom: 15px;
padding: 15px;
&:last-child {
margin: 0;
}
}
.swatch {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
padding: 15px;
&:last-child {
margin: 0;
}
}
.charmap {
display: flex;
flex-wrap: wrap;
margin: $grid-gutter-width / -2;
> div {
flex-grow: 1;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
background-color: theme-color("light");
padding: $grid-gutter-width / 2;
margin: $grid-gutter-width / 2;
* {
text-align: center;
margin-bottom: $grid-gutter-width / 4;
&:first-child {
margin-top: $grid-gutter-width / 4;
}
}
}
}
#containerExample,
#containerFluidExample {
border: color("gray") 1px solid;
}
#modalFluidContainerExample {
.row [class^="col-"] {
background: theme-color("light");
padding: 1rem;
}
}
.modal-example-button {
width: 200px;
}