From 7392c5e1f4d08081a1bc739e24d80ae745c93c03 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 30 Dec 2012 13:51:12 +0530 Subject: styling/style.css update -- added subtle border to div.code block --- styling/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'styling/style.css') diff --git a/styling/style.css b/styling/style.css index d6a533a..9b6eaa2 100644 --- a/styling/style.css +++ b/styling/style.css @@ -6,7 +6,7 @@ */ article { - font-size:1.50em; + font-size:1.50em; /* 1.88 */ font-family:"Palatino Linotype","Book Antiqua",Palatino,"URW Palladio L",FreeSerif,serif; color:#787878; margin-left:auto; @@ -69,7 +69,7 @@ div.code { background-color:#fcfcfc; margin-left:auto; margin-right:auto; - border:1px; + border:1px solid #f0f0f0; padding:5px; width:70%; } -- cgit v1.2.3 From 67a2c215c1a3b5a4d0d6919fcf1e17814d755513 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 31 Dec 2012 23:32:30 +0530 Subject: stylesheet updated -- links are more prominent now. --- styling/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'styling/style.css') diff --git a/styling/style.css b/styling/style.css index 9b6eaa2..1929ca3 100644 --- a/styling/style.css +++ b/styling/style.css @@ -69,6 +69,8 @@ div.code { background-color:#fcfcfc; margin-left:auto; margin-right:auto; + margin-top:5px; + margin-bottom:5px; border:1px solid #f0f0f0; padding:5px; width:70%; @@ -108,7 +110,7 @@ a:link,a:visited { -webkit-transition:border-bottom 0.3s, color 0.3s; -o-transition:border-bottom 0.3s, color 0.3s; color:#686868; - border-bottom:1px dotted #d9d9d9; + border-bottom:1px solid #d9d9d9; text-decoration:none; } a:hover,a:active { @@ -154,7 +156,7 @@ div.lastupdate { } div.source { - font-size:0.4em; + font-size:0.5em; font-family:monospace; text-align:center; color:#989898; -- cgit v1.2.3 From aae6c1097a6e5345a011cc2ce066cdc25188f6ad Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 26 Jun 2013 22:48:31 +0530 Subject: modified: parsers/CodeBlocks.java ( code blocks are wrapped around
 element)

---
 styling/style.css | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

(limited to 'styling/style.css')

diff --git a/styling/style.css b/styling/style.css
index 1929ca3..13dd629 100644
--- a/styling/style.css
+++ b/styling/style.css
@@ -63,9 +63,13 @@ span.monospace {
     font-family:monospace;
 }
 
-div.code {
+pre {
+	display:block;
 	font-family:monospace;
-	font-size:0.625em;
+	font-size:0.6em;
+	word-break:break-all;
+	word-wrap:break-word;
+	white-space:pre-wrap;
 	background-color:#fcfcfc;
     margin-left:auto;
     margin-right:auto;
-- 
cgit v1.2.3


From 83e1bf5f0e299b9d99c8e2b01aacd5cda9a37d1c Mon Sep 17 00:00:00 2001
From: rsiddharth 
Date: Sat, 29 Jun 2013 19:33:58 +0530
Subject: modified: styling/style.css (insignificant items' opacity is set to
 0.3, opacity becomes 1.0 when hovered)

---
 styling/style.css | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)

(limited to 'styling/style.css')

diff --git a/styling/style.css b/styling/style.css
index 13dd629..dbeabf0 100644
--- a/styling/style.css
+++ b/styling/style.css
@@ -14,7 +14,7 @@ article {
     border:1px; 
     padding:5px;
     width:97%;
-    box-shadow: 1px 1.5px 3px 0.5px #bababa;	
+    box-shadow: 1px 1.5px 3px 0.5px #bababa;
 }
 
 h1, h2, h3, h4, h5 {
@@ -66,7 +66,7 @@ span.monospace {
 pre {
 	display:block;
 	font-family:monospace;
-	font-size:0.6em;
+	font-size:0.625em;
 	word-break:break-all;
 	word-wrap:break-word;
 	white-space:pre-wrap;
@@ -127,6 +127,9 @@ div.back {
     font-size:0.7em;
     font-family:junicode,"Palatino Linotype","Book Antiqua",Palatino,"URW Palladio L",FreeSerif,serif;
     text-align:center;
+	transition: opacity 1s;
+	-webkit-transition: opacity 1s;
+	opacity: 0.3;
     color:#989898;
     margin-left:auto;
     margin-right:auto;
@@ -134,6 +137,9 @@ div.back {
     padding:5px;
     width:7%;
 }
+div.back:hover {
+	opacity: 1.0;
+}
 
 footer {
     font-size:0.8em;
@@ -151,6 +157,9 @@ div.lastupdate {
 	font-size:0.6em;
 	font-family:"Palatino Linotype","Book Antiqua",Palatino,"URW Palladio L",FreeSerif,serif;
     text-align:center;
+	transition: opacity 1s;
+	-webkit-transition: opacity 1s;
+	opacity:0.3;
     color:#989898;
     margin-left:auto;
     margin-right:auto;
@@ -159,10 +168,17 @@ div.lastupdate {
     width:40%;
 }
 
+div.lastupdate:hover {
+	opacity: 1.0;
+}
+
 div.source {
 	font-size:0.5em;
 	font-family:monospace;
     text-align:center;
+	transition: opacity 1s;
+	-webkit-transition: opacity 1s;
+	opacity: 0.3;
     color:#989898;
     margin-left:auto;
     margin-right:auto;
@@ -170,17 +186,26 @@ div.source {
     padding:5px;
     width:40%;
 }
+div.source:hover {
+	opacity: 1.0;
+}
 
 div.scruf {
     font-size:0.9em;
     font-family:"Palatino Linotype","Book Antiqua",Palatino,"URW Palladio L",FreeSerif,serif;
     text-align:center;
+	transition: opacity 1s;
+	-webkit-transition: opacity 1s;
+	opacity: 0.3;
     color:#bcbcbc;
     margin-left:auto;
     margin-right:auto;
     border:1px; 
     padding:5px;
     width:40%;
+}
 
+div.scruf:hover {
+	opacity: 1.0;
 }
 
-- 
cgit v1.2.3