-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.less
More file actions
executable file
·95 lines (86 loc) · 2.04 KB
/
Copy pathmain.less
File metadata and controls
executable file
·95 lines (86 loc) · 2.04 KB
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
@import "../../less/main.less";
@import "./fonts.less";
@import "./highlight.less";
.highlight {
margin: 0px;
}
.gb-markdown {
font-size: @gb-font-size-medium;
}
.docs-footer {
margin-top: 20px;
padding: 15px 0px;
text-align: right;
border-top: 4px solid #eee;
}
.docs-example {
position: relative;
padding: 15px;
line-height: 1.4;
border: 1px solid #e5e5e5;
border-radius: .25rem .25rem 0 0;
font-size: @gb-font-size-base;
&+.highlight {
margin-top: -1px;
border: 1px solid #e5e5e5;
border-radius: 0 0 .25rem .25rem;
margin-bottom: 30px;
> pre {
margin: 0px;
}
}
}
.docs-colors {
.clearfix();
.color {
border-radius: 3px;
padding: 12px 6px;
margin: 4px 0px;
color: #fff;
text-align: center;
&.palette-black {
background: @gb-palette-black;
}
&.palette-gray-light {
background: @gb-palette-gray-light;
color: inherit;
}
&.palette-gray {
background: @gb-palette-gray;
color: inherit;
}
&.palette-gray-outline {
background: @gb-palette-gray-outline;
color: inherit;
}
&.palette-gray-dark {
background: @gb-palette-gray-dark;
color: inherit;
}
&.palette-gray-darker {
background: @gb-palette-gray-darker;
color: inherit;
}
&.palette-darkgray {
background: @gb-palette-darkgray;
}
&.palette-blue {
background: @gb-palette-blue;
}
&.palette-green {
background: @gb-palette-green;
}
&.palette-orange {
background: @gb-palette-orange;
}
&.palette-clearblue {
background: @gb-palette-clearblue;
}
&.palette-red {
background: @gb-palette-red;
}
&.palette-logo {
background: @gb-palette-logo;
}
}
}