root/vstup/css/styl.css @ 32:6bc25517ac4f

Revision 32:6bc25517ac4f, 1.2 KB (checked in by František Kučera <franta-hg@…>, 13 years ago)

Diagramy #13 – první verze, celkem funguje.

Line 
1body {
2    background-color: #3c3b37;
3    font-family: sans-serif;
4    text-align: center;
5    font-size: 16px;
6}
7
8a 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
58pre {
59        background-color: #ddf;
60        padding: 6px;
61        border-radius: 4px;
62}
63
64.diagram {
65        background-color: #ddf;
66        padding: 6px;
67        border-radius: 4px;
68        text-align: center;
69        max-width: 100%;
70        overflow: auto;
71}
72
73.diagram .nadpis {
74        font-size: 60%;
75        padding: 4px;
76        margin-top: 6px;
77        margin-bottom: -6px;
78        margin-left: -6px;
79        margin-right: -6px;     
80        background-color: #d0d0f0;
81        border-radius: 0px 0px 4px 4px;
82}
Note: See TracBrowser for help on using the browser.