java/nekurak.net-web/web/styl.css
author František Kučera <franta-hg@frantovo.cz>
Thu Feb 25 08:26:46 2010 +0100 (2010-02-25)
changeset 40 67d332d48562
parent 38 a2ca6c1804d1
child 42 77c8271add7d
permissions -rw-r--r--
Zakládání podniků + HTTP autentizace.
     1 body {
     2     color: black;
     3     background-color: white;
     4     font-family: sans-serif;
     5     text-align: center;
     6 }
     7 
     8 a {
     9     text-decoration: none;
    10 }
    11 
    12 .body {
    13     width: 1000px;
    14     text-align: left;
    15     margin: 0 auto;
    16 }
    17 
    18 #horniPruh {
    19     width: 1000px;
    20     border: 1px solid silver;
    21     background-color: #e6e6e6;
    22 }
    23 
    24 #horniPruh h1 {
    25     margin-left: 10px;
    26 }
    27 
    28 #nabidka {
    29     width: 980px;
    30     border: 1px solid silver;
    31     margin-top: 4px;
    32     margin-bottom: 4px;
    33     padding-top: 2px;
    34     padding-left: 10px;
    35     padding-right: 10px;
    36     background-image: url('grafika/pozadi-nabidky.png');
    37     height: 23px;
    38     display: block;
    39 }
    40 
    41 #nabidka li {
    42     display: inline;
    43     font-size: 14px;
    44     margin-left: 12px;
    45 }
    46 
    47 #nabidka li a {
    48     color: black;
    49     text-decoration: none;
    50 }
    51 #nabidka li a:hover {
    52     color: orange;
    53 }
    54 
    55 #prihlasenyUzivatel {
    56     color: gray;
    57 }
    58 
    59 #obsah {
    60     width: 980px;
    61     border: 1px solid silver;
    62     margin-bottom: 4px;
    63     padding-left: 10px;
    64     padding-right: 10px;
    65 }
    66 
    67 #paticka {
    68     width: 1000px;
    69     border: 1px solid silver;
    70     background-color: #e6e6e6;
    71     font-size: smaller;
    72     padding-top: 3px;
    73     padding-bottom: 3px;
    74     text-align: center;
    75 }
    76 
    77 table {
    78     border: 1px solid gray;
    79     border-collapse: collapse;
    80 }
    81 
    82 td {
    83     border: 1px solid gray;
    84     padding: 2px 4px;
    85 }
    86 
    87 thead {
    88     background-color: silver;
    89     font-weight: bold;
    90 }
    91 
    92 .podnik a h2 {
    93     color: black;
    94 }
    95 
    96 fieldset {
    97 	border: none;
    98 }
    99 
   100 form {
   101 	text-align: right;
   102 	max-width: 400px;
   103 }
   104 
   105 input	{
   106 	width:200px;
   107 }