ghp-layouts 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/content/fonts/zocial-eot.eot +0 -0
- data/content/fonts/zocial-svg.svg +86 -0
- data/content/fonts/zocial-ttf.ttf +0 -0
- data/content/fonts/zocial-woff.woff +0 -0
- data/content/js/bootstrap.min.js +7 -0
- data/content/js/date.js +145 -0
- data/content/js/feeds.js +42 -0
- data/content/js/hyphenator.js +56 -0
- data/content/js/init.js +20 -0
- data/content/js/jquery-easing.js +205 -0
- data/content/js/jquery-latest.js +9555 -0
- data/content/js/jquery-timeago.js +123 -0
- data/content/js/search.js +7 -0
- data/content/js/sevenup.js +10 -0
- data/content/js/sevenup_black.js +42 -0
- data/content/styles/_bootstrap.scss +6103 -0
- data/content/styles/_code.scss +146 -0
- data/content/styles/_vendor.scss +163 -0
- data/content/styles/_zocial.scss +43 -0
- data/content/styles/style.scss +155 -0
- data/content/styles/ultraviolet/lazy.css +73 -0
- metadata +24 -3
@@ -0,0 +1,73 @@
|
|
1
|
+
pre.lazy .OcamlInfixFPOperator {
|
2
|
+
text-decoration: underline;
|
3
|
+
}
|
4
|
+
pre.lazy .OcamlInfixOperator {
|
5
|
+
color: #3B5BB5;
|
6
|
+
}
|
7
|
+
pre.lazy .MetaFunctionCallPy {
|
8
|
+
color: #3E4558;
|
9
|
+
}
|
10
|
+
pre.lazy .Superclass {
|
11
|
+
color: #3B5BB5;
|
12
|
+
font-style: italic;
|
13
|
+
}
|
14
|
+
pre.lazy .LatexEntity {
|
15
|
+
color: #D62A28;
|
16
|
+
}
|
17
|
+
pre.lazy .Constant {
|
18
|
+
color: #3B5BB5;
|
19
|
+
}
|
20
|
+
pre.lazy .OcamlFPConstant {
|
21
|
+
text-decoration: underline;
|
22
|
+
}
|
23
|
+
pre.lazy .Support {
|
24
|
+
color: #3B5BB5;
|
25
|
+
}
|
26
|
+
pre.lazy .OcamlOperator {
|
27
|
+
color: #000000;
|
28
|
+
}
|
29
|
+
pre.lazy .line-numbers {
|
30
|
+
background-color: #E3FC8D;
|
31
|
+
color: #000000;
|
32
|
+
}
|
33
|
+
pre.lazy .StringInterpolation {
|
34
|
+
color: #671EBB;
|
35
|
+
}
|
36
|
+
pre.lazy .InvalidIllegal {
|
37
|
+
background-color: #9D1E15;
|
38
|
+
color: #F8F8F8;
|
39
|
+
}
|
40
|
+
pre.lazy .OcamlVariant {
|
41
|
+
color: #7F90AA;
|
42
|
+
}
|
43
|
+
pre.lazy .MetaTag {
|
44
|
+
color: #3A4A64;
|
45
|
+
}
|
46
|
+
pre.lazy .OcamlPrefixFPOperator {
|
47
|
+
text-decoration: underline;
|
48
|
+
}
|
49
|
+
pre.lazy .OcamlPrefixOperator {
|
50
|
+
color: #3B5BB5;
|
51
|
+
}
|
52
|
+
pre.lazy .String {
|
53
|
+
color: #409B1C;
|
54
|
+
}
|
55
|
+
pre.lazy .Keyword {
|
56
|
+
color: #FF7800;
|
57
|
+
}
|
58
|
+
pre.lazy {
|
59
|
+
background-color: #FFFFFF;
|
60
|
+
color: #000000;
|
61
|
+
}
|
62
|
+
pre.lazy .InvalidDeprecated {
|
63
|
+
color: #990000;
|
64
|
+
font-style: italic;
|
65
|
+
}
|
66
|
+
pre.lazy .Variable {
|
67
|
+
}
|
68
|
+
pre.lazy .Entity {
|
69
|
+
color: #3B5BB5;
|
70
|
+
}
|
71
|
+
pre.lazy .Comment {
|
72
|
+
color: #8C868F;
|
73
|
+
}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ghp-layouts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- David Nghiem
|
@@ -45,6 +45,27 @@ files:
|
|
45
45
|
- layouts/default.erb
|
46
46
|
- layouts/header.erb
|
47
47
|
- layouts/page_meta.erb
|
48
|
+
- content/fonts/zocial-eot.eot
|
49
|
+
- content/fonts/zocial-svg.svg
|
50
|
+
- content/fonts/zocial-ttf.ttf
|
51
|
+
- content/fonts/zocial-woff.woff
|
52
|
+
- content/js/bootstrap.min.js
|
53
|
+
- content/js/date.js
|
54
|
+
- content/js/feeds.js
|
55
|
+
- content/js/hyphenator.js
|
56
|
+
- content/js/init.js
|
57
|
+
- content/js/jquery-easing.js
|
58
|
+
- content/js/jquery-latest.js
|
59
|
+
- content/js/jquery-timeago.js
|
60
|
+
- content/js/search.js
|
61
|
+
- content/js/sevenup.js
|
62
|
+
- content/js/sevenup_black.js
|
63
|
+
- content/styles/_bootstrap.scss
|
64
|
+
- content/styles/_code.scss
|
65
|
+
- content/styles/_vendor.scss
|
66
|
+
- content/styles/_zocial.scss
|
67
|
+
- content/styles/style.scss
|
68
|
+
- content/styles/ultraviolet/lazy.css
|
48
69
|
has_rdoc: true
|
49
70
|
homepage: https://github.com/destructuring/ghp-layouts
|
50
71
|
licenses: []
|