-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcar.css
100 lines (84 loc) · 1.66 KB
/
car.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
89
90
91
92
93
94
95
96
97
98
99
100
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'spartan', sans-serif;
}
#feature .option .ab{
width: 80%;
}
footer{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
footer .col{
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 20px;
}
footer h4{
font-size: 14px;
padding-bottom: 20px;
}
footer p{
font-size: 13px;
margin: 0 0 8px 0;
}
footer a{
font-size: 13px;
text-decoration: none;
color: #222;
margin-bottom: 10px;
}
footer .follow{
margin-top: 20px;
}
footer .follow i{
color: #465b52;
padding-right: 4px;
cursor: pointer;
}
footer .install img{
margin: 10px 0 15px 0;
}
footer .follow i:hover,
footer a:hover{
color:#088178
}
footer .copyright{
width: 100%;
text-align: center;
}
.bgcolor{
background-color: #E3E6F3;
padding-bottom: 10px;
}
footer h2{
font-size: 40px;
}
.col h2{
text-align: center;
color: #fff;
font-size: 35px;
text-transform: uppercase;
font-weight: 700;
font-family: "Josefin Sans", sans-serif;
background: linear-gradient(to right,#271f1f 10%, #096a97 50%, #57d75b 60%);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-emphasis-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 1.5s linear infinite;
display: inline-block;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}