ronyman-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_config.yml +63 -0
  5. data/_includes/about.html +30 -0
  6. data/_includes/categories.html +27 -0
  7. data/_includes/companies.svg +7 -0
  8. data/_includes/contact.html +14 -0
  9. data/_includes/footer.html +50 -0
  10. data/_includes/header.html +78 -0
  11. data/_includes/privacy.html +15 -0
  12. data/_includes/projects.html +38 -0
  13. data/_includes/tags.html +27 -0
  14. data/_includes/terms.html +12 -0
  15. data/_layouts/default.html +7 -0
  16. data/_layouts/page.html +10 -0
  17. data/_layouts/post.html +59 -0
  18. data/assets/brand/Allinpages-logo.ico +0 -0
  19. data/assets/brand/Allinpages-logo.svg +11 -0
  20. data/assets/brand/favicon.ico +0 -0
  21. data/assets/brand/getweb-dev.ico +0 -0
  22. data/assets/brand/getweb-dev.svg +11 -0
  23. data/assets/brand/logo.png +0 -0
  24. data/assets/brand/ronyman.com.png +0 -0
  25. data/assets/brand/ronyman.com.svg +11 -0
  26. data/assets/brand/user.png +0 -0
  27. data/assets/brand/w3news.ico +0 -0
  28. data/assets/brand/w3news.svg +11 -0
  29. data/assets/css/about.sass +19 -0
  30. data/assets/css/animate.css +3340 -0
  31. data/assets/css/categories.sass +47 -0
  32. data/assets/css/contact.sass +18 -0
  33. data/assets/css/index.sass +31 -0
  34. data/assets/css/main.sass +99 -0
  35. data/assets/css/morphext.css +3 -0
  36. data/assets/css/page.sass +11 -0
  37. data/assets/css/post.sass +73 -0
  38. data/assets/css/projects.sass +57 -0
  39. data/assets/css/syntax.css +164 -0
  40. data/assets/css/tags.sass +47 -0
  41. data/assets/js/about.js +8 -0
  42. data/assets/js/main.js +5 -0
  43. data/assets/js/morphext.min.js +1 -0
  44. data/assets/js/post.js +7 -0
  45. data/assets/js/projects.js +13 -0
  46. metadata +101 -0
@@ -0,0 +1,47 @@
1
+ ---
2
+ ---
3
+ @mixin transition($args...)
4
+ -webkit-transition: $args
5
+ -moz-transition: $args
6
+ -ms-transition: $args
7
+ -o-transition: $args
8
+ transition: $args
9
+
10
+ .tag-chip
11
+ color: #616161
12
+ margin-right: 5px
13
+ text-decoration: none
14
+
15
+ &:hover
16
+ div
17
+ color: #fff
18
+ background-color: #616161
19
+
20
+ div
21
+ @include transition(all .3s ease-in-out)
22
+
23
+ .tag-div
24
+ .divider
25
+ margin: 20px 0
26
+
27
+ .post-date
28
+ margin-left: 10px
29
+
30
+ ul
31
+ &:not(.browser-default)
32
+ &.tag-post
33
+ padding-left: 0
34
+
35
+ a
36
+ text-decoration: none
37
+ color: #00695c
38
+
39
+ li
40
+ list-style-position: inside
41
+ padding-left: 40px
42
+
43
+ &:hover
44
+ list-style-type: circle
45
+ padding-left: 20px
46
+
47
+ @include transition(all .2s ease-in-out)
@@ -0,0 +1,8 @@
1
+ $(document).ready(function(){
2
+ $('.user-intro h4').removeClass('hidden');
3
+ $("#js-rotating").Morphext({
4
+ animation: "flip",
5
+ separator: ",",
6
+ speed: 2000
7
+ });
8
+ });
@@ -0,0 +1,5 @@
1
+ (function($){
2
+ $(function(){
3
+ $(".button-collapse").sideNav();
4
+ });
5
+ })(jQuery);
@@ -0,0 +1 @@
1
+ /*! Morphext - v2.4.4 - 2015-05-21 */!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML='<span class="animated '+this.settings.animation+'">'+this.phrases[this.index]+"</span>",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery);
@@ -0,0 +1,7 @@
1
+ $(document).ready(function(){
2
+ $('figure.highlight').each(function(x, r){
3
+ if ($(r).find('table').length < 1){
4
+ $(r).find('pre').css('padding', '5px');
5
+ }
6
+ });
7
+ });
@@ -0,0 +1,13 @@
1
+ $(document).ready(function(){
2
+ $('.geopattern').each(function(){
3
+ $(this).geopattern($(this).data('pattern-id'));
4
+ });
5
+ });
6
+
7
+ function toggleForked(){
8
+ if ($('.fork-switch').prop('checked')) {
9
+ $('div[id=forked]').removeClass('hidden');
10
+ } else {
11
+ $('div[id=forked]').addClass('hidden');
12
+ }
13
+ }
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ronyman-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ronyman.com
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-12-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ description:
28
+ email:
29
+ - 47080351+ronyman-com@users.noreply.github.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE.txt
35
+ - README.md
36
+ - _config.yml
37
+ - _includes/about.html
38
+ - _includes/categories.html
39
+ - _includes/companies.svg
40
+ - _includes/contact.html
41
+ - _includes/footer.html
42
+ - _includes/header.html
43
+ - _includes/privacy.html
44
+ - _includes/projects.html
45
+ - _includes/tags.html
46
+ - _includes/terms.html
47
+ - _layouts/default.html
48
+ - _layouts/page.html
49
+ - _layouts/post.html
50
+ - assets/brand/Allinpages-logo.ico
51
+ - assets/brand/Allinpages-logo.svg
52
+ - assets/brand/favicon.ico
53
+ - assets/brand/getweb-dev.ico
54
+ - assets/brand/getweb-dev.svg
55
+ - assets/brand/logo.png
56
+ - assets/brand/ronyman.com.png
57
+ - assets/brand/ronyman.com.svg
58
+ - assets/brand/user.png
59
+ - assets/brand/w3news.ico
60
+ - assets/brand/w3news.svg
61
+ - assets/css/about.sass
62
+ - assets/css/animate.css
63
+ - assets/css/categories.sass
64
+ - assets/css/contact.sass
65
+ - assets/css/index.sass
66
+ - assets/css/main.sass
67
+ - assets/css/morphext.css
68
+ - assets/css/page.sass
69
+ - assets/css/post.sass
70
+ - assets/css/projects.sass
71
+ - assets/css/syntax.css
72
+ - assets/css/tags.sass
73
+ - assets/js/about.js
74
+ - assets/js/main.js
75
+ - assets/js/morphext.min.js
76
+ - assets/js/post.js
77
+ - assets/js/projects.js
78
+ homepage: https://ronyman.com/
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubygems_version: 3.1.4
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: theme and website services
101
+ test_files: []