github-docs 0.0.3 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_layouts/default.html +17 -3
- data/assets/css/cherry/_base-normalize.scss +274 -0
- data/assets/css/cherry/_buttons.scss +305 -0
- data/assets/css/cherry/_columns.scss +220 -0
- data/assets/css/cherry/_elements.scss +339 -0
- data/assets/css/cherry/_forms-vue-select.scss +250 -0
- data/assets/css/cherry/_forms.scss +567 -0
- data/assets/css/cherry/_functions.scss +201 -0
- data/assets/css/cherry/_index.scss +14 -0
- data/assets/css/cherry/_layout.scss +207 -0
- data/assets/css/cherry/_modal.scss +82 -0
- data/assets/css/cherry/_spacing.scss +56 -0
- data/assets/css/cherry/_tooltips.scss +113 -0
- data/assets/css/cherry/_typography.scss +90 -0
- data/assets/css/cherry/_utilities.scss +552 -0
- data/assets/css/cherry/_variables-computed.scss +79 -0
- data/assets/css/cherry/_variables.scss +48 -0
- data/assets/css/index.scss +9 -7
- data/{_sass/github-docs.scss → assets/css/main.scss} +41 -12
- data/assets/css/primer-markdown/blob-csv.scss +25 -0
- data/assets/css/primer-markdown/code.scss +49 -0
- data/{_sass → assets/css}/primer-markdown/headings.scss +5 -19
- data/{_sass → assets/css}/primer-markdown/images.scss +1 -19
- data/{_sass/primer-markdown/markdown-body.scss → assets/css/primer-markdown/index.scss} +66 -55
- data/assets/css/primer-markdown/lists.scss +42 -0
- data/{_sass → assets/css}/primer-markdown/tables.scss +4 -9
- data/{_sass → assets/css}/rouge.scss +16 -8
- data/readme.md +24 -25
- metadata +43 -65
- data/_sass/primer-base/base.scss +0 -84
- data/_sass/primer-base/index.scss +0 -3
- data/_sass/primer-base/normalize.scss +0 -421
- data/_sass/primer-base/typography-base.scss +0 -86
- data/_sass/primer-layout/columns.scss +0 -54
- data/_sass/primer-layout/container.scss +0 -30
- data/_sass/primer-layout/grid-offset.scss +0 -19
- data/_sass/primer-layout/grid.scss +0 -64
- data/_sass/primer-layout/index.scss +0 -4
- data/_sass/primer-markdown/blob-csv.scss +0 -27
- data/_sass/primer-markdown/code.scss +0 -63
- data/_sass/primer-markdown/index.scss +0 -7
- data/_sass/primer-markdown/lists.scss +0 -76
- data/_sass/primer-support/index.scss +0 -11
- data/_sass/primer-support/mixins/buttons.scss +0 -160
- data/_sass/primer-support/mixins/layout.scss +0 -58
- data/_sass/primer-support/mixins/misc.scss +0 -29
- data/_sass/primer-support/mixins/typography.scss +0 -84
- data/_sass/primer-support/variables/color-system.scss +0 -114
- data/_sass/primer-support/variables/colors.scss +0 -67
- data/_sass/primer-support/variables/layout.scss +0 -78
- data/_sass/primer-support/variables/misc.scss +0 -40
- data/_sass/primer-support/variables/typography.scss +0 -43
- data/_sass/primer-utilities/animations.scss +0 -184
- data/_sass/primer-utilities/borders.scss +0 -100
- data/_sass/primer-utilities/box-shadow.scss +0 -26
- data/_sass/primer-utilities/colors.scss +0 -106
- data/_sass/primer-utilities/details.scss +0 -18
- data/_sass/primer-utilities/flexbox.scss +0 -52
- data/_sass/primer-utilities/index.scss +0 -13
- data/_sass/primer-utilities/layout.scss +0 -85
- data/_sass/primer-utilities/margin.scss +0 -53
- data/_sass/primer-utilities/padding.scss +0 -54
- data/_sass/primer-utilities/typography.scss +0 -215
- data/_sass/primer-utilities/visibility-display.scss +0 -87
@@ -0,0 +1,79 @@
|
|
1
|
+
// Base color variations
|
2
|
+
$orange-invert: findColorInvert($orange) !default;
|
3
|
+
$yellow-invert: findColorInvert($yellow) !default;
|
4
|
+
$green-invert: findColorInvert($green) !default;
|
5
|
+
$turquoise-invert: findColorInvert($turquoise) !default;
|
6
|
+
$cyan-invert: findColorInvert($cyan) !default;
|
7
|
+
$blue-invert: findColorInvert($blue) !default;
|
8
|
+
$purple-invert: findColorInvert($purple) !default;
|
9
|
+
$red-invert: findColorInvert($red) !default;
|
10
|
+
|
11
|
+
// App color variations
|
12
|
+
$primary-invert: findColorInvert($primary) !default;
|
13
|
+
$primary-light: findLightColor($primary) !default;
|
14
|
+
$primary-dark: findDarkColor($primary) !default;
|
15
|
+
$secondary-invert: findColorInvert($secondary) !default;
|
16
|
+
$secondary-light: findLightColor($secondary) !default;
|
17
|
+
$secondary-dark: findDarkColor($secondary) !default;
|
18
|
+
$success-invert: findColorInvert($success) !default;
|
19
|
+
$success-light: findLightColor($success) !default;
|
20
|
+
$success-dark: findDarkColor($success) !default;
|
21
|
+
$info-invert: findColorInvert($info) !default;
|
22
|
+
$info-light: findLightColor($info) !default;
|
23
|
+
$info-dark: findDarkColor($info) !default;
|
24
|
+
$warning-invert: findColorInvert($warning) !default;
|
25
|
+
$warning-light: findLightColor($warning) !default;
|
26
|
+
$warning-dark: findDarkColor($warning) !default;
|
27
|
+
$danger-invert: findColorInvert($danger) !default;
|
28
|
+
$danger-light: findLightColor($danger) !default;
|
29
|
+
$danger-dark: findDarkColor($danger) !default;
|
30
|
+
$text-invert: findColorInvert($text) !default;
|
31
|
+
$text-light-invert: findColorInvert($text-light) !default;
|
32
|
+
$text-lighter-invert: findColorInvert($text-lighter) !default;
|
33
|
+
$text-strong-invert: findColorInvert($text-strong) !default;
|
34
|
+
$link-invert: findColorInvert($link) !default;
|
35
|
+
$link--hover-invert: findColorInvert($link--hover) !default;
|
36
|
+
$link--focus-invert: findColorInvert($link--focus) !default;
|
37
|
+
|
38
|
+
// Lists and maps
|
39
|
+
$custom-gradients: ("grad1": (160deg, $primary, darken($primary, 10%), darken($primary, 15%))) !default;
|
40
|
+
$custom-colors: (/* E.g. "COLOR_NAME": (#000, #fff), ... */) !default;
|
41
|
+
$forms: (/* E.g. ("input-background": #000), ... */) !default;
|
42
|
+
|
43
|
+
// Convert gradients into colors.
|
44
|
+
@each $name, $gradient in $custom-gradients {
|
45
|
+
// $gradient is a non-bracketed list which is confusing when debugging
|
46
|
+
$value: getColorVariations([getFirstColor($gradient), $gradient]);
|
47
|
+
$custom-colors: map-merge($custom-colors, ($name: $value));
|
48
|
+
}
|
49
|
+
|
50
|
+
$app-colors: mergeColorMaps((
|
51
|
+
"white": ($white, $black, null, null, null),
|
52
|
+
"black": ($black, $white, null, null, null),
|
53
|
+
"primary": ($primary, $primary-invert, $primary-light, $primary-dark, null),
|
54
|
+
"secondary": ($secondary, $secondary-invert, $secondary-light, $secondary-dark, null),
|
55
|
+
"info": ($info, $info-invert, $info-light, $info-dark, null),
|
56
|
+
"success": ($success, $success-invert, $success-light, $success-dark, null),
|
57
|
+
"warning": ($warning, $warning-invert, $warning-light, $warning-dark, null),
|
58
|
+
"danger": ($danger, $danger-invert, $danger-light, $danger-dark, null),
|
59
|
+
"text": ($text, $text-invert, null, null, null),
|
60
|
+
"light": ($text-light, $text-light-invert, null, null, null),
|
61
|
+
"lighter": ($text-lighter, $text-lighter-invert, null, null, null),
|
62
|
+
"strong": ($text-strong, $text-strong-invert, null, null, null),
|
63
|
+
"link": ($link, $link-invert, null, null, null),
|
64
|
+
"link--hover": ($link--hover, $link--hover-invert, null, null, null),
|
65
|
+
"link--focus": ($link--focus, $link--focus-invert, null, null, null),
|
66
|
+
), $custom-colors) !default;
|
67
|
+
|
68
|
+
$shades: (
|
69
|
+
"black-light": $black-light,
|
70
|
+
"black-lighter": $black-lighter,
|
71
|
+
"black-lightest": $black-lightest,
|
72
|
+
"grey": $grey,
|
73
|
+
"grey-light": $grey-light,
|
74
|
+
"grey-lighter": $grey-lighter,
|
75
|
+
"grey-lightest": $grey-lightest,
|
76
|
+
"white-dark": $white-dark,
|
77
|
+
"white-darker": $white-darker,
|
78
|
+
"white-darkest": $white-darkest
|
79
|
+
) !default;
|
@@ -0,0 +1,48 @@
|
|
1
|
+
@import "functions.scss";
|
2
|
+
|
3
|
+
// Base colors
|
4
|
+
$black: hsl(0, 0%, 0%) !default;
|
5
|
+
$black-light: hsl(0, 0%, 7%) !default;
|
6
|
+
$black-lighter: hsl(0, 0%, 13%) !default;
|
7
|
+
$black-lightest: hsl(0, 0%, 17%) !default;
|
8
|
+
|
9
|
+
$grey: hsl(0, 0%, 27%) !default;
|
10
|
+
$grey-light: hsl(0, 0%, 47%) !default;
|
11
|
+
$grey-lighter: hsl(0, 0%, 73%) !default;
|
12
|
+
$grey-lightest: hsl(0, 0%, 91%) !default;
|
13
|
+
|
14
|
+
$white-darkest: hsl(0, 0%, 94%) !default;
|
15
|
+
$white-darker: hsl(0, 0%, 96%) !default;
|
16
|
+
$white-dark: hsl(0, 0%, 98%) !default;
|
17
|
+
$white: hsl(0, 0%, 100%) !default;
|
18
|
+
|
19
|
+
$orange: hsl(14, 100%, 53%) !default;
|
20
|
+
$yellow: hsl(48, 100%, 67%) !default;
|
21
|
+
$green: hsl(141, 53%, 53%) !default;
|
22
|
+
$turquoise: hsl(171, 100%, 41%) !default;
|
23
|
+
$cyan: hsl(204, 71%, 53%) !default;
|
24
|
+
$blue: hsl(217, 71%, 53%) !default;
|
25
|
+
$violet: hsl(259, 100%, 67%) !default;
|
26
|
+
$purple: hsl(271, 100%, 71%) !default;
|
27
|
+
$red: hsl(348, 86%, 61%) !default;
|
28
|
+
|
29
|
+
// App colors
|
30
|
+
$primary: $violet !default;
|
31
|
+
$secondary: $blue !default;
|
32
|
+
$success: $green !default;
|
33
|
+
$info: $blue !default;
|
34
|
+
$warning: $yellow !default;
|
35
|
+
$danger: $red !default;
|
36
|
+
$text: $black-light !default;
|
37
|
+
$text-light: $grey !default;
|
38
|
+
$text-lighter: $grey-light !default;
|
39
|
+
$text-strong: $black !default;
|
40
|
+
$link: $black-light !default;
|
41
|
+
$link--hover: $blue !default;
|
42
|
+
$link--focus: $blue !default;
|
43
|
+
|
44
|
+
// Breakpoints
|
45
|
+
$breakpoint-lg: 1023px !default; /*desktop*/
|
46
|
+
$breakpoint-md: 768px !default; /*tablet*/
|
47
|
+
$breakpoint-sm: 590px !default; /*mobile*/
|
48
|
+
$breakpoint-xs: 589px !default; /*mobile*/
|
data/assets/css/index.scss
CHANGED
@@ -2,15 +2,17 @@
|
|
2
2
|
# this ensures Jekyll reads the file to be transformed into CSS later
|
3
3
|
# only Main files contain this front matter, not partials.
|
4
4
|
---
|
5
|
+
@charset "utf-8";
|
5
6
|
|
6
7
|
{% if site.logo %}
|
7
8
|
$logo: "{{ site.logo | absolute_url }}";
|
8
9
|
{% endif %}
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
// Cherry variables
|
12
|
+
$body-font-size: 14px;
|
13
|
+
$body-line-height: 1.65em;
|
14
|
+
$family-primary: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,
|
15
|
+
"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
|
16
|
+
|
17
|
+
// Load modules
|
18
|
+
@import "primer-markdown", "cherry", "main", "rouge";
|
@@ -9,21 +9,50 @@ $menu-color: #483973;
|
|
9
9
|
max-width: 1400px;
|
10
10
|
margin: 0 auto;
|
11
11
|
}
|
12
|
-
.
|
12
|
+
.main {
|
13
13
|
display: block;
|
14
14
|
margin-left: $sidebar-width;
|
15
15
|
}
|
16
|
-
.
|
16
|
+
.main-body {
|
17
17
|
display: block;
|
18
|
+
max-width: 910px;
|
19
|
+
margin: 0 auto;
|
20
|
+
padding: 40px;
|
21
|
+
padding-top: 50px;
|
22
|
+
padding-bottom: 60px;
|
18
23
|
}
|
19
|
-
.
|
24
|
+
.main-edit-pencil {
|
25
|
+
float: right;
|
26
|
+
display: block;
|
27
|
+
margin-top: 24px !important;
|
28
|
+
padding: 10px;
|
29
|
+
line-height: 0em;
|
30
|
+
border-radius: 6px;
|
31
|
+
color: #6a737d;
|
32
|
+
background: transparent;
|
33
|
+
transition: .2s cubic-bezier(.3,0,.5,1);
|
34
|
+
transition-property: color,background-color,border-color;
|
35
|
+
svg {
|
36
|
+
fill: #6a737d;
|
37
|
+
}
|
38
|
+
&:hover,
|
39
|
+
&:focus,
|
40
|
+
&:active {
|
41
|
+
background-color: #F3F4F6;
|
42
|
+
border-color: #1b1f2326;
|
43
|
+
transition-duration: .1s;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
.markdown-body {
|
47
|
+
> .main-edit-pencil + * {
|
48
|
+
margin-top: 0 !important;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
.main-heading {
|
20
52
|
display: block;
|
21
|
-
max-width: 890px;
|
22
|
-
margin: 0 auto;
|
23
|
-
padding-top: 3em !important;
|
24
53
|
}
|
25
54
|
@media (max-width: 800px) {
|
26
|
-
.
|
55
|
+
.main {
|
27
56
|
margin-left: 0;
|
28
57
|
}
|
29
58
|
}
|
@@ -68,12 +97,14 @@ $menu-color: #483973;
|
|
68
97
|
padding: 9px 25px;
|
69
98
|
font-size: 14px;
|
70
99
|
font-weight: 600;
|
100
|
+
line-height: 1.5em;
|
71
101
|
color: #fff;
|
72
102
|
background-color: #483973;
|
73
103
|
border-radius: 3px;
|
74
104
|
border: 0;
|
75
105
|
box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);
|
76
106
|
transition: box-shadow 0.2s ease;
|
107
|
+
cursor: pointer;
|
77
108
|
}
|
78
109
|
.sidebar-heading button:hover {
|
79
110
|
box-shadow: 0 4px 6px rgba(50,50,93,0.3), 0 1px 3px rgba(0,0,0,0.3);
|
@@ -105,9 +136,6 @@ $menu-color: #483973;
|
|
105
136
|
.sidebar-close img {
|
106
137
|
width: 22px;
|
107
138
|
margin-left: -2px;
|
108
|
-
}
|
109
|
-
.sidebar-close:hover {
|
110
|
-
|
111
139
|
}
|
112
140
|
@media (max-width: 800px) {
|
113
141
|
.sidebar {
|
@@ -140,7 +168,7 @@ $menu-color: #483973;
|
|
140
168
|
top: 0;
|
141
169
|
left: 0;
|
142
170
|
right: 100%;
|
143
|
-
bottom: 0;
|
171
|
+
bottom: 0;
|
144
172
|
z-index: 0;
|
145
173
|
opacity: 0;
|
146
174
|
background-color: rgba(24, 48, 85, 0.3);
|
@@ -178,10 +206,11 @@ $menu-color: #483973;
|
|
178
206
|
padding-bottom: 5px;
|
179
207
|
color: $menu-color;
|
180
208
|
font-size: 1.1em;
|
209
|
+
text-decoration: none !important;
|
181
210
|
}
|
182
211
|
.navigation-list-link.active,
|
183
212
|
.navigation-list-link:hover {
|
184
|
-
text-decoration: none;
|
213
|
+
text-decoration: none !important;
|
185
214
|
color: darken($menu-color, 40%);
|
186
215
|
}
|
187
216
|
.navigation-list-link:before {
|
@@ -0,0 +1,25 @@
|
|
1
|
+
.markdown-body {
|
2
|
+
.csv-data {
|
3
|
+
td,
|
4
|
+
th {
|
5
|
+
padding: 5px;
|
6
|
+
overflow: hidden;
|
7
|
+
font-size: $markdown-font-size-small;
|
8
|
+
line-height: 1em;
|
9
|
+
text-align: left;
|
10
|
+
white-space: nowrap;
|
11
|
+
}
|
12
|
+
.blob-num {
|
13
|
+
padding: 10px $markdown-spacer-2 9px;
|
14
|
+
text-align: right;
|
15
|
+
background: #fff;
|
16
|
+
border: 0;
|
17
|
+
}
|
18
|
+
tr { border-top: 0; }
|
19
|
+
th {
|
20
|
+
font-weight: $markdown-font-weight-bold;
|
21
|
+
background: $gray-100;
|
22
|
+
border-top: 0;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
.markdown-body {
|
2
|
+
// Inline code snippets
|
3
|
+
code,
|
4
|
+
tt {
|
5
|
+
font-family: "SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;
|
6
|
+
// font-size: 85%;
|
7
|
+
padding: 0.2em 0.4em;
|
8
|
+
margin: 0;
|
9
|
+
background-color: rgba(#000, 0.05);
|
10
|
+
border-radius: 4px;
|
11
|
+
br { display: none; }
|
12
|
+
}
|
13
|
+
// Code blocks
|
14
|
+
pre {
|
15
|
+
padding: $markdown-spacer-3;
|
16
|
+
overflow: auto;
|
17
|
+
font-size: 85%;
|
18
|
+
line-height: 1.4;
|
19
|
+
background-color: $gray-100;
|
20
|
+
border-radius: 6px;
|
21
|
+
word-wrap: normal;
|
22
|
+
// Code tags within code blocks
|
23
|
+
> code {
|
24
|
+
padding: 0;
|
25
|
+
margin: 0;
|
26
|
+
font-size: 100%;
|
27
|
+
word-break: normal;
|
28
|
+
white-space: pre;
|
29
|
+
background: transparent;
|
30
|
+
border: 0;
|
31
|
+
}
|
32
|
+
code,
|
33
|
+
tt {
|
34
|
+
display: inline;
|
35
|
+
max-width: auto;
|
36
|
+
padding: 0;
|
37
|
+
margin: 0;
|
38
|
+
overflow: visible;
|
39
|
+
line-height: inherit;
|
40
|
+
word-wrap: normal;
|
41
|
+
background-color: transparent;
|
42
|
+
border: 0;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
.highlight pre {
|
46
|
+
margin-bottom: 0;
|
47
|
+
word-break: normal;
|
48
|
+
}
|
49
|
+
}
|
@@ -1,63 +1,49 @@
|
|
1
|
-
// Needs refactoring
|
2
|
-
// stylelint-disable selector-max-compound-selectors, selector-max-specificity
|
3
|
-
// stylelint-disable selector-max-type
|
4
1
|
.markdown-body {
|
5
|
-
// Headings
|
6
2
|
h1,
|
7
3
|
h2,
|
8
4
|
h3,
|
9
5
|
h4,
|
10
6
|
h5,
|
11
7
|
h6 {
|
12
|
-
margin-top: $spacer-4;
|
13
|
-
margin-bottom: $spacer-3;
|
14
|
-
font-weight: $font-weight-bold;
|
15
|
-
line-height:
|
16
|
-
|
8
|
+
margin-top: $markdown-spacer-4;
|
9
|
+
margin-bottom: $markdown-spacer-3;
|
10
|
+
font-weight: $markdown-font-weight-bold;
|
11
|
+
line-height: 1.25em;
|
17
12
|
.octicon-link {
|
18
|
-
color:
|
13
|
+
color: #000;
|
19
14
|
vertical-align: middle;
|
20
15
|
visibility: hidden;
|
21
16
|
}
|
22
|
-
|
23
17
|
&:hover .anchor {
|
24
18
|
text-decoration: none;
|
25
|
-
|
26
19
|
.octicon-link {
|
27
20
|
visibility: visible;
|
28
21
|
}
|
29
22
|
}
|
30
|
-
|
31
23
|
tt,
|
32
24
|
code {
|
33
25
|
font-size: inherit;
|
34
26
|
}
|
35
27
|
}
|
36
|
-
|
37
28
|
h1 {
|
38
29
|
padding-bottom: 0.3em;
|
39
30
|
font-size: 2em;
|
40
31
|
border-bottom: 1px solid lighten($gray-200, 3%);
|
41
32
|
}
|
42
|
-
|
43
33
|
h2 {
|
44
34
|
padding-bottom: 0.3em;
|
45
35
|
font-size: 1.5em;
|
46
36
|
border-bottom: 1px solid lighten($gray-200, 3%);
|
47
37
|
}
|
48
|
-
|
49
38
|
h3 {
|
50
39
|
font-size: 1.25em;
|
51
40
|
}
|
52
|
-
|
53
41
|
h4 {
|
54
42
|
font-size: 1em;
|
55
43
|
}
|
56
|
-
|
57
44
|
h5 {
|
58
45
|
font-size: 0.875em;
|
59
46
|
}
|
60
|
-
|
61
47
|
h6 {
|
62
48
|
font-size: 0.85em;
|
63
49
|
color: $gray-500;
|
@@ -1,6 +1,3 @@
|
|
1
|
-
// Need to target base styles
|
2
|
-
// stylelint-disable selector-max-compound-selectors, selector-no-qualifying-type, primer/selector-no-utility
|
3
|
-
// stylelint-disable selector-max-type
|
4
1
|
.markdown-body {
|
5
2
|
// Images & Stuff
|
6
3
|
img {
|
@@ -8,7 +5,7 @@
|
|
8
5
|
// because we put padding on the images to hide header lines, and some people
|
9
6
|
// specify the width of their images in their markdown.
|
10
7
|
box-sizing: content-box;
|
11
|
-
background-color:
|
8
|
+
background-color: #fff;
|
12
9
|
|
13
10
|
&[align=right] {
|
14
11
|
padding-left: 20px;
|
@@ -18,7 +15,6 @@
|
|
18
15
|
padding-right: 20px;
|
19
16
|
}
|
20
17
|
}
|
21
|
-
|
22
18
|
.emoji {
|
23
19
|
max-width: none;
|
24
20
|
vertical-align: text-top;
|
@@ -32,7 +28,6 @@
|
|
32
28
|
span.frame {
|
33
29
|
display: block;
|
34
30
|
overflow: hidden;
|
35
|
-
|
36
31
|
> span {
|
37
32
|
display: block;
|
38
33
|
float: left;
|
@@ -42,73 +37,60 @@
|
|
42
37
|
overflow: hidden;
|
43
38
|
border: 1px solid lighten($gray-300, 5%);
|
44
39
|
}
|
45
|
-
|
46
40
|
span img {
|
47
41
|
display: block;
|
48
42
|
float: left;
|
49
43
|
}
|
50
|
-
|
51
44
|
span span {
|
52
45
|
display: block;
|
53
46
|
padding: 5px 0 0;
|
54
47
|
clear: both;
|
55
|
-
color: $text-gray-dark;
|
56
48
|
}
|
57
49
|
}
|
58
|
-
|
59
50
|
span.align-center {
|
60
51
|
display: block;
|
61
52
|
overflow: hidden;
|
62
53
|
clear: both;
|
63
|
-
|
64
54
|
> span {
|
65
55
|
display: block;
|
66
56
|
margin: 13px auto 0;
|
67
57
|
overflow: hidden;
|
68
58
|
text-align: center;
|
69
59
|
}
|
70
|
-
|
71
60
|
span img {
|
72
61
|
margin: 0 auto;
|
73
62
|
text-align: center;
|
74
63
|
}
|
75
64
|
}
|
76
|
-
|
77
65
|
span.align-right {
|
78
66
|
display: block;
|
79
67
|
overflow: hidden;
|
80
68
|
clear: both;
|
81
|
-
|
82
69
|
> span {
|
83
70
|
display: block;
|
84
71
|
margin: 13px 0 0;
|
85
72
|
overflow: hidden;
|
86
73
|
text-align: right;
|
87
74
|
}
|
88
|
-
|
89
75
|
span img {
|
90
76
|
margin: 0;
|
91
77
|
text-align: right;
|
92
78
|
}
|
93
79
|
}
|
94
|
-
|
95
80
|
span.float-left {
|
96
81
|
display: block;
|
97
82
|
float: left;
|
98
83
|
margin-right: 13px;
|
99
84
|
overflow: hidden;
|
100
|
-
|
101
85
|
span {
|
102
86
|
margin: 13px 0 0;
|
103
87
|
}
|
104
88
|
}
|
105
|
-
|
106
89
|
span.float-right {
|
107
90
|
display: block;
|
108
91
|
float: right;
|
109
92
|
margin-left: 13px;
|
110
93
|
overflow: hidden;
|
111
|
-
|
112
94
|
> span {
|
113
95
|
display: block;
|
114
96
|
margin: 13px auto 0;
|