From c04cbde81121303bc94ead8d37ed31942004797a Mon Sep 17 00:00:00 2001 From: Caoimhe Chaos Date: Thu, 25 Jul 2013 01:54:39 +0200 Subject: Initial commit WebCommit --- local.css | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 local.css (limited to 'local.css') diff --git a/local.css b/local.css new file mode 100644 index 00000000..a0dec8cf --- /dev/null +++ b/local.css @@ -0,0 +1,3 @@ +/* ikiwiki local style sheet */ + +/* Add local styling here, instead of modifying style.css. */ -- cgit v1.2.1 From 2ffd1b722c39a9c9cb0294581e22042dc38aa070 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 16:40:39 +0200 Subject: table css --- local.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index a0dec8cf..631a41f5 100644 --- a/local.css +++ b/local.css @@ -1,3 +1,27 @@ /* ikiwiki local style sheet */ /* Add local styling here, instead of modifying style.css. */ + +/* Tables */ +table +{ + padding:0px; +} + +th +{ + text-align:center; + vertical-align:top; +} + +tr +{ + font-weight:normal; +} + +td +{ + padding:0px; + text-align:left; + vertical-align:top; +} -- cgit v1.2.1 From a0094f26ebf85e0ac8cb9bf7b3f0bf15ad1bd0e1 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 16:42:08 +0200 Subject: css design table header nach links verschoben --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'local.css') diff --git a/local.css b/local.css index 631a41f5..3736257e 100644 --- a/local.css +++ b/local.css @@ -10,7 +10,7 @@ table th { - text-align:center; + text-align:left; vertical-align:top; } -- cgit v1.2.1 From 18dfb8f26cc1a63496dd9f5da2c98eeaba94446a Mon Sep 17 00:00:00 2001 From: Charly Root Date: Thu, 25 Jul 2013 17:01:45 +0200 Subject: Whatever. --- local.css | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 local.css (limited to 'local.css') diff --git a/local.css b/local.css old mode 100644 new mode 100755 -- cgit v1.2.1 From c739b121c38ae9e026a0469465043021e2efb165 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 17:10:05 +0200 Subject: added table border --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index 3736257e..fb04d456 100644 --- a/local.css +++ b/local.css @@ -6,6 +6,7 @@ table { padding:0px; + border: 1px; } th -- cgit v1.2.1 From 9b6159063e16376db37d4346e2a8c8e109c0584e Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 17:31:36 +0200 Subject: let's see if this table css will work --- local.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index fb04d456..c517d827 100755 --- a/local.css +++ b/local.css @@ -5,13 +5,17 @@ /* Tables */ table { + color:#000000; padding:0px; - border: 1px; } th { - text-align:left; + color:#000000; + background:#E6E6E6; + font-weight:bold; + padding:5px 10px; + text-align:center; vertical-align:top; } @@ -20,9 +24,16 @@ tr font-weight:normal; } +tr:nth-child(odd) td +{ +background:#E6E6E6; +} + td { - padding:0px; + background:#ffffff; + padding:2px 10px; text-align:left; vertical-align:top; } + -- cgit v1.2.1 From 058bf2a85b93f3403a709d53691ba47be479754e Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 17:46:14 +0200 Subject: working table layout --- local.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index c517d827..7c8cfe94 100755 --- a/local.css +++ b/local.css @@ -11,10 +11,10 @@ table th { - color:#000000; + color:#CCC; background:#E6E6E6; font-weight:bold; - padding:5px 10px; + padding:0.5em 1em; text-align:center; vertical-align:top; } @@ -26,13 +26,18 @@ tr tr:nth-child(odd) td { -background:#E6E6E6; + background:#E6E6E6; } +tr:nth-child(even) td +{ + background:#CCC; +} + td { background:#ffffff; - padding:2px 10px; + padding:0.5em 1em; text-align:left; vertical-align:top; } -- cgit v1.2.1 From 87741caccd6dcc553aea5733f8510f21b49a1c5d Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Thu, 25 Jul 2013 17:47:25 +0200 Subject: Neu: nun tabellen auch mit richtiger schriftfarbe im header --- local.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 7c8cfe94..46334bd8 100755 --- a/local.css +++ b/local.css @@ -11,8 +11,8 @@ table th { - color:#CCC; - background:#E6E6E6; + color:#000; + background:#CCC; font-weight:bold; padding:0.5em 1em; text-align:center; -- cgit v1.2.1 From 4b777f8c4eefe08caa562492b0bb9b82bf4f2bca Mon Sep 17 00:00:00 2001 From: Caoimhe Chaos Date: Thu, 25 Jul 2013 22:36:03 +0000 Subject: Choose some less ancient-looking font settings. --- local.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index 46334bd8..e3942943 100755 --- a/local.css +++ b/local.css @@ -2,6 +2,27 @@ /* Add local styling here, instead of modifying style.css. */ +/* Fonts */ +body { + font-family: "Trebuchet MS", + "Luxi Sans", + "Bitstream Vera Sans", + "Tahoma", + "Verdana", + "Helvetica", + "Arial", + sans-serif; + font-size: 100.01%; +} + +pre, tt, code { + font-family: "Bitstream Vera Sans Mono", + "Luxi Mono", + "Courier New", + "Courier", + monospace; +} + /* Tables */ table { -- cgit v1.2.1 From 3f31cba30fcaa2c08a7e7d1c20cbc2b5f48af16b Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 3 Aug 2013 01:04:49 +0200 Subject: some basic css styles --- local.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index e3942943..bbb7aa27 100755 --- a/local.css +++ b/local.css @@ -23,6 +23,33 @@ pre, tt, code { monospace; } +/* Div with the full Header */ +.pageheader { +background-color: #3e5f81; +} +.pageheader a { +color:#fff; +} + +/* Div with path in .pageheader */ +.header { +padding-bottom: 0.5em; +padding-top: 0.5em; +background-color: #fff; +} +.header a { +color: #3E5F81; +} +.header a:hover { +color: #d52; +} + +/* Actions in the Header */ +.actions { +color: #FFF; +} + + /* Tables */ table { -- cgit v1.2.1 From d90ac8b8be2e33a3ffbf84674d37d1fe7af4cf07 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 3 Aug 2013 01:21:05 +0200 Subject: basic footer styling --- local.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index bbb7aa27..ce2b3f47 100755 --- a/local.css +++ b/local.css @@ -49,6 +49,14 @@ color: #d52; color: #FFF; } +/* Footer */ +#backlinks { + color: #FFF; + background-color: #3E5F81; +} +#backlinks a { + color: #FFF; +} /* Tables */ table -- cgit v1.2.1 From 557de8d91099c500456b9529937cddd741786f24 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 3 Aug 2013 01:31:55 +0200 Subject: basic link styles --- local.css | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index ce2b3f47..d1df3414 100755 --- a/local.css +++ b/local.css @@ -23,6 +23,17 @@ pre, tt, code { monospace; } +/* Links */ +a { + color: #3E5F81; +} +a:hover { + color:#D52; +} +a:visited { + color:#D52; +} + /* Div with the full Header */ .pageheader { background-color: #3e5f81; -- cgit v1.2.1 From 744862cf61cd5006e20ddc9da0d5bbc36cc88f33 Mon Sep 17 00:00:00 2001 From: Caoimhe Chaos Date: Sat, 24 Aug 2013 19:34:03 +0200 Subject: Die Bilder fliessen sonst zu sehr in den Text. --- local.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index d1df3414..0ef866ed 100755 --- a/local.css +++ b/local.css @@ -109,3 +109,7 @@ td vertical-align:top; } +img.imgwithborder +{ + border: 1px solid #3e5f81; +} -- cgit v1.2.1 From 463a3aed396443a1093e3752242456405dc88a56 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:01:40 +0100 Subject: sidebar css --- local.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index 0ef866ed..f9f0d9a1 100755 --- a/local.css +++ b/local.css @@ -113,3 +113,9 @@ img.imgwithborder { border: 1px solid #3e5f81; } + +/* sidebar */ +#sidebar ul {font-family:helvetica,arial,sans-serif;margin:0;padding:0;width:10em;} +#sidebar ul li {margin:0;padding:0;list-style:none;margin:0 0 0.3em 0;} +#sidebar ul li a {text-decoration:none;display:block;padding:0.6em 0.6em 0 0.6em;color:white;background:#036;border-bottom:0.5em solid #036;} +#sidebar ul li a:hover {background:#369;border-bottom:0.5em solid #036;} -- cgit v1.2.1 From 4de12825170cad5454015a8196d9c105b3780ff9 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:06:22 +0100 Subject: class sidebar, not ID --- local.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index f9f0d9a1..e3ccad0a 100755 --- a/local.css +++ b/local.css @@ -115,7 +115,7 @@ img.imgwithborder } /* sidebar */ -#sidebar ul {font-family:helvetica,arial,sans-serif;margin:0;padding:0;width:10em;} -#sidebar ul li {margin:0;padding:0;list-style:none;margin:0 0 0.3em 0;} -#sidebar ul li a {text-decoration:none;display:block;padding:0.6em 0.6em 0 0.6em;color:white;background:#036;border-bottom:0.5em solid #036;} -#sidebar ul li a:hover {background:#369;border-bottom:0.5em solid #036;} +.sidebar ul {font-family:helvetica,arial,sans-serif;margin:0;padding:0;width:10em;} +.sidebar ul li {margin:0;padding:0;list-style:none;margin:0 0 0.3em 0;} +.sidebar ul li a {text-decoration:none;display:block;padding:0.6em 0.6em 0 0.6em;color:white;background:#036;border-bottom:0.5em solid #036;} +.sidebar ul li a:hover {background:#369;border-bottom:0.5em solid #036;} -- cgit v1.2.1 From db798f7a4d4af2eb5b50afa70406f8a311fd9afb Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:11:51 +0100 Subject: sidebar css color changes` --- local.css | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index e3ccad0a..427d6d47 100755 --- a/local.css +++ b/local.css @@ -115,7 +115,28 @@ img.imgwithborder } /* sidebar */ -.sidebar ul {font-family:helvetica,arial,sans-serif;margin:0;padding:0;width:10em;} -.sidebar ul li {margin:0;padding:0;list-style:none;margin:0 0 0.3em 0;} -.sidebar ul li a {text-decoration:none;display:block;padding:0.6em 0.6em 0 0.6em;color:white;background:#036;border-bottom:0.5em solid #036;} -.sidebar ul li a:hover {background:#369;border-bottom:0.5em solid #036;} +.sidebar ul { + margin:0; + padding:0; + width:10em; +} +.sidebar ul li { + margin:0; + padding:0; + list-style:none; + margin:0 0 0.3em 0; +} +.sidebar ul li a { + text-decoration:none; + display:block; + padding:0.6em 0.6em 0 0.6em; + color:white; + background:;#3e5f81; + border-bottom:0.5em + solid #036; +} +.sidebar ul li a:hover { + background:#369; + border-bottom:0.5em + solid #036; +} -- cgit v1.2.1 From 2a6c535e9bf2ebf4d57dcc3e47f29d8fc4bfa350 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:13:00 +0100 Subject: again --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index 427d6d47..4942099f 100755 --- a/local.css +++ b/local.css @@ -119,6 +119,7 @@ img.imgwithborder margin:0; padding:0; width:10em; + background:;#3e5f81; } .sidebar ul li { margin:0; -- cgit v1.2.1 From 0430460379faab91c9f2c73e23ffc342dc59668a Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:13:43 +0100 Subject: typo --- local.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 4942099f..1b2df360 100755 --- a/local.css +++ b/local.css @@ -119,7 +119,7 @@ img.imgwithborder margin:0; padding:0; width:10em; - background:;#3e5f81; + background:#3e5f81; } .sidebar ul li { margin:0; @@ -132,7 +132,7 @@ img.imgwithborder display:block; padding:0.6em 0.6em 0 0.6em; color:white; - background:;#3e5f81; + background:#3e5f81; border-bottom:0.5em solid #036; } -- cgit v1.2.1 From 7003455bdeb5879f4c252830a915984760768b73 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:26:23 +0100 Subject: besser --- local.css | 4 ---- 1 file changed, 4 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 1b2df360..8ce8a9a6 100755 --- a/local.css +++ b/local.css @@ -133,11 +133,7 @@ img.imgwithborder padding:0.6em 0.6em 0 0.6em; color:white; background:#3e5f81; - border-bottom:0.5em - solid #036; } .sidebar ul li a:hover { background:#369; - border-bottom:0.5em - solid #036; } -- cgit v1.2.1 From d67fc3a79fa94c50c5afa2f8500e850b9308e0db Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:38:08 +0100 Subject: . --- local.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 8ce8a9a6..6554df62 100755 --- a/local.css +++ b/local.css @@ -115,11 +115,13 @@ img.imgwithborder } /* sidebar */ +.sidebar { + background:#3e5f81; +} .sidebar ul { margin:0; padding:0; width:10em; - background:#3e5f81; } .sidebar ul li { margin:0; @@ -135,5 +137,6 @@ img.imgwithborder background:#3e5f81; } .sidebar ul li a:hover { - background:#369; + color: #000; + background-color: #fff; } -- cgit v1.2.1 From f9754ca95544b5d25962335b5fddb73b256fc447 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:41:05 +0100 Subject: yet another css change --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index 6554df62..d31ea05f 100755 --- a/local.css +++ b/local.css @@ -117,6 +117,7 @@ img.imgwithborder /* sidebar */ .sidebar { background:#3e5f81; + color: #FFF; } .sidebar ul { margin:0; -- cgit v1.2.1 From 2c09c933a8bdb23ed4e444984237fa580169729f Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:42:09 +0100 Subject: color: white --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index d31ea05f..74345049 100755 --- a/local.css +++ b/local.css @@ -129,6 +129,7 @@ img.imgwithborder padding:0; list-style:none; margin:0 0 0.3em 0; + color: #FFF; } .sidebar ul li a { text-decoration:none; -- cgit v1.2.1 From 46e0d0115d1a0a0dc64f6c74cb35a979f7b0f25b Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:47:27 +0100 Subject: =?UTF-8?q?einr=C3=BCckung=20liste?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- local.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 74345049..1a68add2 100755 --- a/local.css +++ b/local.css @@ -130,13 +130,12 @@ img.imgwithborder list-style:none; margin:0 0 0.3em 0; color: #FFF; + padding:0.6em 0.6em 0 0.6em; } .sidebar ul li a { text-decoration:none; display:block; - padding:0.6em 0.6em 0 0.6em; color:white; - background:#3e5f81; } .sidebar ul li a:hover { color: #000; -- cgit v1.2.1 From 0b400958c02ccf85878784abc9c97019b55e6483 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:53:16 +0100 Subject: links unterstreichen --- local.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'local.css') diff --git a/local.css b/local.css index 1a68add2..c2c6fd22 100755 --- a/local.css +++ b/local.css @@ -118,6 +118,7 @@ img.imgwithborder .sidebar { background:#3e5f81; color: #FFF; + border: 0; } .sidebar ul { margin:0; @@ -133,7 +134,7 @@ img.imgwithborder padding:0.6em 0.6em 0 0.6em; } .sidebar ul li a { - text-decoration:none; + text-decoration:underline; display:block; color:white; } -- cgit v1.2.1 From 2753f792152e8eed7ce3b7cf0b8c2ab77d1c5588 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 02:56:30 +0100 Subject: width der sidebar rausgenommen --- local.css | 1 - 1 file changed, 1 deletion(-) (limited to 'local.css') diff --git a/local.css b/local.css index c2c6fd22..d892f868 100755 --- a/local.css +++ b/local.css @@ -123,7 +123,6 @@ img.imgwithborder .sidebar ul { margin:0; padding:0; - width:10em; } .sidebar ul li { margin:0; -- cgit v1.2.1 From 0873a5d79f07e9887e41ee91768af927e24691c7 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 18:59:05 +0100 Subject: =?UTF-8?q?abst=C3=A4nde?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- local.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index d892f868..18067397 100755 --- a/local.css +++ b/local.css @@ -141,3 +141,9 @@ img.imgwithborder color: #000; background-color: #fff; } + +#content { + margin-right: -webkit-calc(24ex+4px); + margin-right: -moz-calc(24ex+4px); + margin-right: 24ex; margin-right: calc(24ex+4px); +} -- cgit v1.2.1 From 1a0f9644ae01cc4339940562bc8970321527a5c5 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Wed, 30 Oct 2013 19:21:55 +0100 Subject: css comments added --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index 18067397..f2a7e3c1 100755 --- a/local.css +++ b/local.css @@ -142,6 +142,7 @@ img.imgwithborder background-color: #fff; } +/* Make room for the sidebar */ #content { margin-right: -webkit-calc(24ex+4px); margin-right: -moz-calc(24ex+4px); -- cgit v1.2.1 From da1aebbeb296e2130ca482020f4ce5fef371e2dd Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 2 Nov 2013 02:46:51 +0100 Subject: CSS fuer Oeffnungszeiten in der Sidebar --- local.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index f2a7e3c1..e41460b2 100755 --- a/local.css +++ b/local.css @@ -148,3 +148,10 @@ img.imgwithborder margin-right: -moz-calc(24ex+4px); margin-right: 24ex; margin-right: calc(24ex+4px); } + +.oeffnungszeiten { + color: white; + padding: 1ex; + margin-top: 2ex; + font-weight: bold; +} -- cgit v1.2.1 From 9c6f9a50b1f896d793d051b7a61beea48a4484cb Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 2 Nov 2013 02:56:53 +0100 Subject: css location --- local.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index e41460b2..79e276cf 100755 --- a/local.css +++ b/local.css @@ -155,3 +155,7 @@ img.imgwithborder margin-top: 2ex; font-weight: bold; } +.location { + color: white; + padding: 1ex; +} -- cgit v1.2.1 From e2c032e5abb21a6686a32b400ab13039750ef196 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sat, 2 Nov 2013 03:02:52 +0100 Subject: =?UTF-8?q?bst=C3=A4nde=20anpassen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- local.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'local.css') diff --git a/local.css b/local.css index 79e276cf..aacf214d 100755 --- a/local.css +++ b/local.css @@ -157,5 +157,6 @@ img.imgwithborder } .location { color: white; - padding: 1ex; + padding-bottom: 1ex; + padding-left: 1ex; } -- cgit v1.2.1 From b3ef6af93a3a1293416eebc543b1d545bb85a60e Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sun, 3 Nov 2013 22:53:41 +0100 Subject: social media buttons --- local.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index aacf214d..cba337c4 100755 --- a/local.css +++ b/local.css @@ -160,3 +160,13 @@ img.imgwithborder padding-bottom: 1ex; padding-left: 1ex; } + +.socialmediaicons { + background: white; + padding: 5px; + margin-left: 1ex; +} +.socialmediaicons img { + margin: 0; + border-right: 5px solid white; +} -- cgit v1.2.1 From 04e8c85ff7103665105abe46a567b9fb565f3f10 Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sun, 3 Nov 2013 22:59:59 +0100 Subject: omfg --- local.css | 1 + 1 file changed, 1 insertion(+) (limited to 'local.css') diff --git a/local.css b/local.css index cba337c4..8ee89f17 100755 --- a/local.css +++ b/local.css @@ -165,6 +165,7 @@ img.imgwithborder background: white; padding: 5px; margin-left: 1ex; + margin-bottom: 10px; } .socialmediaicons img { margin: 0; -- cgit v1.2.1 From b4d3a62a1c946c01aa8989d30ec69a977684c92b Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Mon, 4 Nov 2013 01:25:12 +0100 Subject: social media icon foo --- local.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index 8ee89f17..d025b45b 100755 --- a/local.css +++ b/local.css @@ -164,8 +164,7 @@ img.imgwithborder .socialmediaicons { background: white; padding: 5px; - margin-left: 1ex; - margin-bottom: 10px; + margin: 0 -2ex; padding: 10px 1ex; } .socialmediaicons img { margin: 0; -- cgit v1.2.1 From 96cd70470c1390b316d7299c1dd134d6c1935edb Mon Sep 17 00:00:00 2001 From: Alexander Clausen Date: Mon, 4 Nov 2013 01:41:55 +0100 Subject: social media icons: positioning --- local.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'local.css') diff --git a/local.css b/local.css index d025b45b..854f9b61 100755 --- a/local.css +++ b/local.css @@ -163,8 +163,7 @@ img.imgwithborder .socialmediaicons { background: white; - padding: 5px; - margin: 0 -2ex; padding: 10px 1ex; + margin: 0 -2ex; padding: 20px 2ex 20px 3ex; } .socialmediaicons img { margin: 0; -- cgit v1.2.1 From d56ec72640a10ffa81bedce398eca93c27037da3 Mon Sep 17 00:00:00 2001 From: Caoimhe Chaos Date: Sat, 7 Dec 2013 20:07:30 +0100 Subject: =?UTF-8?q?Logo=20auf=20die=20Webseiten=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- local.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index 854f9b61..c217cad3 100755 --- a/local.css +++ b/local.css @@ -46,6 +46,9 @@ color:#fff; .header { padding-bottom: 0.5em; padding-top: 0.5em; +background-image: url(/logo_44px.png); +background-repeat: no-repeat; +padding-left: 80px; background-color: #fff; } .header a { -- cgit v1.2.1 From a784974ba174a3b05a4c04c9198ab785f0b953aa Mon Sep 17 00:00:00 2001 From: Juliane Clausen Date: Sun, 8 Dec 2013 19:06:03 +0100 Subject: Das Logo hat vermeldet, dass es mehr Abstand braucht. --- local.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'local.css') diff --git a/local.css b/local.css index c217cad3..cf3ef00e 100755 --- a/local.css +++ b/local.css @@ -48,7 +48,7 @@ padding-bottom: 0.5em; padding-top: 0.5em; background-image: url(/logo_44px.png); background-repeat: no-repeat; -padding-left: 80px; +padding-left: 90px; background-color: #fff; } .header a { -- cgit v1.2.1