diff -r 78a8dd1eeb2b -r 3719b121c3c4 vstup/css/styl.css --- a/vstup/css/styl.css Sun Apr 03 20:39:10 2011 +0200 +++ b/vstup/css/styl.css Sun Apr 03 23:15:36 2011 +0200 @@ -1,1 +1,52 @@ +body { + background-color: #3c3b37; + font-family: sans-serif; + text-align: center; + font-size: 16px; +} +#tělo { + width: 900px; + text-align: left; + margin: 0 auto; + margin-top: 32px; + margin-bottom: 32px; + background-color: #77bed2; + padding-left: 20px; + padding-right: 20px; + padding-top: 2px; + padding-bottom: 2px; + border-radius: 8px; +} + +#nabídka { + width: 160px; + position: relative; + left: -20px; + top: -12px; + background-color: #3c3b37; + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; + padding-top: 6px; + padding-bottom: 6px; + padding-left: 10px; + list-style-type: none; + float: left; +} + +#nabídka a { + color: white; +} + +#nabídka a:hover { + color: #77bed2; +} + +#text { + min-height: 400px; +} + +#zápatí { + font-size: small; + text-align: center; +}