sweetie 0.1.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (201) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +4 -1
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +6 -0
  6. data/README.md +292 -15
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +30 -0
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +84 -103
  11. data/lib/sweetie/helper.rb +90 -0
  12. data/lib/sweetie/version.rb +5 -0
  13. data/lib/sweetie.rb +3 -4
  14. data/spec/fixtures/bitbucket/expected_repositories.txt +1 -0
  15. data/spec/fixtures/bitbucket/repositories.json +1 -0
  16. data/spec/fixtures/jekyll/_config.yml +4 -0
  17. data/spec/fixtures/jekyll/_config_repositories.yml +7 -0
  18. data/spec/fixtures/jekyll/_expected_config.yml +4 -0
  19. data/spec/{source → fixtures/jekyll}/site/404.html +0 -0
  20. data/spec/{source → fixtures/jekyll}/site/about.html +0 -0
  21. data/spec/{source → fixtures/jekyll}/site/archiv.html +0 -0
  22. data/spec/{source → fixtures/jekyll}/site/atom.xml +0 -0
  23. data/spec/{source → fixtures/jekyll}/site/colophon.html +0 -0
  24. data/spec/{source → fixtures/jekyll}/site/contact.html +0 -0
  25. data/spec/{source → fixtures/jekyll}/site/follow.html +0 -0
  26. data/spec/{source → fixtures/jekyll}/site/images/2_avatars.gif +0 -0
  27. data/spec/{source → fixtures/jekyll}/site/images/favicon.png +0 -0
  28. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther.jpg +0 -0
  29. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  30. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  31. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/closebox.png +0 -0
  32. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  33. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  34. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  35. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  36. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  37. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  38. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  39. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  40. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  41. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  42. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  43. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  44. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  45. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  46. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  47. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  48. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  49. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  50. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  51. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  52. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  53. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  54. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  55. data/spec/{source → fixtures/jekyll}/site/images/rails3.jpg +0 -0
  56. data/spec/{source → fixtures/jekyll}/site/index.html +0 -0
  57. data/spec/{source → fixtures/jekyll}/site/robots.txt +0 -0
  58. data/spec/{source → fixtures/jekyll}/site/sitemap.xml +0 -0
  59. data/spec/{source → fixtures/jekyll}/site/why-i-use-jekyll-for-blogging.html +0 -0
  60. data/spec/fixtures/middleman/build/2012-01-meetup/index.html +238 -0
  61. data/spec/fixtures/middleman/build/2012-03-meetup/index.html +217 -0
  62. data/spec/fixtures/middleman/build/2012-05-meetup/index.html +214 -0
  63. data/spec/fixtures/middleman/build/2012-07-meetup/index.html +210 -0
  64. data/spec/fixtures/middleman/build/2012-08-workshop/index.html +228 -0
  65. data/spec/fixtures/middleman/build/2012-09-meetup/index.html +231 -0
  66. data/spec/fixtures/middleman/build/2012-10-workshop/index.html +227 -0
  67. data/spec/fixtures/middleman/build/2012-11-meetup/index.html +229 -0
  68. data/spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html +186 -0
  69. data/spec/fixtures/middleman/build/2013-01-meetup/index.html +226 -0
  70. data/spec/fixtures/middleman/build/404/index.html +157 -0
  71. data/spec/fixtures/middleman/build/CNAME +1 -0
  72. data/spec/fixtures/middleman/build/april-2014-meetup/index.html +221 -0
  73. data/spec/fixtures/middleman/build/april-2015-meetup/index.html +204 -0
  74. data/spec/fixtures/middleman/build/april-2017-meetup/index.html +210 -0
  75. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png +0 -0
  76. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png +0 -0
  77. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png +0 -0
  78. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png +0 -0
  79. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png +0 -0
  80. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png +0 -0
  81. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png +0 -0
  82. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png +0 -0
  83. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png +0 -0
  84. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png +0 -0
  85. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png +0 -0
  86. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png +0 -0
  87. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png +0 -0
  88. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png +0 -0
  89. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png +0 -0
  90. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png +0 -0
  91. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png +0 -0
  92. data/spec/fixtures/middleman/build/assets/favicons/browserconfig.xml +12 -0
  93. data/spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png +0 -0
  94. data/spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png +0 -0
  95. data/spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png +0 -0
  96. data/spec/fixtures/middleman/build/assets/favicons/favicon.ico +0 -0
  97. data/spec/fixtures/middleman/build/assets/favicons/manifest.json +41 -0
  98. data/spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png +0 -0
  99. data/spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png +0 -0
  100. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png +0 -0
  101. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png +0 -0
  102. data/spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png +0 -0
  103. data/spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg +450 -0
  104. data/spec/fixtures/middleman/build/assets/images/launch_co_logo.png +0 -0
  105. data/spec/fixtures/middleman/build/assets/images/vimfest.png +0 -0
  106. data/spec/fixtures/middleman/build/assets/javascripts/application.js +12 -0
  107. data/spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js +12 -0
  108. data/spec/fixtures/middleman/build/assets/javascripts/lib/validate.js +1 -0
  109. data/spec/fixtures/middleman/build/assets/stylesheets/application.css +5 -0
  110. data/spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css +5 -0
  111. data/spec/fixtures/middleman/build/august-2013-meetup/index.html +208 -0
  112. data/spec/fixtures/middleman/build/blog/index.html +500 -0
  113. data/spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html +182 -0
  114. data/spec/fixtures/middleman/build/contact/index.html +155 -0
  115. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html +98 -0
  116. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html +157 -0
  117. data/spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html +70 -0
  118. data/spec/fixtures/middleman/build/december-2015-meetup/index.html +199 -0
  119. data/spec/fixtures/middleman/build/december-2016-meetup/index.html +224 -0
  120. data/spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html +190 -0
  121. data/spec/fixtures/middleman/build/february-2015-meetup/index.html +233 -0
  122. data/spec/fixtures/middleman/build/february-2016-meetup/index.html +271 -0
  123. data/spec/fixtures/middleman/build/feed.xml +2106 -0
  124. data/spec/fixtures/middleman/build/fonts/FontAwesome.otf +0 -0
  125. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot +0 -0
  126. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg +655 -0
  127. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf +0 -0
  128. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff +0 -0
  129. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2 +0 -0
  130. data/spec/fixtures/middleman/build/humans.txt +12 -0
  131. data/spec/fixtures/middleman/build/imprint/index.html +177 -0
  132. data/spec/fixtures/middleman/build/index.html +157 -0
  133. data/spec/fixtures/middleman/build/january-2014-meetup/index.html +257 -0
  134. data/spec/fixtures/middleman/build/january-2015-meetup/index.html +243 -0
  135. data/spec/fixtures/middleman/build/january-2016-meetup/index.html +202 -0
  136. data/spec/fixtures/middleman/build/january-2017-meetup/index.html +228 -0
  137. data/spec/fixtures/middleman/build/july-2015-meetup/index.html +207 -0
  138. data/spec/fixtures/middleman/build/june-2016-meetup/index.html +260 -0
  139. data/spec/fixtures/middleman/build/march-2-2017-meetup/index.html +201 -0
  140. data/spec/fixtures/middleman/build/march-2014-meetup/index.html +219 -0
  141. data/spec/fixtures/middleman/build/march-2016-meetup/index.html +221 -0
  142. data/spec/fixtures/middleman/build/march-2017-meetup/index.html +222 -0
  143. data/spec/fixtures/middleman/build/may-2013-meetup/index.html +234 -0
  144. data/spec/fixtures/middleman/build/may-2014-meetup/index.html +198 -0
  145. data/spec/fixtures/middleman/build/may-2015-meetup/index.html +202 -0
  146. data/spec/fixtures/middleman/build/may-2016-meetup/index.html +245 -0
  147. data/spec/fixtures/middleman/build/newsletter/index.html +171 -0
  148. data/spec/fixtures/middleman/build/november-2013-meetup/index.html +199 -0
  149. data/spec/fixtures/middleman/build/november-2015-meetup/index.html +402 -0
  150. data/spec/fixtures/middleman/build/november-2016-meetup/index.html +224 -0
  151. data/spec/fixtures/middleman/build/october-2013-meetup/index.html +210 -0
  152. data/spec/fixtures/middleman/build/october-2014-meetup/index.html +196 -0
  153. data/spec/fixtures/middleman/build/october-2016-meetup/index.html +222 -0
  154. data/spec/fixtures/middleman/build/robots.txt +6 -0
  155. data/spec/fixtures/middleman/build/september-2013-meetup/index.html +225 -0
  156. data/spec/fixtures/middleman/build/september-2014-meetup/index.html +211 -0
  157. data/spec/fixtures/middleman/build/sitemap.xml +297 -0
  158. data/spec/fixtures/middleman/build/vimfest-october-2015/index.html +303 -0
  159. data/spec/fixtures/middleman/config.rb +4 -0
  160. data/spec/fixtures/middleman/config_repositories.rb +7 -0
  161. data/spec/fixtures/middleman/expected_config.rb +4 -0
  162. data/spec/spec_helper.rb +2 -0
  163. data/spec/sweetie_bitbucket_spec.rb +32 -0
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +117 -0
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +21 -22
  168. metadata +243 -165
  169. data/.travis.yml +0 -2
  170. data/bin/sweetie +0 -7
  171. data/doc/Sweetie.html +0 -125
  172. data/doc/_index.html +0 -121
  173. data/doc/class_list.html +0 -47
  174. data/doc/css/common.css +0 -1
  175. data/doc/css/full_list.css +0 -53
  176. data/doc/css/style.css +0 -320
  177. data/doc/file.README.html +0 -95
  178. data/doc/file_list.html +0 -49
  179. data/doc/frames.html +0 -13
  180. data/doc/index.html +0 -95
  181. data/doc/js/app.js +0 -205
  182. data/doc/js/full_list.js +0 -150
  183. data/doc/js/jquery.js +0 -16
  184. data/doc/method_list.html +0 -126
  185. data/doc/top-level-namespace.html +0 -103
  186. data/spec/source/_config.yml +0 -18
  187. data/spec/source/site/css/config.rb +0 -24
  188. data/spec/source/site/css/sass/site.sass +0 -180
  189. data/spec/source/site/css/stylesheets/iphone.css +0 -17
  190. data/spec/source/site/css/stylesheets/site.css +0 -246
  191. data/spec/source/site/css/stylesheets/syntax.css +0 -60
  192. data/spec/source/site/js/FancyZoom.js +0 -761
  193. data/spec/source/site/js/FancyZoomHTML.js +0 -318
  194. data/spec/source/site/test/config.rb +0 -24
  195. data/spec/source/site/test/sass/ie.scss +0 -5
  196. data/spec/source/site/test/sass/print.scss +0 -3
  197. data/spec/source/site/test/sass/screen.scss +0 -6
  198. data/spec/source/site/test/stylesheets/ie.css +0 -5
  199. data/spec/source/site/test/stylesheets/print.css +0 -3
  200. data/spec/source/site/test/stylesheets/screen.css +0 -69
  201. data/spec/sweetie_spec.rb +0 -30
