-
Notifications
You must be signed in to change notification settings - Fork 39
/
styles.css
72 lines (58 loc) · 1018 Bytes
/
styles.css
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
body {
padding-top: 80px;
}
.container {
display: flex;
}
.navigation-menu {
width: 120px;
position: fixed;
}
.components-container {
padding-left: 150px;
padding-bottom: 40px;
flex-grow: 1;
}
.component-header {
display: block;
}
.component-header {
margin-bottom: 24px;
}
.component-header:not(:first-child) {
margin-top: 48px;
}
.component-example + .component-example {
margin-top: 20px;
}
.component-example .card {
margin-bottom: 20px;
}
.component-example .modal {
display: block;
position: relative;
top: auto;
right: auto;
left: auto;
bottom: auto;
z-index: 1;
overflow: visible;
}
.component-example .modal-dialog {
width: 90%;
margin: 5px;
}
.component-example .popover {
position: relative;
display: inline-block;
width: 220px;
margin: 20px
}
@media (max-width: 991px) {
.navigation-menu {
display: none;
}
.components-container {
padding-left: 0;
}
}