diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-11-23 21:35:08 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-11-23 21:35:08 +0100 |
commit | a4fdf8bf53f272d5abddb616810fabe79e7403fb (patch) | |
tree | 966e58b352e00ea10b2b9dbab7e20355d646f786 /sass/plugins | |
parent | e255a58bc53ef5c742a9dc5fa022f06308319694 (diff) | |
download | octopress-theme-jeyzu-a4fdf8bf53f272d5abddb616810fabe79e7403fb.zip octopress-theme-jeyzu-a4fdf8bf53f272d5abddb616810fabe79e7403fb.tar.gz |
add gallery sass plugin
Diffstat (limited to 'sass/plugins')
-rw-r--r-- | sass/plugins/_gallery.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sass/plugins/_gallery.scss b/sass/plugins/_gallery.scss new file mode 100644 index 0000000..29a3415 --- /dev/null +++ b/sass/plugins/_gallery.scss @@ -0,0 +1,14 @@ +div.gallery { + ul { + list-style-type: none; + li { + float: left; + padding: 5px; + display: block; + } + } + br { + clear:both; + } +} + |