Show
Ignore:
Timestamp:
04/03/11 23:15:36 (13 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

Konečně nějaký vzhled pro ukázkové stránky, CSS, patička, trochu lorem ipsum.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vstup/css/styl.css

    r11 r12  
     1body { 
     2    background-color: #3c3b37; 
     3    font-family: sans-serif; 
     4    text-align: center; 
     5    font-size: 16px; 
     6} 
    17 
     8#tělo { 
     9    width: 900px; 
     10    text-align: left; 
     11    margin: 0 auto; 
     12    margin-top: 32px; 
     13    margin-bottom: 32px; 
     14    background-color: #77bed2; 
     15    padding-left: 20px; 
     16    padding-right: 20px; 
     17    padding-top: 2px; 
     18    padding-bottom: 2px;     
     19    border-radius: 8px; 
     20} 
     21 
     22#nabídka {       
     23        width: 160px; 
     24        position: relative; 
     25        left: -20px; 
     26        top: -12px; 
     27        background-color: #3c3b37; 
     28        border-top-right-radius: 8px; 
     29        border-bottom-right-radius: 8px; 
     30        padding-top: 6px; 
     31        padding-bottom: 6px; 
     32        padding-left: 10px; 
     33        list-style-type: none; 
     34        float: left; 
     35} 
     36 
     37#nabídka a { 
     38        color: white; 
     39} 
     40 
     41#nabídka a:hover { 
     42        color: #77bed2; 
     43} 
     44 
     45#text { 
     46        min-height: 400px; 
     47} 
     48 
     49#zápatí { 
     50        font-size: small; 
     51        text-align: center; 
     52}