vstup/css/styl.css
author František Kučera <franta-hg@frantovo.cz>
Wed, 06 Jul 2011 23:14:15 +0200
changeset 25 0d84061c9878
parent 24 63e404f454e8
child 31 da6ae32853cb
permissions -rw-r--r--
Seznam všech stránek formou odstavců.
     1 body {
     2     background-color: #3c3b37;
     3     font-family: sans-serif;
     4     text-align: center;
     5     font-size: 16px;
     6 }
     7 
     8 a img {
     9 	border: none;
    10 }
    11 
    12 #tělo {
    13     width: 900px;
    14     text-align: left;
    15     margin: 0 auto;
    16     margin-top: 32px;
    17     margin-bottom: 32px;
    18     background-color: #77bed2;
    19     padding-left: 20px;
    20     padding-right: 20px;
    21     padding-top: 2px;
    22     padding-bottom: 2px;    
    23     border-radius: 8px;
    24 }
    25 
    26 #nabídka {	
    27 	width: 10.3em;
    28 	position: relative;
    29 	left: -20px;
    30 	top: -12px;
    31 	background-color: #3c3b37;
    32 	border-top-right-radius: 8px;
    33 	border-bottom-right-radius: 8px;
    34 	padding-top: 6px;
    35 	padding-bottom: 6px;
    36 	padding-left: 10px;
    37 	list-style-type: none;
    38 	float: left;
    39 }
    40 
    41 #nabídka a {
    42 	color: white;
    43 }
    44 
    45 #nabídka a:hover {
    46 	color: #77bed2;
    47 }
    48 
    49 #text {
    50 	min-height: 400px;
    51 }
    52 
    53 #zápatí {
    54 	font-size: small;
    55 	text-align: center;
    56 }
    57