-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (96 loc) · 1.85 KB
/
style.css
File metadata and controls
110 lines (96 loc) · 1.85 KB
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
103
104
105
106
107
108
109
110
body {
font-family: Arial, sans-serif;
color: #333;
letter-spacing: 0.5px;
background-color: #f2f2f2;
}
h1, h2 {
font-weight: bold;
text-align: center;
}
#wrapper {
width: 90%;
max-width: 960px;
margin: 20px auto;
border-radius: 8px;
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
padding: 0 0 30px;
overflow: hidden;
border: 1px solid #ccc;
background-color: #fff;
}
#page-banner {
background: #e6f7ff;
padding: 20px 0;
border-bottom: 1px solid #ccc;
}
#page-banner h1, #page-banner p {
width: 100%;
text-align: center;
margin: 10px 0;
}
#page-banner input {
width: 90%;
max-width: 300px;
margin: 20px auto;
display: block;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
color: #333;
}
#lista-destinacija, #dodaj-destinaciju {
margin: 30px;
}
#lista-destinacija ul, #dodaj-destinaciju ul {
list-style-type: none;
padding: 0;
}
#lista-destinacija li {
padding: 20px;
border-left: 5px solid #e6f7ff;
margin: 20px 10px;
border-radius: 4px;
}
.obrisi {
float: right;
background: #ff3333;
padding: 8px;
border-radius: 50%;
cursor: pointer;
color: white;
font-size: 14px;
}
.obrisi:hover {
background: #cc0000;
}
#dodaj-destinaciju {
width: 400px;
margin: 0 auto;
display: flex;
}
#dodaj-destinaciju input {
flex: 1;
margin-right: 10px;
padding: 12px;
border: 1px solid #ccc;
font-size: 16px;
border-radius: 4px;
box-sizing: border-box;
}
#dodaj-destinaciju button {
border: 1px solid #1a75ff;
background: #1a75ff;
padding: 12px 24px;
font-size: 16px;
border-radius: 10px;
cursor: pointer;
color: white;
}
#dodaj-destinaciju:after {
content: '';
display: block;
clear: both;
}