-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (102 loc) · 1.92 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (102 loc) · 1.92 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
111
112
113
114
115
116
117
/* public/style.css */
body {
background: #121212; /* Tamna pozadina */
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
nav {
background: #1f1f1f;
padding: 15px 20px;
border-bottom: 1px solid #333;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
color: #f2a900; /* Bitcoin narandžasta */
text-decoration: none;
font-weight: bold;
margin-right: 15px;
}
/* Kartice za oglase */
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
margin-top: 20px;
}
.card {
background: #1f1f1f;
border: 1px solid #333;
border-radius: 12px;
padding: 20px;
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-5px);
border-color: #f2a900;
}
.badge {
background: #333;
color: #f2a900;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
text-transform: uppercase;
}
/* Dugmići */
.btn-main {
background: #f2a900;
color: #000;
border: none;
padding: 12px 20px;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
width: 100%;
margin-top: 10px;
}
.btn-main:hover {
background: #ffb700;
}
/* Forme */
input, select, textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
background: #2a2a2a;
border: 1px solid #444;
color: #fff;
border-radius: 8px;
box-sizing: border-box;
}
.row {
display: flex;
gap: 15px;
}
.row > div {
flex: 1;
}
/* Chat prozor */
#msgBox {
border: 1px solid #333;
border-radius: 8px;
padding: 15px;
background: #0a0a0a;
margin-bottom: 10px;
}
#msgBox div {
margin-bottom: 8px;
padding: 5px 10px;
background: #222;
border-radius: 4px;
width: fit-content;
}