From 0ee460b0e69cc73bb3458f11eaa9ba09e6a49e08 Mon Sep 17 00:00:00 2001 From: kstranacher Date: Tue, 13 Jul 2010 11:05:02 +0000 Subject: git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@1170 d688527b-c9ab-4aba-bd8d-4036d912da1d --- id/server/auth/src/main/webapp/css/index.css | 225 +++++++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 id/server/auth/src/main/webapp/css/index.css (limited to 'id/server/auth/src/main/webapp/css/index.css') diff --git a/id/server/auth/src/main/webapp/css/index.css b/id/server/auth/src/main/webapp/css/index.css new file mode 100644 index 000000000..8abeb7a5f --- /dev/null +++ b/id/server/auth/src/main/webapp/css/index.css @@ -0,0 +1,225 @@ +@charset "utf-8"; + +* { + margin:0; + padding:0; + border:0; +} + +body { + margin:0; + padding:0; + color : #000; + background-color : #fff; + font-family : Verdana, Geneva, Arial, sans-serif; + font-size:76%; +} + +/* skiplink */ + +#skiplinks { + position:relative; +} + +p#skiplinks a { + + position: absolute; + top: -999em; + left: -999em; + height: 0; + width: 0; + overflow: hidden; +} + +p#skiplinks a:focus, +p#skiplinks a:hover, +p#skiplinks a:active { + height: auto; + width:auto; + left: 0; + top: 0; + padding: 4px; + position: absolute; + overflow: visible; + text-decoration: none; + z-index: 100; +} + +/*layout */ + +#wrapper { + min-width:746px; + max-width:1258px; + padding: 0 10px; +} + +#banner { + width:100%; + min-height:100px; + padding-top:20px; + position:relative; +} + +#bannerleft { + float:left; +} + +#bannerleft h1 { + font-size:2em; + padding-top:10px; +} + +#bannerright { + float:right; +} + +#main { + clear:both; + position:relative; +} + +/* left */ + +#leftcontent { + float:left; + width:210px; +} + +h2#tabheader, h2#contentheader { + padding:2px; + font-size:1.1em; + color:#fff; + border-bottom:2px solid #fff; +} + +#bkulogin { + overflow:hidden; + width:210px; +} + +#bkukarte { + float:left; + background: url(../img/karte.gif) no-repeat top center; + padding: 90px 10px 10px 10px; + text-align:center; + width:40%; +} + +#bkuhandy { + float:right; + background: url(../img/handy.gif) no-repeat top center; + padding: 90px 10px 10px 10px; + text-align:center; + width:40%; +} + +button { + background: #efefef; + border:1px solid #000; + cursor: pointer; +} + +#installJava, #BrowserNOK { + clear:both; + font-size:0.8em; + padding:4px; +} + +#localBKU { + padding:4px; +} + +#tab { + margin-top:2px; + padding:2px; + clear:both; +} + +#leftcontent a { + text-decoration:none; + color: #000; + display:block; + padding:4px; +} + +#leftcontent a:hover, #leftcontent a:focus, #leftcontent a:active { + text-decoration:underline; + color: #000; +} + +#navlist { + margin-top:20px; +} + +#navlist ul { + list-style: none; + margin-left: 0; +} + +#navlist li { + border-bottom:1px solid #fff; +} + +iframe { + width:210px; +} + +/* right */ + +#rightcontent { + float:right; + width:210px; +} + +#centercontent { + width:auto; + margin: 0 220px; +} + +/* center */ + +#content { + padding:20px; +} + +#content a { + text-decoration:underline; + color: #000; +} + +#content a:hover, #content a:focus, #content a:active { + text-decoration:underline; + color: #000; +} + +p { + margin-bottom:1em; +} + +.lightblock{ + text-align : left; + padding : 5px 5px 5px 5px; +} + + +/* [OPTIONAL] Geben Sie hier die Farbe fuer den hellen Hintergrund an */ +.hell { + background-color : #FFBBCB; +} + +/* [OPTIONAL] Geben Sie hier die Farbe fuer den dunklen Hintergrund an */ +.dunkel { + background-color: #993366; +} + +/* [OPTIONAL] Geben Sie hier die Farbe fuer Links an */ +#leftcontent a, #content a { + color: blue; +} + +@media print { + #wrapper { width:100%;} + #banner {width:640px;} + #rightcontent {display: none;} + #centercontent {width:400px; margin-right:0;} +} -- cgit v1.2.3