@@ -1,180 +0,0 @@
1
- $blue: #0048a2
2
- $hoverblue: #3366CC
3
- $grey: #BDBBBB
4
- $darkgrey: #bdbbbb
5
- $codeborder: #ddd
6
- $codebackground: #eef
7
- $inlinecodeborder: #888888
8
- $inlinecodebackground: #ffff88
9
- $imgbackground: #F3F3F3
10
- $imgborder: #DDDDDD
11
-
12
- // just a global reset
13
- *
14
- :margin 5px 0 0 0
15
- :padding 0
16
-
17
- html, body
18
- :height 100%
19
-
20
- body
21
- :background-color white
22
- :font 400 1em trebuchet ms, arial, clean
23
- :text-align center
24
-
25
- h1,h2,h3,h4,h5,h6
26
- :font-size 110%
27
- :margin 30px 0 10px 0
28
- :text-transform uppercase
29
-
30
- h3
31
- :margin 20px 0 10px 0
32
-
33
- h1
34
- :font-size 120%
35
-
36
- h2,h3,h4,h5,h6
37
- :font-size 110%
38
-
39
- #sitetitle
40
- :font 400 3.5em arial, sans-serif
41
- :letter-spacing -0.1em
42
- :text-transform uppercase
43
- :height 1.15em
44
- a
45
- :color $grey
46
- :text-decoration none
47
- :border-bottom 0px
48
-
49
- #tagseperator
50
- :font-size 3.5em
51
- :color $grey
52
-
53
- #tagline
54
- :font-size 0.9em
55
- :color $darkgrey
56
-
57
- a#navlink, a#archivelink
58
- :padding-right 10px
59
- :text-transform uppercase
60
- :border-bottom 0px dotted $blue
61
-
62
- a#navlink:hover
63
- :color $hoverblue
64
-
65
- a#archivelink
66
- :float right
67
-
68
- .title
69
- :margin-bottom 10px
70
-
71
- .nav
72
- :margin-bottom 40px
73
- :border-bottom 2px solid $grey
74
-
75
- p
76
- :margin 1em 0
77
-
78
- a
79
- :color $blue
80
- :text-decoration none
81
- :border-bottom 1px dotted $blue
82
-
83
- a.blog
84
- :border-bottom 0px
85
-
86
- a.blog-small
87
- :border-bottom 0px
88
- :float left
89
- :margin-left 10px
90
-
91
- a:hover
92
- :color $hoverblue
93
- :border-bottom none
94
-
95
- table
96
- :font-size inherit
97
- :font 100%
98
-
99
- img
100
- :border 0px dotted $imgborder
101
-
102
- ul, ol
103
- li
104
- :margin-left 40px
105
-
106
- /* my posts */
107
- ul.posts
108
- :margin 1em
109
- :list-style-type none
110
- li
111
- :line-height 1.60em
112
- span
113
- :font-size 80%
114
- :color $darkgrey
115
-
116
- ul.archiv
117
- :margin 1em
118
- :list-style-type none
119
- li
120
- :line-height 1.5em
121
- :margin-left 15px
122
-
123
- .site
124
- :font-size 100%
125
- :text-align justify
126
- :width 40em
127
- // trick to center the page with auto
128
- :margin 0 auto 3em auto
129
- :line-height 1.4em
130
- .footer
131
- :font-size 70%
132
- :border-top 4px solid $grey
133
- :margin-top 10px
134
- a
135
- :text-decoration none
136
- :border-bottom 0px dotted $blue
137
-
138
- /* Posts */
139
- #post, .site
140
- pre
141
- :border 1px solid $codeborder
142
- :background-color $codebackground
143
- :font 15px helvetica,arial,clean,sans-serif
144
- :padding 0 .4em
145
- :white-space pre-wrap
146
- code
147
- :font-size 105%
148
- :border 1px dotted $inlinecodeborder
149
- :background-color $inlinecodebackground
150
- :padding 0 .2em
151
- :display inline-block
152
- .highlight code
153
- :border none
154
- :background-color $codebackground
155
-
156
- /* Miscleanous */
157
- span.tweet
158
- :float right
159
- :margin-top 5px
160
- a
161
- :text-decoration none
162
- :border-bottom none
163
- :font-style italic
164
-
165
- .author
166
- :font-size 80%
167
- :color $darkgrey
168
- :margin 0 0 1em 0
169
- :float right
170
- a
171
- :text-decoration none
172
- :border-bottom none
173
- :font-style italic
174
-
175
- #disqus_thread
176
- :margin 2em 0 0 0
177
-
178
- .clearer
179
- :clear both
180
-
@@ -1,17 +0,0 @@
1
- body {
2
- background-color: black;
3
- color: #222;
4
- font-family: Trebuchet MS; /* The font used for the main apps */
5
- font-size: 16px;
6
- margin: 0;
7
- padding: 0;
8
- }
9
-
10
- .site {
11
- width: 810px;
12
- }
13
-
14
- .site img{
15
- width: 140px;
16
- }
17
-
@@ -1,246 +0,0 @@
1
- /* line 13, ../sass/site.sass */
2
- * {
3
- margin: 5px 0 0 0;
4
- padding: 0;
5
- }
6
-
7
- /* line 17, ../sass/site.sass */
8
- html, body {
9
- height: 100%;
10
- }
11
-
12
- /* line 20, ../sass/site.sass */
13
- body {
14
- background-color: white;
15
- font: 400 1em trebuchet ms, arial, clean;
16
- text-align: center;
17
- }
18
-
19
- /* line 25, ../sass/site.sass */
20
- h1, h2, h3, h4, h5, h6 {
21
- font-size: 110%;
22
- margin: 30px 0 10px 0;
23
- text-transform: uppercase;
24
- }
25
-
26
- /* line 30, ../sass/site.sass */
27
- h3 {
28
- margin: 20px 0 10px 0;
29
- }
30
-
31
- /* line 33, ../sass/site.sass */
32
- h1 {
33
- font-size: 120%;
34
- }
35
-
36
- /* line 36, ../sass/site.sass */
37
- h2, h3, h4, h5, h6 {
38
- font-size: 110%;
39
- }
40
-
41
- /* line 39, ../sass/site.sass */
42
- #sitetitle {
43
- font: 400 3.5em arial, sans-serif;
44
- letter-spacing: -0.1em;
45
- text-transform: uppercase;
46
- height: 1.15em;
47
- }
48
- /* line 44, ../sass/site.sass */
49
- #sitetitle a {
50
- color: #bdbbbb;
51
- text-decoration: none;
52
- border-bottom: 0px;
53
- }
54
-
55
- /* line 49, ../sass/site.sass */
56
- #tagseperator {
57
- font-size: 3.5em;
58
- color: #bdbbbb;
59
- }
60
-
61
- /* line 53, ../sass/site.sass */
62
- #tagline {
63
- font-size: 0.9em;
64
- color: #bdbbbb;
65
- }
66
-
67
- /* line 57, ../sass/site.sass */
68
- a#navlink, a#archivelink {
69
- padding-right: 10px;
70
- text-transform: uppercase;
71
- border-bottom: 0px dotted #0048a2;
72
- }
73
-
74
- /* line 62, ../sass/site.sass */
75
- a#navlink:hover {
76
- color: #3366cc;
77
- }
78
-
79
- /* line 65, ../sass/site.sass */
80
- a#archivelink {
81
- float: right;
82
- }
83
-
84
- /* line 68, ../sass/site.sass */
85
- .title {
86
- margin-bottom: 10px;
87
- }
88
-
89
- /* line 71, ../sass/site.sass */
90
- .nav {
91
- margin-bottom: 40px;
92
- border-bottom: 2px solid #bdbbbb;
93
- }
94
-
95
- /* line 75, ../sass/site.sass */
96
- p {
97
- margin: 1em 0;
98
- }
99
-
100
- /* line 78, ../sass/site.sass */
101
- a {
102
- color: #0048a2;
103
- text-decoration: none;
104
- border-bottom: 1px dotted #0048a2;
105
- }
106
-
107
- /* line 83, ../sass/site.sass */
108
- a.blog {
109
- border-bottom: 0px;
110
- }
111
-
112
- /* line 86, ../sass/site.sass */
113
- a.blog-small {
114
- border-bottom: 0px;
115
- float: left;
116
- margin-left: 10px;
117
- }
118
-
119
- /* line 91, ../sass/site.sass */
120
- a:hover {
121
- color: #3366cc;
122
- border-bottom: none;
123
- }
124
-
125
- /* line 95, ../sass/site.sass */
126
- table {
127
- font-size: inherit;
128
- font: 100%;
129
- }
130
-
131
- /* line 99, ../sass/site.sass */
132
- img {
133
- border: 0px dotted #dddddd;
134
- }
135
-
136
- /* line 103, ../sass/site.sass */
137
- ul li, ol li {
138
- margin-left: 40px;
139
- }
140
-
141
- /* my posts */
142
- /* line 107, ../sass/site.sass */
143
- ul.posts {
144
- margin: 1em;
145
- list-style-type: none;
146
- }
147
- /* line 110, ../sass/site.sass */
148
- ul.posts li {
149
- line-height: 1.6em;
150
- }
151
- /* line 112, ../sass/site.sass */
152
- ul.posts span {
153
- font-size: 80%;
154
- color: #bdbbbb;
155
- }
156
-
157
- /* line 116, ../sass/site.sass */
158
- ul.archiv {
159
- margin: 1em;
160
- list-style-type: none;
161
- }
162
- /* line 119, ../sass/site.sass */
163
- ul.archiv li {
164
- line-height: 1.5em;
165
- margin-left: 15px;
166
- }
167
-
168
- /* line 123, ../sass/site.sass */
169
- .site {
170
- font-size: 100%;
171
- text-align: justify;
172
- width: 40em;
173
- margin: 0 auto 3em auto;
174
- line-height: 1.4em;
175
- }
176
- /* line 130, ../sass/site.sass */
177
- .site .footer {
178
- font-size: 70%;
179
- border-top: 4px solid #bdbbbb;
180
- margin-top: 10px;
181
- }
182
- /* line 134, ../sass/site.sass */
183
- .site .footer a {
184
- text-decoration: none;
185
- border-bottom: 0px dotted #0048a2;
186
- }
187
-
188
- /* Posts */
189
- /* line 140, ../sass/site.sass */
190
- #post pre, .site pre {
191
- border: 1px solid #dddddd;
192
- background-color: #eeeeff;
193
- font: 15px helvetica, arial, clean, sans-serif;
194
- padding: 0 0.4em;
195
- white-space: pre-wrap;
196
- }
197
- /* line 146, ../sass/site.sass */
198
- #post code, .site code {
199
- font-size: 105%;
200
- border: 1px dotted #888888;
201
- background-color: #ffff88;
202
- padding: 0 0.2em;
203
- display: inline-block;
204
- }
205
- /* line 152, ../sass/site.sass */
206
- #post .highlight code, .site .highlight code {
207
- border: none;
208
- background-color: #eeeeff;
209
- }
210
-
211
- /* Miscleanous */
212
- /* line 157, ../sass/site.sass */
213
- span.tweet {
214
- float: right;
215
- margin-top: 5px;
216
- }
217
- /* line 160, ../sass/site.sass */
218
- span.tweet a {
219
- text-decoration: none;
220
- border-bottom: none;
221
- font-style: italic;
222
- }
223
-
224
- /* line 165, ../sass/site.sass */
225
- .author {
226
- font-size: 80%;
227
- color: #bdbbbb;
228
- margin: 0 0 1em 0;
229
- float: right;
230
- }
231
- /* line 170, ../sass/site.sass */
232
- .author a {
233
- text-decoration: none;
234
- border-bottom: none;
235
- font-style: italic;
236
- }
237
-
238
- /* line 175, ../sass/site.sass */
239
- #disqus_thread {
240
- margin: 2em 0 0 0;
241
- }
242
-
243
- /* line 178, ../sass/site.sass */
244
- .clearer {
245
- clear: both;
246
- }
@@ -1,60 +0,0 @@
1
- .highlight { background: #ffffff; }
2
- .highlight .c { color: #999988; font-style: italic } /* Comment */
3
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
- .highlight .k { font-weight: bold } /* Keyword */
5
- .highlight .o { font-weight: bold } /* Operator */
6
- .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
- .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
- .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
- .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
- .highlight .ge { font-style: italic } /* Generic.Emph */
13
- .highlight .gr { color: #aa0000 } /* Generic.Error */
14
- .highlight .gh { color: #999999 } /* Generic.Heading */
15
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
- .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
- .highlight .go { color: #888888 } /* Generic.Output */
18
- .highlight .gp { color: #555555 } /* Generic.Prompt */
19
- .highlight .gs { font-weight: bold } /* Generic.Strong */
20
- .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
- .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
- .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
- .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
- .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26
- .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
- .highlight .m { color: #009999 } /* Literal.Number */
28
- .highlight .s { color: #d14 } /* Literal.String */
29
- .highlight .na { color: #008080 } /* Name.Attribute */
30
- .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
- .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
- .highlight .no { color: #008080 } /* Name.Constant */
33
- .highlight .ni { color: #800080 } /* Name.Entity */
34
- .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
- .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
- .highlight .nn { color: #555555 } /* Name.Namespace */
37
- .highlight .nt { color: #000080 } /* Name.Tag */
38
- .highlight .nv { color: #008080 } /* Name.Variable */
39
- .highlight .ow { font-weight: bold } /* Operator.Word */
40
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
- .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
- .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
- .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
- .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
- .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
- .highlight .sc { color: #d14 } /* Literal.String.Char */
47
- .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
- .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
- .highlight .se { color: #d14 } /* Literal.String.Escape */
50
- .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
- .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
- .highlight .sx { color: #d14 } /* Literal.String.Other */
53
- .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
- .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
- .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
- .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
- .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
- .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
- .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */