blob: 4edf3f7088a5dbb99da9b7ed5c70f7db55317110 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#container {
width: 1200px;
height: 800px;
background-color: lightblue;
margin: auto;
}
#header {
width: 100%;
height: 100px;
position: relative;
color: blue;
background-color: white;
}
#logo {
width: 450px;
height: 90px;
background-image: url('logo.png');
background-repeat: no-repeat;
}
#menu {
background-color: #76bdd5;
width: 100%;
height: 50px;
display: table;
}
/*
#pocetna
{
width: 170px;
float: left;
list-style: none;
background-color: red;
position: absolute;
height: 50px;
text-align: center;
margin-left: 63px;
}
#pocetna a
{
font-size: 20px;
color: white;
text-decoration: none;
margin: 10px;
font-weight: bold;
margin-top: 20px;
}*/
#sat {
list-style: none;
color: white;
font-weight: bold;
float: right;
font-size: 30px;
margin-right: 30px;
}
#main {
width: 100%;
height: 700px;
display: table;
color: white;
position: relative;
background-image: url("indexk.jpg");
background-size: 100%,700px;
}
#main h1 {
margin-left: 55px;
font-size: 50px;
position: absolute;
}
#list {
top: 100px;
position: absolute;
width: 3%;
height: 80%;
float: left;
background-color: #ffcccc;
margin: 20px;
}
#list li {
background-color: #e60000;
color: white;
width: 150px;
text-align: justify;
margin: 5px;
list-style: none;
padding: 20px;
padding-right: 0;
}
#list a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 20px;
}
|