From 634a859bc8d9e4bb33b15c6668168adc647992d5 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 18:33:16 +0200 Subject: White links in header. --- local.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/local.css b/local.css index 165c957..80198ab 100644 --- a/local.css +++ b/local.css @@ -9,6 +9,12 @@ padding: 10px 20px 0; } +div.header a, +div.header a:hover { + text-decoration: none; + color: white +} + div.actions ul { border-bottom: 0; background-color: green; -- cgit v1.2.3 From ea029d14be44518a4336b05ca02fce85092ebee8 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 18:35:13 +0200 Subject: Recreate underline links in header. --- local.css | 1 - 1 file changed, 1 deletion(-) diff --git a/local.css b/local.css index 80198ab..28f1ebb 100644 --- a/local.css +++ b/local.css @@ -11,7 +11,6 @@ div.header a, div.header a:hover { - text-decoration: none; color: white } -- cgit v1.2.3 From 81a831377dfe819ef933f528179689eb78157708 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 18:41:07 +0200 Subject: White links in pageinfo. --- local.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/local.css b/local.css index 28f1ebb..831b996 100644 --- a/local.css +++ b/local.css @@ -44,6 +44,15 @@ div#topbar a:visited { color: white; } +div#backlinks { + margin: 0; +} + +div#backlinks a, +div#backlinks a:hover { + color: white; +} + div#pageinfo { margin: 15em 0 0; padding: 2px 20px; -- cgit v1.2.3 From 347ccc8bc06c79a0d1a6fdbac513a4e70d2720ec Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 18:46:25 +0200 Subject: Sidebar like blanksoegaard. --- local.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/local.css b/local.css index 831b996..999f7bb 100644 --- a/local.css +++ b/local.css @@ -53,6 +53,35 @@ div#backlinks a:hover { color: white; } +DIV#sidebar { + float: left; + margin-top: 6em; + margin-left: 2%; + width: 16%; + padding: 0px; + color: Black; + text-transform: lowercase; + font-weight: bold; +} +DIV#sidebar UL { + margin: 0px; + padding: 0px; +} +DIV#sidebar UL LI { + line-height: 2; + list-style-type: none; +} +DIV#sidebar UL LI SPAN.selflink { + color: green; +} +DIV#sidebar UL UL LI { + margin-left: 10%; +} +DIV#sidebar A { + text-decoration: none; +} + + div#pageinfo { margin: 15em 0 0; padding: 2px 20px; -- cgit v1.2.3 From 41e108a19404e1ffe67a1d5f4123caee32124fae Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 18:57:08 +0200 Subject: Backlinks invisible. --- local.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/local.css b/local.css index 999f7bb..14fa39c 100644 --- a/local.css +++ b/local.css @@ -81,6 +81,9 @@ DIV#sidebar A { text-decoration: none; } +div#backlinks { + display: none; +} div#pageinfo { margin: 15em 0 0; -- cgit v1.2.3 From e6337a3b25cb7cb1b9e96672d10396535957d721 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:02:54 +0200 Subject: Green links. --- local.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/local.css b/local.css index 14fa39c..3e8ddd7 100644 --- a/local.css +++ b/local.css @@ -3,6 +3,12 @@ /* Add local styling here, instead of modifying style.css. */ +a, +a:hover, +a:visited { + color: green; +} + .header { background-color: green; color: white; -- cgit v1.2.3 From ccbbd42a841262cfbbd97560e088aad6b627a1e9 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:05:28 +0200 Subject: Underline hover in sidebar, black selflink. --- local.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/local.css b/local.css index 3e8ddd7..731798a 100644 --- a/local.css +++ b/local.css @@ -65,7 +65,6 @@ DIV#sidebar { margin-left: 2%; width: 16%; padding: 0px; - color: Black; text-transform: lowercase; font-weight: bold; } @@ -78,14 +77,11 @@ DIV#sidebar UL LI { list-style-type: none; } DIV#sidebar UL LI SPAN.selflink { - color: green; + color: black; } DIV#sidebar UL UL LI { margin-left: 10%; } -DIV#sidebar A { - text-decoration: none; -} div#backlinks { display: none; -- cgit v1.2.3 From 556c4ffa4e4be1fb54f0e913e922b1754e05b4c5 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:08:13 +0200 Subject: Dark grey body text. --- local.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/local.css b/local.css index 731798a..586ca2e 100644 --- a/local.css +++ b/local.css @@ -2,6 +2,9 @@ /* Add local styling here, instead of modifying style.css. */ +body { + color: darkgrey; +} a, a:hover, -- cgit v1.2.3 From c996997607c0d6a8a490274c6d6ab86381672dab Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:13:11 +0200 Subject: Dim grey body text (trying). --- local.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local.css b/local.css index 586ca2e..0338b02 100644 --- a/local.css +++ b/local.css @@ -2,8 +2,8 @@ /* Add local styling here, instead of modifying style.css. */ -body { - color: darkgrey; +.body { + color: dimgrey; } a, -- cgit v1.2.3 From 5a2f4bcd4fac5eca84e0b44d636795be82a6df7b Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:17:44 +0200 Subject: Dim grey body text (still trying). --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.css b/local.css index 0338b02..0801040 100644 --- a/local.css +++ b/local.css @@ -2,7 +2,7 @@ /* Add local styling here, instead of modifying style.css. */ -.body { +body { color: dimgrey; } -- cgit v1.2.3 From e36b5aaa17a9bb9fb20d2f5f65b62ad024918d2f Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 19:25:05 +0200 Subject: Dim grey p (still trying). --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.css b/local.css index 0801040..7f02385 100644 --- a/local.css +++ b/local.css @@ -2,7 +2,7 @@ /* Add local styling here, instead of modifying style.css. */ -body { +p { color: dimgrey; } -- cgit v1.2.3 From 5b0aeeeff19cca87e85e0f232bd729935478ef37 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 20:11:02 +0200 Subject: Remove dimgrey from bodytext, links normal, not bold. --- local.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/local.css b/local.css index 7f02385..2d44f45 100644 --- a/local.css +++ b/local.css @@ -2,13 +2,10 @@ /* Add local styling here, instead of modifying style.css. */ -p { - color: dimgrey; -} - a, a:hover, a:visited { + font-weight: normal; color: green; } -- cgit v1.2.3 From 3a2841683324923990c33f8d04c146b8b7a6d573 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 20:13:29 +0200 Subject: Links bold in topbar. --- local.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/local.css b/local.css index 2d44f45..2627018 100644 --- a/local.css +++ b/local.css @@ -17,7 +17,7 @@ a:visited { div.header a, div.header a:hover { - color: white + color: white; } div.actions ul { @@ -40,6 +40,7 @@ div#topbar ol li { line-height: 2em; background-color: green; color: white; + font-weight: bold; margin-top: 0; margin-bottom: 0; } -- cgit v1.2.3 From 7378055e231e5c5b1ad73115851b3886afdc0ca4 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 20:36:40 +0200 Subject: Sidebar space (experimental). --- local.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/local.css b/local.css index 2627018..fd2b7a2 100644 --- a/local.css +++ b/local.css @@ -60,7 +60,12 @@ div#backlinks a:hover { color: white; } -DIV#sidebar { +div#content { + margin: 0 10%; + max-width: 67em; +} + +div#sidebar { float: left; margin-top: 6em; margin-left: 2%; @@ -69,18 +74,18 @@ DIV#sidebar { text-transform: lowercase; font-weight: bold; } -DIV#sidebar UL { +div#sidebar ul { margin: 0px; padding: 0px; } -DIV#sidebar UL LI { +div#sidebar ul li { line-height: 2; list-style-type: none; } -DIV#sidebar UL LI SPAN.selflink { +div#sidebar ul li span.selflink { color: black; } -DIV#sidebar UL UL LI { +DIV#sidebar ul ul li { margin-left: 10%; } -- cgit v1.2.3 From 3576bdb3980d868db516813e83f966afc6b965b0 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 20:42:34 +0200 Subject: Farbar border (experimental). --- local.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/local.css b/local.css index fd2b7a2..3d7e4cc 100644 --- a/local.css +++ b/local.css @@ -85,10 +85,17 @@ div#sidebar ul li { div#sidebar ul li span.selflink { color: black; } -DIV#sidebar ul ul li { +div#sidebar ul ul li { margin-left: 10%; } +div#farbar { + float: right; + list-style-type: none; + border: 1px; + border-color: green; +} + div#backlinks { display: none; } -- cgit v1.2.3 From f4677b9a844f20d69f5ef5b60667431e9112001e Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:00:38 +0200 Subject: Farbar experiments. --- local.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/local.css b/local.css index 3d7e4cc..85e0cce 100644 --- a/local.css +++ b/local.css @@ -91,9 +91,15 @@ div#sidebar ul ul li { div#farbar { float: right; - list-style-type: none; - border: 1px; + border-style: solid; + border-width: 1px; border-color: green; + margin: 20px; + padding: 20px; +} + +div#farbar ul li { + list-style-type: none; } div#backlinks { -- cgit v1.2.3 From 9a66f5a059b005d5a934b6790c92fd3e624087a5 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:08:21 +0200 Subject: Sidebar font bold. --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.css b/local.css index 85e0cce..dc916b4 100644 --- a/local.css +++ b/local.css @@ -72,7 +72,6 @@ div#sidebar { width: 16%; padding: 0px; text-transform: lowercase; - font-weight: bold; } div#sidebar ul { margin: 0px; @@ -81,6 +80,7 @@ div#sidebar ul { div#sidebar ul li { line-height: 2; list-style-type: none; + font-weight: bold; } div#sidebar ul li span.selflink { color: black; -- cgit v1.2.3 From 358bbd5caba94265d61889e52f8cdadd41d3b1f2 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:15:25 +0200 Subject: Sidebar font bold (retry). --- local.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/local.css b/local.css index dc916b4..67b5e72 100644 --- a/local.css +++ b/local.css @@ -80,6 +80,11 @@ div#sidebar ul { div#sidebar ul li { line-height: 2; list-style-type: none; +} + +div#sidebar ul li a, +div#sidebar ul li a:hover, +div#sidebar ul li span.selflink { font-weight: bold; } div#sidebar ul li span.selflink { -- cgit v1.2.3 From 2b942dfa5f16fee6207d5aa762a65f73fb4bb6b4 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:21:26 +0200 Subject: Topbar font bold (don't know which one). --- local.css | 1 + 1 file changed, 1 insertion(+) diff --git a/local.css b/local.css index 67b5e72..0ea83b3 100644 --- a/local.css +++ b/local.css @@ -12,6 +12,7 @@ a:visited { .header { background-color: green; color: white; + font-weight: bold; padding: 10px 20px 0; } -- cgit v1.2.3 From 3847ebe7ab84f29de7bad9e7f720a975fbd002ea Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:26:43 +0200 Subject: Header backlink bold. --- local.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/local.css b/local.css index 0ea83b3..2d047f3 100644 --- a/local.css +++ b/local.css @@ -12,9 +12,11 @@ a:visited { .header { background-color: green; color: white; - font-weight: bold; padding: 10px 20px 0; } +div.header span.parentlink { + font-weight: bold; +} div.header a, div.header a:hover { -- cgit v1.2.3 From fb4ded5bde21f04d4eb443ae52255230e65f91ed Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:28:17 +0200 Subject: Header parentlink bold. --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.css b/local.css index 2d047f3..a59f820 100644 --- a/local.css +++ b/local.css @@ -14,7 +14,7 @@ a:visited { color: white; padding: 10px 20px 0; } -div.header span.parentlink { +.header span.parentlink { font-weight: bold; } -- cgit v1.2.3 From fc4afc3fb00eecb2b172d9f1db164e690583b7ac Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:29:55 +0200 Subject: S missing i parentlinks. --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.css b/local.css index a59f820..00da1ab 100644 --- a/local.css +++ b/local.css @@ -14,7 +14,7 @@ a:visited { color: white; padding: 10px 20px 0; } -.header span.parentlink { +.header span.parentlinks { font-weight: bold; } -- cgit v1.2.3 From 06f5421ec5900721440e04ddef70a69a2089d8fd Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 22 Oct 2008 21:38:53 +0200 Subject: Parentlinks bold in all variations. --- local.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/local.css b/local.css index 00da1ab..46c8b12 100644 --- a/local.css +++ b/local.css @@ -14,7 +14,9 @@ a:visited { color: white; padding: 10px 20px 0; } -.header span.parentlinks { +.header span.parentlinks, +.header span.parentlinks a, +.header span.parentlinks a:hover { font-weight: bold; } -- cgit v1.2.3