-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (96 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
104 lines (96 loc) · 1.76 KB
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
@import 'https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700';
.alignleft {
float: left;
margin-right: 15px
}
.alignright {
float: right;
margin-left: 15px
}
.aligncenter {
display: block;
margin: 0 auto 15px
}
.fix {
overflow: hidden
}
a {
text-decoration: none;
outline: none;
-webkit-transition: .3s;
transition: .3s;
color: #303030
}
..navbar-brand{
padding:0;
}
.btn.focus, .btn:focus, .btn:hover, input:focus, button:focus, a:focus, a:hover {
text-decoration: none;
outline: none;
color: inherit
}
img {
max-width: 100%;
height: auto
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 10px;
font-weight: 600
}
h1 {
font-size: 40px
}
p span, h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
color: #0769c1
}
html, body {
height: 100%
}
body {
font-family: poppins, sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 1.6;
color: #606060
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
-webkit-box-shadow:0 0 0 1000px #fff inset!important
}
#maps {
width: 100%;
height: 500px
}
.item-1,
.item-2,
.item-3 {
position: absolute;
display: block;
top: 2em;
animation-duration: 15s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
.item-1{
animation-name: anim-1;
}
.item-2{
animation-name: anim-2;
}
.item-3{
animation-name: anim-3;
}
@keyframes anim-1 {
0%, 8.3% { left: -100%; opacity: 0; }
8.3%,25% { left: 0%; opacity: 1; }
33.33%, 100% { left: 110%; opacity: 0; }
}
@keyframes anim-2 {
0%, 33.33% { left: -100%; opacity: 0; }
41.63%, 58.29% { left: 0%; opacity: 1; }
66.66%, 100% { left: 110%; opacity: 0; }
}
@keyframes anim-3 {
0%, 66.66% { left: -100%; opacity: 0; }
74.96%, 91.62% { left: 0%; opacity: 1; }
100% { left: 110%; opacity: 0; }
}