-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtours4.css
More file actions
56 lines (49 loc) · 826 Bytes
/
tours4.css
File metadata and controls
56 lines (49 loc) · 826 Bytes
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
html{
scroll-behavior: smooth;
}
body{
font-family: 'Poppins', sans-serif;
background: #161813;
overflow-x: hidden;
text-align: center;
color: #fff;
}
.tour-img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -2;
filter: blur(-1px);
}
.tour-name{
font-weight: 300;
font-size: 30px;
}
.tour-action{
margin-left: 20px;
position: relative;
font-weight: 300;
}
.Thanks{
margin-top: 200px;
}
.scroll-down-icon{
position: absolute;
bottom: 10%;
left: 50%;
transform: translateX(-50%);
width: 20px;
animation: down ease 1s infinite;
}
@keyframes down{
from { bottom: 10% }
to { bottom: 8% }
}
.hi{
padding-top: 300px;
font-size: 20px;
margin-bottom: 30px;
}