-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
110 lines (87 loc) · 1.79 KB
/
style.css
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
:root {
--cursive: 'Comforter Brush', cursive;
--bojaslova: rgb(145, 145, 145);
}
body {
background-color: black;
color: var(--bojaslova);
}
.crvena {
color: rgb(92, 1, 1);
}
.crna{
color: black;
}
img {
max-width: 100%;
}
.senka {
text-shadow: 2px 2px 2px black, -2px -2px 2px black;
}
h1 {
color: rgb(229, 228, 228);
font-size: 10vw;
text-shadow: 3px 3px 3px black, -3px -3px 3px black;
}
hr{
height: 10px;
}
nav ul {
display: flex;
justify-content: space-around;
margin-top: 20px;
margin-bottom: 0px;
font-family: var(--cursive);
background-color: rgba(0, 0, 0, 0.011);
}
li {
list-style: none;
color: var(--bojaslova);
font-size: 23px;
}
a {
color: var(--bojaslova);
text-decoration: underline;
text-decoration-color: rgb(125, 1, 1);;
}
.hero{
background-image: url(./img/img/CVL28.webp);
background-size: contain;
background-position: center;
background-repeat: no-repeat;
padding-top: 50px;
background-color: black;
}
.hero .container{
height: 60vh;
}
.hero h4 {
font-family: var(--cursive);
}
.about, .welcome, .gallery{
background-color: rgb(0, 0, 0);
}
.info{
background-image: url(img/img/ratnik.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding-top: 50px;
}
.info h2 {
font-family: var(--cursive);
color: rgb(147, 6, 6);
text-shadow: 1px 1px 1px white;
}
.contact a{
color: var(--bojaslova);
text-decoration: none;
}
.card {
background-color: rgb(84, 83, 83);
color: var(--bojaslova);
}
footer {
background-color: rgb(68, 2, 2);
padding: 10px;
}