From c0e44f21946eb7974c17d1ba336fc5baf4bc49a6 Mon Sep 17 00:00:00 2001 From: Aiko Mastboom Date: Tue, 16 Apr 2013 23:55:25 +0200 Subject: [PATCH] borrowed some more css --- public/style.css | 94 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 71 insertions(+), 23 deletions(-) diff --git a/public/style.css b/public/style.css index bf06a6c..c3c6ac9 100644 --- a/public/style.css +++ b/public/style.css @@ -1,44 +1,92 @@ body { - overflow: hidden; + overflow: hidden; } .ace_bold { - font-weight:bold; + font-weight: bold; } .ace_italic { - font-style:italic; + font-style: italic; } #header { - position: fixed; - top: 0; - right: 0; - height: 30px; - width: 100%; - background-color: black; + position: fixed; + top: 0; + right: 0; + height: 100px; + width: 100%; + background-color: black; } #htext { - line-height: 30px; - vertical-align: middle; + line-height: 30px; + vertical-align: middle; - padding-left: 10px; - color: white; - font-family: baskerville, palatino, 'palatino linotype', georgia,serif; + padding-left: 10px; + color: white; + font-family: baskerville, palatino, 'palatino linotype', georgia, serif; } -#editor { - margin: 0; - position: absolute; - top: 30px; - bottom: 0; - left: 0; - right: 0; +#editor { + margin: 0; + position: absolute; + top: 100px; + bottom: 0; + left: 0; + right: 0; } #htext a { - color: #aaf; - font-weight: bold; + color: #aaf; + font-weight: bold; } +.folders { + background-color: #bbb; + list-style-type: none; + padding: 0; + margin: 0; + border-radius: 7px; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d6d6d6), color-stop(0.4, #c0c0c0), color-stop(1, #a4a4a4)); + margin: 10px 0 16px 0; + font-size: 0px; +} + +.folders li:hover { + background-color: #ddd; +} + +.folders li:first-child { + border-left: none; + border-radius: 7px 0 0 7px; +} + +.folders li { + font-size: 16px; + font-weight: bold; + display: inline-block; + padding: 0.5em 1.5em; + cursor: pointer; + color: #444; + text-shadow: #f7f7f7 0 1px 1px; + border-left: 1px solid #ddd; + border-right: 1px solid #888; +} + +.folders li { + *display: inline !important; +} + +/* IE7 only */ +.folders .selected { + background-color: #444 !important; + color: white; + text-shadow: none; + border-right-color: #aaa; + border-left: none; + box-shadow: inset 1px 2px 6px #070707; +} + + +