forked from thelamina/KontactsHub-Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (64 loc) · 1.23 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
body{
font-family: 'Montserrat', sans-serif;
}
.bd-navbar {
background-color: black;
}
.bd-body {
background-color: #000000;
}
/* banner */
.banner{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
}
.banner-heading{
animation-name: anim;
animation-duration: 2s;
}
.banner-par{
animation-name: anim;
animation-duration: 2s;
animation-delay: .5s;
animation-fill-mode: backwards;
}
@keyframes anim{
0%{
transform: translateX(-100px);
opacity: 0;
}
100%{
transform: translateX(0);
opacity: 1;
}
}
/* end of banner */
header{
height: 95vh;
background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .5)), url(/images/495902.jpg) no-repeat center center /cover;
}
/* search */
.search-input{
background: transparent;
border: none;
border-radius: 0;
border-bottom: 2px solid #999;
transition: all .4s;
}
.search-input:focus{
background: transparent;
box-shadow: none;
border-bottom: 2px solid #dc3545
}
.search-button{
border-radius: 50%;
padding: 10px 16px;
}
.search-button:hover{
background-color: #eee;
transform: translateY(-1px);
}
/* end of search */