limp-dark 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +45 -0
- data/README.md~ +45 -0
- data/_config.yml +73 -0
- data/_config.yml~ +51 -0
- data/_data/social.yml +6 -0
- data/_includes/extensions/comments/disqus.html +17 -0
- data/_includes/extensions/comments/gitment.html +16 -0
- data/_includes/extensions/google-analytics.html +19 -0
- data/_includes/extensions/google-tag.html +9 -0
- data/_includes/functions.html +26 -0
- data/_includes/functions/get_categories.html +12 -0
- data/_includes/functions/get_datetimes.html +18 -0
- data/_includes/functions/get_reading_time.html +41 -0
- data/_includes/functions/get_tags.html +12 -0
- data/_includes/functions/get_value.html +19 -0
- data/_includes/functions/log.html +17 -0
- data/_includes/head.html +18 -0
- data/_includes/views/footer.html +71 -0
- data/_includes/views/header.html +44 -0
- data/_includes/views/main.html +21 -0
- data/_includes/views/pagination.html +47 -0
- data/_includes/views/paginator.html +25 -0
- data/_includes/views/post-header.html +26 -0
- data/_includes/views/post-item.html +13 -0
- data/_includes/views/segments.html +21 -0
- data/_includes/views/share-buttons.html +43 -0
- data/_includes/views/sidebar.html +0 -0
- data/_layouts/404.html +31 -0
- data/_layouts/archives.html +17 -0
- data/_layouts/categories.html +15 -0
- data/_layouts/default.html +15 -0
- data/_layouts/page.html +7 -0
- data/_layouts/post.html +83 -0
- data/_layouts/tags.html +26 -0
- data/_sass/_extends.sass +0 -0
- data/_sass/_mixins.sass +6 -0
- data/_sass/_veriables.sass +19 -0
- data/_sass/base/_base-dir.sass +1 -0
- data/_sass/base/_base.sass +220 -0
- data/_sass/layouts/_footer.sass +80 -0
- data/_sass/layouts/_header.sass +0 -0
- data/_sass/layouts/_layouts-dir.sass +3 -0
- data/_sass/layouts/_main.sass +30 -0
- data/_sass/modules/_container.sass +28 -0
- data/_sass/modules/_modules-dir.sass +6 -0
- data/_sass/modules/_nav.sass +108 -0
- data/_sass/modules/_post-footer.sass +52 -0
- data/_sass/modules/_post-header.sass +27 -0
- data/_sass/modules/_post_list.sass +38 -0
- data/_sass/modules/_segments.sass +39 -0
- data/_sass/states/_states-dir.sass +1 -0
- data/_sass/states/_states.sass +0 -0
- data/_sass/style.sass +10 -0
- data/_sass/themes/_dark.sass +0 -0
- data/_sass/themes/_themes-dir.sass +1 -0
- data/assets/css/gitment.css +1145 -0
- data/assets/css/gitment.dark.css +79 -0
- data/assets/css/main.sass +5 -0
- data/assets/images/limp.png +0 -0
- data/assets/js/gitment.browser.js +3751 -0
- metadata +188 -0
File without changes
|
@@ -0,0 +1,30 @@
|
|
1
|
+
main
|
2
|
+
display: flex
|
3
|
+
justify-content: space-between
|
4
|
+
width: 100%
|
5
|
+
|
6
|
+
& > .main
|
7
|
+
padding-right: 1.5rem
|
8
|
+
width: 60%
|
9
|
+
|
10
|
+
& > .sidebar
|
11
|
+
width: 30%
|
12
|
+
|
13
|
+
@include media-query(1150px)
|
14
|
+
main
|
15
|
+
& > .main
|
16
|
+
width: 70%
|
17
|
+
|
18
|
+
@include media-query($on-laptop)
|
19
|
+
main
|
20
|
+
& > .main
|
21
|
+
padding: 0
|
22
|
+
width: 80%
|
23
|
+
& > .sidebar
|
24
|
+
width: 0px
|
25
|
+
display: none
|
26
|
+
|
27
|
+
@include media-query($on-palm)
|
28
|
+
main
|
29
|
+
& > .main
|
30
|
+
width: 100%
|
@@ -0,0 +1,28 @@
|
|
1
|
+
.container
|
2
|
+
padding: 0 1.5rem 0 1.5rem
|
3
|
+
width: 100%
|
4
|
+
box-sizing: border-box
|
5
|
+
|
6
|
+
.post-container
|
7
|
+
width: 0%
|
8
|
+
box-sizing: border-box
|
9
|
+
|
10
|
+
@include media-query(1150px)
|
11
|
+
.post-container
|
12
|
+
width: 0%
|
13
|
+
|
14
|
+
@include media-query($on-laptop)
|
15
|
+
.container
|
16
|
+
padding: 0 1rem 0 1rem
|
17
|
+
.post-container
|
18
|
+
width: 0%
|
19
|
+
|
20
|
+
@include media-query($on-palm)
|
21
|
+
.container
|
22
|
+
padding: 0 .7rem 0 .7rem
|
23
|
+
.post-container
|
24
|
+
display: none
|
25
|
+
|
26
|
+
// @include media-query($on-phone)
|
27
|
+
// .container
|
28
|
+
// padding: 0 .4rem 0 .4rem
|
@@ -0,0 +1,108 @@
|
|
1
|
+
.navbar
|
2
|
+
z-index: 10
|
3
|
+
display: flex
|
4
|
+
align-items: center
|
5
|
+
justify-content: space-between
|
6
|
+
min-height: 13vh
|
7
|
+
position: fixed
|
8
|
+
width: 100%
|
9
|
+
background: $brand_sec
|
10
|
+
box-shadow: 0 2px 3px -2px rgba($brand_main, 0.5)
|
11
|
+
top: 0
|
12
|
+
transition: 0.3s ease all
|
13
|
+
|
14
|
+
.logo
|
15
|
+
font-family: 'Nerko One', Arial, Helvetica, sans-serif
|
16
|
+
font-size: 2.4rem
|
17
|
+
text-transform: uppercase
|
18
|
+
letter-spacing: 2px
|
19
|
+
color: $brand_main
|
20
|
+
margin: 0
|
21
|
+
transition: 0.3s ease all
|
22
|
+
&:hover
|
23
|
+
color: $brand_light
|
24
|
+
animation: .3s ease all
|
25
|
+
|
26
|
+
.nav-links
|
27
|
+
display: flex
|
28
|
+
transition: 0.3s ease all
|
29
|
+
|
30
|
+
li
|
31
|
+
list-style-type: none
|
32
|
+
|
33
|
+
a
|
34
|
+
text-decoration: none
|
35
|
+
color: $brand_main
|
36
|
+
font-size: 1.3rem
|
37
|
+
margin-left: 1.5rem
|
38
|
+
position: relative
|
39
|
+
|
40
|
+
a::after
|
41
|
+
position: absolute
|
42
|
+
content: ""
|
43
|
+
bottom: -4px
|
44
|
+
left: 0
|
45
|
+
height: 2px
|
46
|
+
width: 0%
|
47
|
+
background-color: $brand_light
|
48
|
+
display: block
|
49
|
+
|
50
|
+
a:hover
|
51
|
+
color: $brand_light
|
52
|
+
transition: 0.3s ease all
|
53
|
+
|
54
|
+
a:hover::after
|
55
|
+
width: 100%
|
56
|
+
transition: 0.3s ease all
|
57
|
+
|
58
|
+
.nav-links.nav-active
|
59
|
+
transform: translateX(0%) !important
|
60
|
+
|
61
|
+
.hamburger-menu
|
62
|
+
cursor: pointer
|
63
|
+
display: none
|
64
|
+
transition: 0.3s ease all
|
65
|
+
|
66
|
+
div
|
67
|
+
width: 30px
|
68
|
+
height: 4px
|
69
|
+
background-color: $brand_main
|
70
|
+
margin: 6px
|
71
|
+
border-radius: 10px
|
72
|
+
transition: 0.3s ease all
|
73
|
+
|
74
|
+
.navbar.sticky
|
75
|
+
background: $brand_sec
|
76
|
+
transition: 0.3s ease all
|
77
|
+
min-height: 10vh
|
78
|
+
|
79
|
+
@media (max-width: 725px)
|
80
|
+
.navbar
|
81
|
+
.nav-links
|
82
|
+
box-shadow: 2px 0px 3px -2px rgba($brand_main, 0.5)
|
83
|
+
position: absolute
|
84
|
+
top: 0
|
85
|
+
left: 0
|
86
|
+
height: 100vh
|
87
|
+
width: 300px
|
88
|
+
background: $brand_sec
|
89
|
+
margin: 0
|
90
|
+
padding: 0
|
91
|
+
flex-direction: column
|
92
|
+
align-items: center
|
93
|
+
justify-content: space-evenly
|
94
|
+
transform: translateX(-100%)
|
95
|
+
z-index: 10
|
96
|
+
|
97
|
+
.hamburger-menu
|
98
|
+
display: block
|
99
|
+
z-index: 11
|
100
|
+
|
101
|
+
.bar-change .bar1
|
102
|
+
transform: rotate(-45deg) translate(-9px, 6px)
|
103
|
+
|
104
|
+
.bar-change .bar2
|
105
|
+
opacity: 0
|
106
|
+
|
107
|
+
.bar-change .bar3
|
108
|
+
transform: rotate(45deg) translate(-9px, -5px)
|
@@ -0,0 +1,52 @@
|
|
1
|
+
// /*Posts misc
|
2
|
+
.post-nav
|
3
|
+
display: flex
|
4
|
+
justify-content: space-between
|
5
|
+
padding: 31px 0 0
|
6
|
+
@include media-query($on-phone)
|
7
|
+
flex-direction: column
|
8
|
+
|
9
|
+
& a
|
10
|
+
margin-bottom: 15px
|
11
|
+
|
12
|
+
& > a.next
|
13
|
+
text-align: right
|
14
|
+
|
15
|
+
.post-nav, .post-related
|
16
|
+
a
|
17
|
+
line-height: 15px
|
18
|
+
color: #ec8322
|
19
|
+
min-width: 50%
|
20
|
+
@include relative-font-size(1.125)
|
21
|
+
|
22
|
+
&:hover
|
23
|
+
color: #f5eae1
|
24
|
+
|
25
|
+
.post-related
|
26
|
+
margin-bottom: 2rem
|
27
|
+
|
28
|
+
& > ol
|
29
|
+
padding: 1rem
|
30
|
+
|
31
|
+
&> li
|
32
|
+
margin-bottom: 7px
|
33
|
+
|
34
|
+
.previous:before
|
35
|
+
content: ' '
|
36
|
+
border: solid #ec8322
|
37
|
+
border-width: 0 2px 2px 0
|
38
|
+
display: inline-block
|
39
|
+
padding: 4px
|
40
|
+
margin-right: 8px
|
41
|
+
transform: rotate(135deg)
|
42
|
+
-webkit-transform: rotate(135deg)
|
43
|
+
|
44
|
+
.next:after
|
45
|
+
content: ' '
|
46
|
+
border: solid #ec8322
|
47
|
+
border-width: 0 2px 2px 0
|
48
|
+
display: inline-block
|
49
|
+
padding: 4px
|
50
|
+
margin-left: 8px
|
51
|
+
transform: rotate(-45deg)
|
52
|
+
-webkit-transform: rotate(-45deg)
|
@@ -0,0 +1,27 @@
|
|
1
|
+
.post-header
|
2
|
+
padding-bottom: 1.5rem
|
3
|
+
|
4
|
+
& > .post-tags
|
5
|
+
display: inline-block
|
6
|
+
|
7
|
+
& > .post-tag
|
8
|
+
color: $brand_light
|
9
|
+
text-decoration: none
|
10
|
+
border: 1px solid
|
11
|
+
padding: 2px 4px
|
12
|
+
border-radius: 3px
|
13
|
+
transition: color 0.3s
|
14
|
+
margin: 0 12px 0 0
|
15
|
+
|
16
|
+
& > .post-tag:hover
|
17
|
+
color: darken($brand_main, 10%)
|
18
|
+
transition: .3s ease all
|
19
|
+
|
20
|
+
& > .post-meta
|
21
|
+
color: darken($brand_main, 10%)
|
22
|
+
|
23
|
+
& > .post-meta svg
|
24
|
+
fill: darken($brand_main, 10%)
|
25
|
+
position: relative
|
26
|
+
top: 4px
|
27
|
+
z-index: -1
|
@@ -0,0 +1,38 @@
|
|
1
|
+
.pagination
|
2
|
+
|
3
|
+
& > .post-list
|
4
|
+
list-style: none
|
5
|
+
|
6
|
+
& > li > .post-tags
|
7
|
+
display: inline-block
|
8
|
+
|
9
|
+
& > .post-tag
|
10
|
+
color: $brand_light
|
11
|
+
text-decoration: none
|
12
|
+
border: 1px solid
|
13
|
+
padding: 2px 4px
|
14
|
+
border-radius: 3px
|
15
|
+
transition: color 0.3s
|
16
|
+
margin: 0 12px 0 0
|
17
|
+
|
18
|
+
& > .post-tag:hover
|
19
|
+
color: darken($brand_main, 10%)
|
20
|
+
transition: .3s ease all
|
21
|
+
|
22
|
+
& > li > .post-excerpt, .post-meta
|
23
|
+
color: darken($brand_main, 10%)
|
24
|
+
|
25
|
+
& > li > .post-meta svg
|
26
|
+
fill: darken($brand_main, 10%)
|
27
|
+
position: relative
|
28
|
+
top: 4px
|
29
|
+
z-index: -1
|
30
|
+
|
31
|
+
@include media-query($on-phone)
|
32
|
+
.post-list
|
33
|
+
margin: 0
|
34
|
+
padding: 0
|
35
|
+
|
36
|
+
.paginator
|
37
|
+
margin-top: 2rem
|
38
|
+
@include relative-font-size(1.2)
|
@@ -0,0 +1,39 @@
|
|
1
|
+
// archives page segments
|
2
|
+
|
3
|
+
/**
|
4
|
+
* Segments page
|
5
|
+
*/
|
6
|
+
.page-segments
|
7
|
+
|
8
|
+
&__list
|
9
|
+
list-style: none
|
10
|
+
|
11
|
+
& > li
|
12
|
+
margin-bottom: 5px
|
13
|
+
margin-left: 1rem
|
14
|
+
|
15
|
+
& > .post-meta
|
16
|
+
color: darken($brand_main, 10%)
|
17
|
+
|
18
|
+
.segment-name
|
19
|
+
margin-bottom: 16px
|
20
|
+
position: relative
|
21
|
+
@include relative-font-size(1.7)
|
22
|
+
|
23
|
+
&:not(:first-child)
|
24
|
+
margin-top: 28px
|
25
|
+
|
26
|
+
&:hover:before
|
27
|
+
content: '#'
|
28
|
+
left: -1em
|
29
|
+
position: absolute
|
30
|
+
|
31
|
+
@include media-query($on-palm)
|
32
|
+
.page-segments
|
33
|
+
&__list
|
34
|
+
margin: 0
|
35
|
+
|
36
|
+
@include media-query($on-phone)
|
37
|
+
.page-segments
|
38
|
+
&__list
|
39
|
+
padding: 0
|
@@ -0,0 +1 @@
|
|
1
|
+
@import states
|
File without changes
|
data/_sass/style.sass
ADDED
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
@import dark
|
@@ -0,0 +1,1145 @@
|
|
1
|
+
.gitment-container {
|
2
|
+
font-size: 16px;
|
3
|
+
line-height: 1.5;
|
4
|
+
color: #333;
|
5
|
+
word-wrap: break-word;
|
6
|
+
}
|
7
|
+
|
8
|
+
.gitment-container * {
|
9
|
+
box-sizing: border-box;
|
10
|
+
}
|
11
|
+
|
12
|
+
.gitment-container *:disabled {
|
13
|
+
cursor: not-allowed;
|
14
|
+
}
|
15
|
+
|
16
|
+
.gitment-container a,
|
17
|
+
.gitment-container a:visited {
|
18
|
+
cursor: pointer;
|
19
|
+
text-decoration: none;
|
20
|
+
}
|
21
|
+
|
22
|
+
.gitment-container a:hover {
|
23
|
+
text-decoration: underline;
|
24
|
+
}
|
25
|
+
|
26
|
+
.gitment-container .gitment-hidden {
|
27
|
+
display: none;
|
28
|
+
}
|
29
|
+
|
30
|
+
.gitment-container .gitment-spinner-icon {
|
31
|
+
fill: #333;
|
32
|
+
|
33
|
+
-webkit-animation: gitment-spin 1s steps(12) infinite;
|
34
|
+
animation: gitment-spin 1s steps(12) infinite;
|
35
|
+
}
|
36
|
+
|
37
|
+
@-webkit-keyframes gitment-spin {
|
38
|
+
100% {
|
39
|
+
-webkit-transform: rotate(360deg);
|
40
|
+
transform: rotate(360deg)
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
@keyframes gitment-spin {
|
45
|
+
100% {
|
46
|
+
-webkit-transform: rotate(360deg);
|
47
|
+
transform: rotate(360deg)
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.gitment-root-container {
|
52
|
+
margin: 19px 0;
|
53
|
+
}
|
54
|
+
|
55
|
+
.gitment-header-container {
|
56
|
+
margin: 19px 0;
|
57
|
+
}
|
58
|
+
|
59
|
+
.gitment-header-like-btn,
|
60
|
+
.gitment-comment-like-btn {
|
61
|
+
cursor: pointer;
|
62
|
+
}
|
63
|
+
|
64
|
+
.gitment-comment-like-btn {
|
65
|
+
float: right;
|
66
|
+
}
|
67
|
+
|
68
|
+
.gitment-comment-like-btn.liked {
|
69
|
+
color: #F44336;
|
70
|
+
}
|
71
|
+
|
72
|
+
.gitment-header-like-btn svg {
|
73
|
+
vertical-align: middle;
|
74
|
+
height: 30px;
|
75
|
+
}
|
76
|
+
|
77
|
+
.gitment-comment-like-btn svg {
|
78
|
+
vertical-align: middle;
|
79
|
+
height: 20px;
|
80
|
+
}
|
81
|
+
|
82
|
+
.gitment-header-like-btn.liked svg,
|
83
|
+
.gitment-comment-like-btn.liked svg {
|
84
|
+
fill: #F44336;
|
85
|
+
}
|
86
|
+
|
87
|
+
/* a.gitment-header-issue-link,
|
88
|
+
a.gitment-header-issue-link:visited {
|
89
|
+
float: right;
|
90
|
+
line-height: 30px;
|
91
|
+
color: #666;
|
92
|
+
}
|
93
|
+
|
94
|
+
a.gitment-header-issue-link:hover {
|
95
|
+
color: #666;
|
96
|
+
} */
|
97
|
+
|
98
|
+
.gitment-comments-loading,
|
99
|
+
.gitment-comments-error,
|
100
|
+
.gitment-comments-empty {
|
101
|
+
text-align: center;
|
102
|
+
margin: 50px 0;
|
103
|
+
}
|
104
|
+
|
105
|
+
.gitment-comments-list {
|
106
|
+
list-style: none;
|
107
|
+
padding-left: 0;
|
108
|
+
margin: 0 0 38px;
|
109
|
+
}
|
110
|
+
|
111
|
+
.gitment-comment,
|
112
|
+
.gitment-editor-container {
|
113
|
+
position: relative;
|
114
|
+
min-height: 60px;
|
115
|
+
padding-left: 60px;
|
116
|
+
margin: 19px 0;
|
117
|
+
}
|
118
|
+
|
119
|
+
.gitment-comment-avatar,
|
120
|
+
.gitment-editor-avatar {
|
121
|
+
float: left;
|
122
|
+
margin-left: -60px;
|
123
|
+
}
|
124
|
+
|
125
|
+
.gitment-comment-avatar,
|
126
|
+
.gitment-comment-avatar-img,
|
127
|
+
.gitment-comment-avatar,
|
128
|
+
.gitment-editor-avatar-img,
|
129
|
+
.gitment-editor-avatar svg {
|
130
|
+
width: 44px;
|
131
|
+
height: 44px;
|
132
|
+
border-radius: 3px;
|
133
|
+
}
|
134
|
+
|
135
|
+
.gitment-editor-avatar .gitment-github-icon {
|
136
|
+
fill: #fff;
|
137
|
+
background-color: #333;
|
138
|
+
}
|
139
|
+
|
140
|
+
.gitment-comment-main,
|
141
|
+
.gitment-editor-main {
|
142
|
+
position: relative;
|
143
|
+
border: 1px solid #CFD8DC;
|
144
|
+
border-radius: 0;
|
145
|
+
}
|
146
|
+
|
147
|
+
.gitment-editor-main::before,
|
148
|
+
.gitment-editor-main::after,
|
149
|
+
.gitment-comment-main::before,
|
150
|
+
.gitment-comment-main::after {
|
151
|
+
position: absolute;
|
152
|
+
top: 11px;
|
153
|
+
left: -16px;
|
154
|
+
display: block;
|
155
|
+
width: 0;
|
156
|
+
height: 0;
|
157
|
+
pointer-events: none;
|
158
|
+
content: "";
|
159
|
+
border-color: transparent;
|
160
|
+
border-style: solid solid outset;
|
161
|
+
}
|
162
|
+
|
163
|
+
.gitment-editor-main::before,
|
164
|
+
.gitment-comment-main::before {
|
165
|
+
border-width: 8px;
|
166
|
+
border-right-color: #CFD8DC;
|
167
|
+
}
|
168
|
+
|
169
|
+
.gitment-editor-main::after,
|
170
|
+
.gitment-comment-main::after {
|
171
|
+
margin-top: 1px;
|
172
|
+
margin-left: 2px;
|
173
|
+
border-width: 7px;
|
174
|
+
border-right-color: #fff;
|
175
|
+
}
|
176
|
+
|
177
|
+
.gitment-comment-header {
|
178
|
+
margin: 12px 15px;
|
179
|
+
color: #666;
|
180
|
+
background-color: #fff;
|
181
|
+
border-radius: 3px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.gitment-editor-header {
|
185
|
+
padding: 0;
|
186
|
+
margin: 0;
|
187
|
+
border-bottom: 1px solid #CFD8DC;
|
188
|
+
}
|
189
|
+
|
190
|
+
a.gitment-comment-name,
|
191
|
+
a.gitment-comment-name:visited {
|
192
|
+
font-weight: 600;
|
193
|
+
color: #666;
|
194
|
+
}
|
195
|
+
|
196
|
+
.gitment-editor-tabs {
|
197
|
+
margin-bottom: -1px;
|
198
|
+
margin-left: -1px;
|
199
|
+
}
|
200
|
+
|
201
|
+
.gitment-editor-tab {
|
202
|
+
display: inline-block;
|
203
|
+
padding: 11px 12px;
|
204
|
+
font-size: 14px;
|
205
|
+
line-height: 20px;
|
206
|
+
color: #666;
|
207
|
+
text-decoration: none;
|
208
|
+
background-color: transparent;
|
209
|
+
border-width: 0 1px;
|
210
|
+
border-style: solid;
|
211
|
+
border-color: transparent;
|
212
|
+
border-radius: 0;
|
213
|
+
|
214
|
+
white-space: nowrap;
|
215
|
+
cursor: pointer;
|
216
|
+
user-select: none;
|
217
|
+
|
218
|
+
outline: none;
|
219
|
+
}
|
220
|
+
|
221
|
+
.gitment-editor-tab.gitment-selected {
|
222
|
+
color: #333;
|
223
|
+
background-color: #fff;
|
224
|
+
border-color: #CFD8DC;
|
225
|
+
}
|
226
|
+
|
227
|
+
.gitment-editor-login {
|
228
|
+
float: right;
|
229
|
+
margin-top: -30px;
|
230
|
+
margin-right: 15px;
|
231
|
+
}
|
232
|
+
|
233
|
+
a.gitment-footer-project-link,
|
234
|
+
a.gitment-footer-project-link:visited,
|
235
|
+
a.gitment-editor-login-link,
|
236
|
+
a.gitment-editor-login-link:visited {
|
237
|
+
color: #ff5100;
|
238
|
+
}
|
239
|
+
|
240
|
+
a.gitment-editor-logout-link,
|
241
|
+
a.gitment-editor-logout-link:visited {
|
242
|
+
color: #666;
|
243
|
+
}
|
244
|
+
|
245
|
+
a.gitment-editor-logout-link:hover {
|
246
|
+
color: #ff5100;
|
247
|
+
text-decoration: none;
|
248
|
+
}
|
249
|
+
|
250
|
+
.gitment-comment-body {
|
251
|
+
position: relative;
|
252
|
+
margin: 12px 15px;
|
253
|
+
overflow: hidden;
|
254
|
+
border-radius: 3px;
|
255
|
+
}
|
256
|
+
|
257
|
+
.gitment-comment-body-folded {
|
258
|
+
cursor: pointer;
|
259
|
+
}
|
260
|
+
|
261
|
+
.gitment-comment-body-folded::before {
|
262
|
+
display: block !important;
|
263
|
+
content: "";
|
264
|
+
position: absolute;
|
265
|
+
width: 100%;
|
266
|
+
left: 0;
|
267
|
+
top: 0;
|
268
|
+
bottom: 50px;
|
269
|
+
pointer-events: none;
|
270
|
+
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .9));
|
271
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .9));
|
272
|
+
}
|
273
|
+
|
274
|
+
.gitment-comment-body-folded::after {
|
275
|
+
display: block !important;
|
276
|
+
content: "Click to Expand" !important;
|
277
|
+
text-align: center;
|
278
|
+
color: #666;
|
279
|
+
position: absolute;
|
280
|
+
width: 100%;
|
281
|
+
height: 50px;
|
282
|
+
line-height: 50px;
|
283
|
+
left: 0;
|
284
|
+
bottom: 0;
|
285
|
+
pointer-events: none;
|
286
|
+
background: rgba(255, 255, 255, .9);
|
287
|
+
}
|
288
|
+
|
289
|
+
.gitment-editor-body {
|
290
|
+
margin: 0;
|
291
|
+
}
|
292
|
+
|
293
|
+
.gitment-comment-body > *:first-child,
|
294
|
+
.gitment-editor-preview > *:first-child {
|
295
|
+
margin-top: 0 !important;
|
296
|
+
}
|
297
|
+
|
298
|
+
.gitment-comment-body > *:last-child,
|
299
|
+
.gitment-editor-preview > *:last-child {
|
300
|
+
margin-bottom: 0 !important;
|
301
|
+
}
|
302
|
+
|
303
|
+
.gitment-editor-body textarea {
|
304
|
+
display: block;
|
305
|
+
width: 100%;
|
306
|
+
min-height: 150px;
|
307
|
+
max-height: 500px;
|
308
|
+
padding: 16px;
|
309
|
+
resize: vertical;
|
310
|
+
|
311
|
+
max-width: 100%;
|
312
|
+
margin: 0;
|
313
|
+
font-size: 14px;
|
314
|
+
line-height: 1.6;
|
315
|
+
|
316
|
+
background-color: #fff;
|
317
|
+
|
318
|
+
color: #333;
|
319
|
+
vertical-align: middle;
|
320
|
+
border: none;
|
321
|
+
border-radius: 0;
|
322
|
+
outline: none;
|
323
|
+
box-shadow: none;
|
324
|
+
|
325
|
+
overflow: visible;
|
326
|
+
}
|
327
|
+
|
328
|
+
.gitment-editor-body textarea:focus {
|
329
|
+
background-color: #fff;
|
330
|
+
}
|
331
|
+
|
332
|
+
.gitment-editor-preview {
|
333
|
+
min-height: 150px;
|
334
|
+
|
335
|
+
padding: 16px;
|
336
|
+
background-color: transparent;
|
337
|
+
|
338
|
+
width: 100%;
|
339
|
+
font-size: 14px;
|
340
|
+
|
341
|
+
line-height: 1.5;
|
342
|
+
word-wrap: break-word;
|
343
|
+
}
|
344
|
+
|
345
|
+
.gitment-editor-footer {
|
346
|
+
padding: 0;
|
347
|
+
margin-top: 10px;
|
348
|
+
}
|
349
|
+
|
350
|
+
.gitment-editor-footer::after {
|
351
|
+
display: table;
|
352
|
+
clear: both;
|
353
|
+
content: "";
|
354
|
+
}
|
355
|
+
|
356
|
+
a.gitment-editor-footer-tip {
|
357
|
+
display: inline-block;
|
358
|
+
padding-top: 10px;
|
359
|
+
font-size: 12px;
|
360
|
+
color: #666;
|
361
|
+
}
|
362
|
+
|
363
|
+
a.gitment-editor-footer-tip:hover {
|
364
|
+
color: #ff5100;
|
365
|
+
text-decoration: none;
|
366
|
+
}
|
367
|
+
|
368
|
+
.gitment-comments-pagination {
|
369
|
+
list-style: none;
|
370
|
+
text-align: right;
|
371
|
+
border-radius: 0;
|
372
|
+
margin: -19px 0 19px 0;
|
373
|
+
}
|
374
|
+
|
375
|
+
.gitment-comments-page-item {
|
376
|
+
display: inline-block;
|
377
|
+
cursor: pointer;
|
378
|
+
border: 1px solid #CFD8DC;
|
379
|
+
margin-left: -1px;
|
380
|
+
padding: .25rem .5rem;
|
381
|
+
}
|
382
|
+
|
383
|
+
.gitment-comments-page-item:hover {
|
384
|
+
background-color: #f5f5f5;
|
385
|
+
}
|
386
|
+
|
387
|
+
.gitment-comments-page-item.gitment-selected {
|
388
|
+
background-color: #f5f5f5;
|
389
|
+
}
|
390
|
+
|
391
|
+
.gitment-editor-submit,
|
392
|
+
.gitment-comments-init-btn {
|
393
|
+
color: #fff;
|
394
|
+
background-color: #ff5100;
|
395
|
+
|
396
|
+
position: relative;
|
397
|
+
display: inline-block;
|
398
|
+
padding: 7px 13px;
|
399
|
+
font-size: 14px;
|
400
|
+
font-weight: 600;
|
401
|
+
line-height: 20px;
|
402
|
+
white-space: nowrap;
|
403
|
+
vertical-align: middle;
|
404
|
+
cursor: pointer;
|
405
|
+
-webkit-user-select: none;
|
406
|
+
-moz-user-select: none;
|
407
|
+
-ms-user-select: none;
|
408
|
+
user-select: none;
|
409
|
+
background-size: 110% 110%;
|
410
|
+
border: none;
|
411
|
+
-webkit-appearance: none;
|
412
|
+
-moz-appearance: none;
|
413
|
+
appearance: none;
|
414
|
+
}
|
415
|
+
|
416
|
+
.gitment-editor-submit:hover,
|
417
|
+
.gitment-comments-init-btn:hover {
|
418
|
+
background-color: #ff5100;
|
419
|
+
}
|
420
|
+
|
421
|
+
.gitment-comments-init-btn:disabled,
|
422
|
+
.gitment-editor-submit:disabled {
|
423
|
+
color: rgba(255,255,255,0.75);
|
424
|
+
background-color: #ff5100;
|
425
|
+
box-shadow: none;
|
426
|
+
}
|
427
|
+
|
428
|
+
.gitment-editor-submit {
|
429
|
+
float: right;
|
430
|
+
}
|
431
|
+
|
432
|
+
.gitment-footer-container {
|
433
|
+
margin-top: 30px;
|
434
|
+
margin-bottom: 20px;
|
435
|
+
text-align: right;
|
436
|
+
font-size: 12px;
|
437
|
+
}
|
438
|
+
|
439
|
+
/*
|
440
|
+
* Markdown CSS
|
441
|
+
* Copied from https://github.com/sindresorhus/github-markdown-css
|
442
|
+
*/
|
443
|
+
.gitment-markdown {
|
444
|
+
-ms-text-size-adjust: 100%;
|
445
|
+
-webkit-text-size-adjust: 100%;
|
446
|
+
line-height: 1.5;
|
447
|
+
color: #fff;
|
448
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
449
|
+
font-size: 16px;
|
450
|
+
line-height: 1.5;
|
451
|
+
word-wrap: break-word;
|
452
|
+
}
|
453
|
+
|
454
|
+
.gitment-markdown .pl-c {
|
455
|
+
color: #b9b9b9;
|
456
|
+
}
|
457
|
+
|
458
|
+
.gitment-markdown .pl-c1,
|
459
|
+
.gitment-markdown .pl-s .pl-v {
|
460
|
+
color: #0086b3;
|
461
|
+
}
|
462
|
+
|
463
|
+
.gitment-markdown .pl-e,
|
464
|
+
.gitment-markdown .pl-en {
|
465
|
+
color: #795da3;
|
466
|
+
}
|
467
|
+
|
468
|
+
.gitment-markdown .pl-smi,
|
469
|
+
.gitment-markdown .pl-s .pl-s1 {
|
470
|
+
color: #333;
|
471
|
+
}
|
472
|
+
|
473
|
+
.gitment-markdown .pl-ent {
|
474
|
+
color: #63a35c;
|
475
|
+
}
|
476
|
+
|
477
|
+
.gitment-markdown .pl-k {
|
478
|
+
color: #a71d5d;
|
479
|
+
}
|
480
|
+
|
481
|
+
.gitment-markdown .pl-s,
|
482
|
+
.gitment-markdown .pl-pds,
|
483
|
+
.gitment-markdown .pl-s .pl-pse .pl-s1,
|
484
|
+
.gitment-markdown .pl-sr,
|
485
|
+
.gitment-markdown .pl-sr .pl-cce,
|
486
|
+
.gitment-markdown .pl-sr .pl-sre,
|
487
|
+
.gitment-markdown .pl-sr .pl-sra {
|
488
|
+
color: #183691;
|
489
|
+
}
|
490
|
+
|
491
|
+
.gitment-markdown .pl-v,
|
492
|
+
.gitment-markdown .pl-smw {
|
493
|
+
color: #ed6a43;
|
494
|
+
}
|
495
|
+
|
496
|
+
.gitment-markdown .pl-bu {
|
497
|
+
color: #b52a1d;
|
498
|
+
}
|
499
|
+
|
500
|
+
.gitment-markdown .pl-ii {
|
501
|
+
color: #f8f8f8;
|
502
|
+
background-color: #b52a1d;
|
503
|
+
}
|
504
|
+
|
505
|
+
.gitment-markdown .pl-c2 {
|
506
|
+
color: #f8f8f8;
|
507
|
+
background-color: #b52a1d;
|
508
|
+
}
|
509
|
+
|
510
|
+
.gitment-markdown .pl-c2::before {
|
511
|
+
content: "^M";
|
512
|
+
}
|
513
|
+
|
514
|
+
.gitment-markdown .pl-sr .pl-cce {
|
515
|
+
font-weight: bold;
|
516
|
+
color: #63a35c;
|
517
|
+
}
|
518
|
+
|
519
|
+
.gitment-markdown .pl-ml {
|
520
|
+
color: #693a17;
|
521
|
+
}
|
522
|
+
|
523
|
+
.gitment-markdown .pl-mh,
|
524
|
+
.gitment-markdown .pl-mh .pl-en,
|
525
|
+
.gitment-markdown .pl-ms {
|
526
|
+
font-weight: bold;
|
527
|
+
color: #1d3e81;
|
528
|
+
}
|
529
|
+
|
530
|
+
.gitment-markdown .pl-mq {
|
531
|
+
color: #008080;
|
532
|
+
}
|
533
|
+
|
534
|
+
.gitment-markdown .pl-mi {
|
535
|
+
font-style: italic;
|
536
|
+
color: #333;
|
537
|
+
}
|
538
|
+
|
539
|
+
.gitment-markdown .pl-mb {
|
540
|
+
font-weight: bold;
|
541
|
+
color: #333;
|
542
|
+
}
|
543
|
+
|
544
|
+
.gitment-markdown .pl-md {
|
545
|
+
color: #bd2c00;
|
546
|
+
background-color: #ffecec;
|
547
|
+
}
|
548
|
+
|
549
|
+
.gitment-markdown .pl-mi1 {
|
550
|
+
color: #55a532;
|
551
|
+
background-color: #eaffea;
|
552
|
+
}
|
553
|
+
|
554
|
+
.gitment-markdown .pl-mc {
|
555
|
+
color: #ef9700;
|
556
|
+
background-color: #ffe3b4;
|
557
|
+
}
|
558
|
+
|
559
|
+
.gitment-markdown .pl-mi2 {
|
560
|
+
color: #d8d8d8;
|
561
|
+
background-color: #808080;
|
562
|
+
}
|
563
|
+
|
564
|
+
.gitment-markdown .pl-mdr {
|
565
|
+
font-weight: bold;
|
566
|
+
color: #795da3;
|
567
|
+
}
|
568
|
+
|
569
|
+
.gitment-markdown .pl-mo {
|
570
|
+
color: #1d3e81;
|
571
|
+
}
|
572
|
+
|
573
|
+
.gitment-markdown .pl-ba {
|
574
|
+
color: #595e62;
|
575
|
+
}
|
576
|
+
|
577
|
+
.gitment-markdown .pl-sg {
|
578
|
+
color: #c0c0c0;
|
579
|
+
}
|
580
|
+
|
581
|
+
.gitment-markdown .pl-corl {
|
582
|
+
text-decoration: underline;
|
583
|
+
color: #183691;
|
584
|
+
}
|
585
|
+
|
586
|
+
.gitment-markdown .octicon {
|
587
|
+
display: inline-block;
|
588
|
+
vertical-align: text-top;
|
589
|
+
fill: currentColor;
|
590
|
+
}
|
591
|
+
|
592
|
+
.gitment-markdown a {
|
593
|
+
background-color: transparent;
|
594
|
+
-webkit-text-decoration-skip: objects;
|
595
|
+
}
|
596
|
+
|
597
|
+
.gitment-markdown a:active,
|
598
|
+
.gitment-markdown a:hover {
|
599
|
+
outline-width: 0;
|
600
|
+
}
|
601
|
+
|
602
|
+
.gitment-markdown strong {
|
603
|
+
font-weight: inherit;
|
604
|
+
}
|
605
|
+
|
606
|
+
.gitment-markdown strong {
|
607
|
+
font-weight: bolder;
|
608
|
+
}
|
609
|
+
|
610
|
+
.gitment-markdown h1 {
|
611
|
+
font-size: 2em;
|
612
|
+
margin: 0.67em 0;
|
613
|
+
}
|
614
|
+
|
615
|
+
.gitment-markdown img {
|
616
|
+
border-style: none;
|
617
|
+
}
|
618
|
+
|
619
|
+
.gitment-markdown svg:not(:root) {
|
620
|
+
overflow: hidden;
|
621
|
+
}
|
622
|
+
|
623
|
+
.gitment-markdown code,
|
624
|
+
.gitment-markdown kbd,
|
625
|
+
.gitment-markdown pre {
|
626
|
+
font-family: monospace, monospace;
|
627
|
+
font-size: 1em;
|
628
|
+
}
|
629
|
+
|
630
|
+
.gitment-markdown hr {
|
631
|
+
box-sizing: content-box;
|
632
|
+
height: 0;
|
633
|
+
overflow: visible;
|
634
|
+
}
|
635
|
+
|
636
|
+
.gitment-markdown input {
|
637
|
+
font: inherit;
|
638
|
+
margin: 0;
|
639
|
+
}
|
640
|
+
|
641
|
+
.gitment-markdown input {
|
642
|
+
overflow: visible;
|
643
|
+
}
|
644
|
+
|
645
|
+
.gitment-markdown [type="checkbox"] {
|
646
|
+
box-sizing: border-box;
|
647
|
+
padding: 0;
|
648
|
+
}
|
649
|
+
|
650
|
+
.gitment-markdown * {
|
651
|
+
box-sizing: border-box;
|
652
|
+
}
|
653
|
+
|
654
|
+
.gitment-markdown input {
|
655
|
+
font-family: inherit;
|
656
|
+
font-size: inherit;
|
657
|
+
line-height: inherit;
|
658
|
+
}
|
659
|
+
|
660
|
+
.gitment-markdown a {
|
661
|
+
color: #ff5100;
|
662
|
+
text-decoration: none;
|
663
|
+
}
|
664
|
+
|
665
|
+
.gitment-markdown a:hover {
|
666
|
+
text-decoration: underline;
|
667
|
+
}
|
668
|
+
|
669
|
+
.gitment-markdown strong {
|
670
|
+
font-weight: 600;
|
671
|
+
}
|
672
|
+
|
673
|
+
.gitment-markdown hr {
|
674
|
+
height: 0;
|
675
|
+
margin: 15px 0;
|
676
|
+
overflow: hidden;
|
677
|
+
background: transparent;
|
678
|
+
border: 0;
|
679
|
+
border-bottom: 1px solid #dfe2e5;
|
680
|
+
}
|
681
|
+
|
682
|
+
.gitment-markdown hr::before {
|
683
|
+
display: table;
|
684
|
+
content: "";
|
685
|
+
}
|
686
|
+
|
687
|
+
.gitment-markdown hr::after {
|
688
|
+
display: table;
|
689
|
+
clear: both;
|
690
|
+
content: "";
|
691
|
+
}
|
692
|
+
|
693
|
+
.gitment-markdown table {
|
694
|
+
border-spacing: 0;
|
695
|
+
border-collapse: collapse;
|
696
|
+
}
|
697
|
+
|
698
|
+
.gitment-markdown td,
|
699
|
+
.gitment-markdown th {
|
700
|
+
padding: 0;
|
701
|
+
}
|
702
|
+
|
703
|
+
.gitment-markdown h1,
|
704
|
+
.gitment-markdown h2,
|
705
|
+
.gitment-markdown h3,
|
706
|
+
.gitment-markdown h4,
|
707
|
+
.gitment-markdown h5,
|
708
|
+
.gitment-markdown h6 {
|
709
|
+
margin-top: 0;
|
710
|
+
margin-bottom: 0;
|
711
|
+
}
|
712
|
+
|
713
|
+
.gitment-markdown h1 {
|
714
|
+
font-size: 32px;
|
715
|
+
font-weight: 600;
|
716
|
+
}
|
717
|
+
|
718
|
+
.gitment-markdown h2 {
|
719
|
+
font-size: 24px;
|
720
|
+
font-weight: 600;
|
721
|
+
}
|
722
|
+
|
723
|
+
.gitment-markdown h3 {
|
724
|
+
font-size: 20px;
|
725
|
+
font-weight: 600;
|
726
|
+
}
|
727
|
+
|
728
|
+
.gitment-markdown h4 {
|
729
|
+
font-size: 16px;
|
730
|
+
font-weight: 600;
|
731
|
+
}
|
732
|
+
|
733
|
+
.gitment-markdown h5 {
|
734
|
+
font-size: 14px;
|
735
|
+
font-weight: 600;
|
736
|
+
}
|
737
|
+
|
738
|
+
.gitment-markdown h6 {
|
739
|
+
font-size: 12px;
|
740
|
+
font-weight: 600;
|
741
|
+
}
|
742
|
+
|
743
|
+
.gitment-markdown p {
|
744
|
+
margin-top: 0;
|
745
|
+
margin-bottom: 10px;
|
746
|
+
}
|
747
|
+
|
748
|
+
.gitment-markdown blockquote {
|
749
|
+
margin: 0;
|
750
|
+
}
|
751
|
+
|
752
|
+
.gitment-markdown ul,
|
753
|
+
.gitment-markdown ol {
|
754
|
+
padding-left: 0;
|
755
|
+
margin-top: 0;
|
756
|
+
margin-bottom: 0;
|
757
|
+
}
|
758
|
+
|
759
|
+
.gitment-markdown ol ol,
|
760
|
+
.gitment-markdown ul ol {
|
761
|
+
list-style-type: lower-roman;
|
762
|
+
}
|
763
|
+
|
764
|
+
.gitment-markdown ul ul ol,
|
765
|
+
.gitment-markdown ul ol ol,
|
766
|
+
.gitment-markdown ol ul ol,
|
767
|
+
.gitment-markdown ol ol ol {
|
768
|
+
list-style-type: lower-alpha;
|
769
|
+
}
|
770
|
+
|
771
|
+
.gitment-markdown dd {
|
772
|
+
margin-left: 0;
|
773
|
+
}
|
774
|
+
|
775
|
+
.gitment-markdown code {
|
776
|
+
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
777
|
+
font-size: 12px;
|
778
|
+
}
|
779
|
+
|
780
|
+
.gitment-markdown pre {
|
781
|
+
margin-top: 0;
|
782
|
+
margin-bottom: 0;
|
783
|
+
font: 12px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
784
|
+
}
|
785
|
+
|
786
|
+
.gitment-markdown .octicon {
|
787
|
+
vertical-align: text-bottom;
|
788
|
+
}
|
789
|
+
|
790
|
+
.gitment-markdown .pl-0 {
|
791
|
+
padding-left: 0 !important;
|
792
|
+
}
|
793
|
+
|
794
|
+
.gitment-markdown .pl-1 {
|
795
|
+
padding-left: 4px !important;
|
796
|
+
}
|
797
|
+
|
798
|
+
.gitment-markdown .pl-2 {
|
799
|
+
padding-left: 8px !important;
|
800
|
+
}
|
801
|
+
|
802
|
+
.gitment-markdown .pl-3 {
|
803
|
+
padding-left: 16px !important;
|
804
|
+
}
|
805
|
+
|
806
|
+
.gitment-markdown .pl-4 {
|
807
|
+
padding-left: 24px !important;
|
808
|
+
}
|
809
|
+
|
810
|
+
.gitment-markdown .pl-5 {
|
811
|
+
padding-left: 32px !important;
|
812
|
+
}
|
813
|
+
|
814
|
+
.gitment-markdown .pl-6 {
|
815
|
+
padding-left: 40px !important;
|
816
|
+
}
|
817
|
+
|
818
|
+
.gitment-markdown::before {
|
819
|
+
display: table;
|
820
|
+
content: "";
|
821
|
+
}
|
822
|
+
|
823
|
+
.gitment-markdown::after {
|
824
|
+
display: table;
|
825
|
+
clear: both;
|
826
|
+
content: "";
|
827
|
+
}
|
828
|
+
|
829
|
+
.gitment-markdown>*:first-child {
|
830
|
+
margin-top: 0 !important;
|
831
|
+
}
|
832
|
+
|
833
|
+
.gitment-markdown>*:last-child {
|
834
|
+
margin-bottom: 0 !important;
|
835
|
+
}
|
836
|
+
|
837
|
+
.gitment-markdown a:not([href]) {
|
838
|
+
color: inherit;
|
839
|
+
text-decoration: none;
|
840
|
+
}
|
841
|
+
|
842
|
+
.gitment-markdown .anchor {
|
843
|
+
float: left;
|
844
|
+
padding-right: 4px;
|
845
|
+
margin-left: -20px;
|
846
|
+
line-height: 1;
|
847
|
+
}
|
848
|
+
|
849
|
+
.gitment-markdown .anchor:focus {
|
850
|
+
outline: none;
|
851
|
+
}
|
852
|
+
|
853
|
+
.gitment-markdown p,
|
854
|
+
.gitment-markdown blockquote,
|
855
|
+
.gitment-markdown ul,
|
856
|
+
.gitment-markdown ol,
|
857
|
+
.gitment-markdown dl,
|
858
|
+
.gitment-markdown table,
|
859
|
+
.gitment-markdown pre {
|
860
|
+
margin-top: 0;
|
861
|
+
margin-bottom: 16px;
|
862
|
+
}
|
863
|
+
|
864
|
+
.gitment-markdown hr {
|
865
|
+
height: 0.25em;
|
866
|
+
padding: 0;
|
867
|
+
margin: 24px 0;
|
868
|
+
background-color: #e1e4e8;
|
869
|
+
border: 0;
|
870
|
+
}
|
871
|
+
|
872
|
+
.gitment-markdown blockquote {
|
873
|
+
padding: 0 1em;
|
874
|
+
color: #6a737d;
|
875
|
+
border-left: 0.25em solid #dfe2e5;
|
876
|
+
}
|
877
|
+
|
878
|
+
.gitment-markdown blockquote>:first-child {
|
879
|
+
margin-top: 0;
|
880
|
+
}
|
881
|
+
|
882
|
+
.gitment-markdown blockquote>:last-child {
|
883
|
+
margin-bottom: 0;
|
884
|
+
}
|
885
|
+
|
886
|
+
.gitment-markdown kbd {
|
887
|
+
display: inline-block;
|
888
|
+
padding: 3px 5px;
|
889
|
+
font-size: 11px;
|
890
|
+
line-height: 10px;
|
891
|
+
color: #444d56;
|
892
|
+
vertical-align: middle;
|
893
|
+
background-color: #fafbfc;
|
894
|
+
border: solid 1px #c6cbd1;
|
895
|
+
border-bottom-color: #959da5;
|
896
|
+
border-radius: 0;
|
897
|
+
box-shadow: inset 0 -1px 0 #959da5;
|
898
|
+
}
|
899
|
+
|
900
|
+
.gitment-markdown h1,
|
901
|
+
.gitment-markdown h2,
|
902
|
+
.gitment-markdown h3,
|
903
|
+
.gitment-markdown h4,
|
904
|
+
.gitment-markdown h5,
|
905
|
+
.gitment-markdown h6 {
|
906
|
+
margin-top: 24px;
|
907
|
+
margin-bottom: 16px;
|
908
|
+
font-weight: 600;
|
909
|
+
line-height: 1.25;
|
910
|
+
}
|
911
|
+
|
912
|
+
.gitment-markdown h1 .octicon-link,
|
913
|
+
.gitment-markdown h2 .octicon-link,
|
914
|
+
.gitment-markdown h3 .octicon-link,
|
915
|
+
.gitment-markdown h4 .octicon-link,
|
916
|
+
.gitment-markdown h5 .octicon-link,
|
917
|
+
.gitment-markdown h6 .octicon-link {
|
918
|
+
color: #1b1f23;
|
919
|
+
vertical-align: middle;
|
920
|
+
visibility: hidden;
|
921
|
+
}
|
922
|
+
|
923
|
+
.gitment-markdown h1:hover .anchor,
|
924
|
+
.gitment-markdown h2:hover .anchor,
|
925
|
+
.gitment-markdown h3:hover .anchor,
|
926
|
+
.gitment-markdown h4:hover .anchor,
|
927
|
+
.gitment-markdown h5:hover .anchor,
|
928
|
+
.gitment-markdown h6:hover .anchor {
|
929
|
+
text-decoration: none;
|
930
|
+
}
|
931
|
+
|
932
|
+
.gitment-markdown h1:hover .anchor .octicon-link,
|
933
|
+
.gitment-markdown h2:hover .anchor .octicon-link,
|
934
|
+
.gitment-markdown h3:hover .anchor .octicon-link,
|
935
|
+
.gitment-markdown h4:hover .anchor .octicon-link,
|
936
|
+
.gitment-markdown h5:hover .anchor .octicon-link,
|
937
|
+
.gitment-markdown h6:hover .anchor .octicon-link {
|
938
|
+
visibility: visible;
|
939
|
+
}
|
940
|
+
|
941
|
+
.gitment-markdown h1 {
|
942
|
+
padding-bottom: 0.3em;
|
943
|
+
font-size: 2em;
|
944
|
+
border-bottom: 1px solid #eaecef;
|
945
|
+
}
|
946
|
+
|
947
|
+
.gitment-markdown h2 {
|
948
|
+
padding-bottom: 0.3em;
|
949
|
+
font-size: 1.5em;
|
950
|
+
border-bottom: 1px solid #eaecef;
|
951
|
+
}
|
952
|
+
|
953
|
+
.gitment-markdown h3 {
|
954
|
+
font-size: 1.25em;
|
955
|
+
}
|
956
|
+
|
957
|
+
.gitment-markdown h4 {
|
958
|
+
font-size: 1em;
|
959
|
+
}
|
960
|
+
|
961
|
+
.gitment-markdown h5 {
|
962
|
+
font-size: 0.875em;
|
963
|
+
}
|
964
|
+
|
965
|
+
.gitment-markdown h6 {
|
966
|
+
font-size: 0.85em;
|
967
|
+
color: #6a737d;
|
968
|
+
}
|
969
|
+
|
970
|
+
.gitment-markdown ul,
|
971
|
+
.gitment-markdown ol {
|
972
|
+
padding-left: 2em;
|
973
|
+
}
|
974
|
+
|
975
|
+
.gitment-markdown ul ul,
|
976
|
+
.gitment-markdown ul ol,
|
977
|
+
.gitment-markdown ol ol,
|
978
|
+
.gitment-markdown ol ul {
|
979
|
+
margin-top: 0;
|
980
|
+
margin-bottom: 0;
|
981
|
+
}
|
982
|
+
|
983
|
+
.gitment-markdown li>p {
|
984
|
+
margin-top: 16px;
|
985
|
+
}
|
986
|
+
|
987
|
+
.gitment-markdown li+li {
|
988
|
+
margin-top: 0.25em;
|
989
|
+
}
|
990
|
+
|
991
|
+
.gitment-markdown dl {
|
992
|
+
padding: 0;
|
993
|
+
}
|
994
|
+
|
995
|
+
.gitment-markdown dl dt {
|
996
|
+
padding: 0;
|
997
|
+
margin-top: 16px;
|
998
|
+
font-size: 1em;
|
999
|
+
font-style: italic;
|
1000
|
+
font-weight: 600;
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.gitment-markdown dl dd {
|
1004
|
+
padding: 0 16px;
|
1005
|
+
margin-bottom: 16px;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.gitment-markdown table {
|
1009
|
+
display: block;
|
1010
|
+
width: 100%;
|
1011
|
+
overflow: auto;
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
.gitment-markdown table th {
|
1015
|
+
font-weight: 600;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
.gitment-markdown table th,
|
1019
|
+
.gitment-markdown table td {
|
1020
|
+
padding: 6px 13px;
|
1021
|
+
border: 1px solid #dfe2e5;
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
.gitment-markdown table tr {
|
1025
|
+
background-color: #fff;
|
1026
|
+
border-top: 1px solid #c6cbd1;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
.gitment-markdown table tr:nth-child(2n) {
|
1030
|
+
background-color: #f5f5f5;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
.gitment-markdown img {
|
1034
|
+
max-width: 100%;
|
1035
|
+
box-sizing: content-box;
|
1036
|
+
background-color: #fff;
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
.gitment-markdown code {
|
1040
|
+
padding: 0;
|
1041
|
+
padding-top: 0.2em;
|
1042
|
+
padding-bottom: 0.2em;
|
1043
|
+
margin: 0;
|
1044
|
+
font-size: 85%;
|
1045
|
+
background-color: rgba(27,31,35,0.05);
|
1046
|
+
border-radius: 0;
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.gitment-markdown code::before,
|
1050
|
+
.gitment-markdown code::after {
|
1051
|
+
letter-spacing: -0.2em;
|
1052
|
+
content: "\00a0";
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
.gitment-markdown pre {
|
1056
|
+
word-wrap: normal;
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
.gitment-markdown pre>code {
|
1060
|
+
padding: 0;
|
1061
|
+
margin: 0;
|
1062
|
+
font-size: 100%;
|
1063
|
+
word-break: normal;
|
1064
|
+
white-space: pre;
|
1065
|
+
background: transparent;
|
1066
|
+
border: 0;
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
.gitment-markdown .highlight {
|
1070
|
+
margin-bottom: 16px;
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.gitment-markdown .highlight pre {
|
1074
|
+
margin-bottom: 0;
|
1075
|
+
word-break: normal;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.gitment-markdown .highlight pre,
|
1079
|
+
.gitment-markdown pre {
|
1080
|
+
padding: 16px;
|
1081
|
+
overflow: auto;
|
1082
|
+
font-size: 85%;
|
1083
|
+
line-height: 1.45;
|
1084
|
+
background-color: #f5f5f5;
|
1085
|
+
border-radius: 0;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.gitment-markdown pre code {
|
1089
|
+
display: inline;
|
1090
|
+
max-width: auto;
|
1091
|
+
padding: 0;
|
1092
|
+
margin: 0;
|
1093
|
+
overflow: visible;
|
1094
|
+
line-height: inherit;
|
1095
|
+
word-wrap: normal;
|
1096
|
+
background-color: transparent;
|
1097
|
+
border: 0;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
.gitment-markdown pre code::before,
|
1101
|
+
.gitment-markdown pre code::after {
|
1102
|
+
content: normal;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.gitment-markdown .full-commit .btn-outline:not(:disabled):hover {
|
1106
|
+
color: #005cc5;
|
1107
|
+
border-color: #005cc5;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.gitment-markdown kbd {
|
1111
|
+
display: inline-block;
|
1112
|
+
padding: 3px 5px;
|
1113
|
+
font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
1114
|
+
line-height: 10px;
|
1115
|
+
color: #444d56;
|
1116
|
+
vertical-align: middle;
|
1117
|
+
background-color: #fcfcfc;
|
1118
|
+
border: solid 1px #c6cbd1;
|
1119
|
+
border-bottom-color: #959da5;
|
1120
|
+
border-radius: 0;
|
1121
|
+
box-shadow: inset 0 -1px 0 #959da5;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.gitment-markdown :checked+.radio-label {
|
1125
|
+
position: relative;
|
1126
|
+
z-index: 1;
|
1127
|
+
border-color: #0366d6;
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
.gitment-markdown .task-list-item {
|
1131
|
+
list-style-type: none;
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.gitment-markdown .task-list-item+.task-list-item {
|
1135
|
+
margin-top: 3px;
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
.gitment-markdown .task-list-item input {
|
1139
|
+
margin: 0 0.2em 0.25em -1.6em;
|
1140
|
+
vertical-align: middle;
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
.gitment-markdown hr {
|
1144
|
+
border-bottom-color: #eee;
|
1145
|
+
}
|