-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
73 lines (71 loc) · 1.07 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
* {
word-break: break-word;
}
.fakeImg {
width: 100%;
height: 400px;
background: var(--bs-dark);
}
body {
padding: 20px 20px 0 20px;
}
.besedilo {
padding: 20px 0 0 0;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 10;
display: none;
}
.hero-overlay {
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
background-color: rgba(0, 0, 0, 0.25);
}
.hero-container {
position: relative;
}
.sticky-block {
display: table-row;
height: 1px;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
@media only screen and (max-width: 767px) {
.hero-text {
display: block;
}
.naslov {
display: none;
}
.besedilo {
padding: 20px 50px 0 50px;
text-align: center;
}
body {
padding: 0;
}
.col-md-5 {
padding: 0;
}
}
.design {
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.5em;
margin-top: 2em;
}
.carousel-inner img {
margin: auto;
}