diff options
Diffstat (limited to 'JLanguageTool/website/www/css/style.css')
-rw-r--r-- | JLanguageTool/website/www/css/style.css | 182 |
1 files changed, 182 insertions, 0 deletions
diff --git a/JLanguageTool/website/www/css/style.css b/JLanguageTool/website/www/css/style.css new file mode 100644 index 0000000..b5bbc10 --- /dev/null +++ b/JLanguageTool/website/www/css/style.css @@ -0,0 +1,182 @@ +/*
+Theme Name: iOrange2b
+Theme URI: http://www.darjanpanic.com
+Description: iOrange2b Template v1 by Brian Green and Darjan Panic.
+Version: 1.0
+Author: Brian Green and Darjan Panic, Modified by Daniel Naber +
+Use it however you want, just leave the links in the footer :)
+*/ +body { + background: url(../images/bg.jpg) no-repeat; +} + +a:link { + color: #ef8700; + text-decoration: none; +} +a:visited { + color: #a75e00; + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a:active { + text-decoration: underline; +} + +h1 { + margin-top: 5px; + text-align: center; + font-family: verdana, sans-serif; + font-size: 24px; + color: #ef8701; +} + +.xmlcode { + font-family: monospace; + margin-left: 15px; + font-size: larger; +} + +.xmlcodeNoIndent { + font-family: monospace; + font-size: larger; +} + +pre { + margin-bottom: 0px; +} + +.firstpara { + margin-top: 0px; +} + +.content { + padding-left: 5px; + padding-right: 25px; + color: #2c2c2c; + font-family: verdana, sans-serif; + font-size: 12px; +} + +.footer { + padding-top: 20px; + text-align: right; + color: #bbbbbb; + font-family: verdana, sans-serif; + font-size: 9px; +} + +.invisible { + padding-top: 20px; + text-align: right; + color: #ffffee; + font-family: verdana, sans-serif; + font-size: 9px; +} + +.footer a { + color: #ffc06f; +} + +.lastmod { + text-align: right; + font-size: 9px; + color: #888888; + font-family: verdana, sans-serif; +} + +/* ------------------------------------------------- */ +/* Demo */ + +.error { + background-color: #f8aab5; +} + +.suggestion { + background-color: #7ef7ac; +} + +/* ------------------------------------------------- */ + +/* Link and heading "LanguageTool" in the upper left corner: */ +#hplink a:link { + color: #ef8700; +} + +#hplink a:visited { + color: #ef8700; +} + +#hplink a:hover { + color: #ef8700; +} + +/* ------------------------------------------------- */ + +#menu { +} + +.activeMenuitem { + color: #ffffff !important; + text-decoration: none; + font-weight: bold; + background: #ef8701; +} + +#menu p { + border-bottom: 5px solid #464646; + color: #ef8701; + font-family: verdana, sans-serif; + font-size: 12px; + padding: 0px; + margin: 0px; + padding-right: 10px; + padding-left: 10px; +} + +#menu a:link { + color: #464646; + font-family: verdana, sans-serif; + font-size: 12px; + padding-left: 10px; + margin-left: 0px; + padding-right: 10px; + margin-right: 0px; + text-decoration: none; + font-weight: bold; +} + +#menu a:visited { + color: #464646; + font-family: verdana, sans-serif; + font-size: 12px; + padding-left: 10px; + margin-left: 0px; + padding-right: 10px; + margin-right: 0px; + text-decoration: none; + font-weight: bold; +} + +#menu a:hover { + color: #ffffff; + font-family: verdana, sans-serif; + font-size: 12px; + text-decoration: none; + font-weight: bold; + background: #ef8701; +} + +.warning { + border-color: #ffb251; + border-style: solid; + border-width: 2px; + background: #fcffd5; + padding: 5px; +} + +.downloadSection { +} |