forked from eSlivinski/vetro-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.css
80 lines (71 loc) · 1.47 KB
/
styleguide.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
73
74
75
76
77
78
79
80
/* HEADER */
#styleguide-header {
height: 60px;
box-shadow: 0 0 5px #00000061;
border-radius: 0px;
margin-bottom: 0px;
border-bottom: 1px solid #b0bac7;
}
#styleguide-header .navbar-brand {
padding: 10px;
}
#styleguide-header .navbar-brand > img {
height: 40px;
margin-right: 10px;
background-color: #f7f8fa;
}
/* GUIDE SIDEBAR */
#guide-sidebar {
height: calc(100vh - 60px);
max-height: calc(100vh - 60px);
overflow-y: auto;
padding-top: 20px;
border-right: 1px solid #b0bac7;
}
#guide-sidebar .list-group>.list-group-item {
border-right: none;
border-left: none;
border-radius: 0px;
}
/* GUIDE CONTENT */
#guide-content {
max-height: calc(100vh - 60px);
overflow-y: auto;
padding-top: 20px;
}
#guide-content .block-title {
margin-top: 40px;
margin-bottom: 20px;
}
/* EXAMPLES */
.ex-block > .output-block {
margin-top: 10px;
border: 1px solid #ddd;
padding: 10px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom: none;
}
.ex-block > .output-block::before {
content: 'Example :';
display: block;
position: relative;
text-transform: uppercase;
letter-spacing: 2px;
color: #555;
margin-left: -5px;
margin-top: -5px;
margin-bottom: 10px;
}
.ex-block > .input-block {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
#icons table td {
vertical-align: middle;
}
#icons table td .vetro-icon{
font-size: 3em;
}