-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (78 loc) · 1.55 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
html {
background-color: black !important;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
margin: 0;
overflow: hidden;
text-align: center;
background-color: black !important;
/* background-image: url("bakcground.png"); */
min-height: 100vh;
overflow: auto;
min-height: 100vh;
}
#visualiser {
margin-top: 300px;
cursor: pointer;
position: relative;
background-image: url("slika.jpg");
background-position: center;
text-align: center;
background-size: 50% 100%;
background-position: center;
background-repeat: no-repeat;
}
/* #visualiser:nth-child(1) {
filter: url(#transmissionerror);
}
#visualiser:nth-child(2) {
filter: grayscale(100%) contrast(1000%);
mix-blend-mode: multiply;
} */
.datum {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#text {
font-size: 30px;
color: #ffffff;
font-family: "Inter", sans-serif;
font-style: bold;
font-weight: 800;
}
.opis {
margin-bottom: 120px;
width: 50%;
}
#textopis {
font-family: "Inter", sans-serif;
color: #ffffff;
text-align: left;
}
@media screen and (max-width: 768px) {
#textopis {
font-size: 12px;
}
.opis {
width: 95%;
}
.datum {
top: 50%;
}
#text {
font-size: 20px;
}
#visualiser {
background-size: 100vh;
justify-content: center;
align-items: center;
}
}