aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/less/base.less
diff options
context:
space:
mode:
authorNatalia Ventre <natalia.ventre@gmail.com>2012-02-08 21:58:21 -0200
committerNatalia Ventre <natalia.ventre@gmail.com>2012-02-08 21:58:21 -0200
commit612ca2d53693f2ba41b6a654a1dc554238787a5a (patch)
tree6db0daf0c21f5f2a8f2f953277b1ba2eedc55648 /Just-Read/less/base.less
parent7fc66f3071afb214d26bf0a7b20048a751f223db (diff)
downloadpelican-themes-612ca2d53693f2ba41b6a654a1dc554238787a5a.zip
pelican-themes-612ca2d53693f2ba41b6a654a1dc554238787a5a.tar.gz
pelican-themes-612ca2d53693f2ba41b6a654a1dc554238787a5a.tar.bz2
added Just Read theme
Diffstat (limited to 'Just-Read/less/base.less')
-rw-r--r--Just-Read/less/base.less68
1 files changed, 68 insertions, 0 deletions
diff --git a/Just-Read/less/base.less b/Just-Read/less/base.less
new file mode 100644
index 0000000..7d31c62
--- /dev/null
+++ b/Just-Read/less/base.less
@@ -0,0 +1,68 @@
+// Credits: [HTML Boilerplate[(https://github.com/h5bp/html5-boilerplate)
+
+
+// HTML5 display definitions
+
+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, time {
+ display: block;
+}
+
+// Base
+
+html {
+ font-size: 100%;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+
+body{
+ margin: 0;
+}
+
+// Remove text-shadow in selection highlight: h5bp.com/i
+
+::-moz-selection {
+ background: #fd7; // This color should play well with any design
+ color: #000;
+ text-shadow: none;
+}
+::selection {
+ background: #fd7;
+ color: #000;
+ text-shadow: none;
+}
+
+// Improve readability when focused and hovered in all browsers: h5bp.com/h
+
+a:hover, a:active {
+ outline: 0;
+}
+
+// Lists
+
+ul, ol{
+ margin: 0;
+ padding: 0;
+}
+
+// Embedded content
+
+img {
+ border: 0;
+ -ms-interpolation-mode: bicubic;
+ vertical-align: middle;
+}
+
+// Contain floats: h5bp.com/q
+
+.clearfix:before, .clearfix:after {
+ content: "";
+ display: table;
+}
+.clearfix:after {
+ clear: both;
+}
+.clearfix {
+ *zoom: 1;
+} \ No newline at end of file