-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
147 lines (124 loc) · 2.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
Theme Name: Zitec Child
Theme URI: https://wordpress.com
Author: Gonga Robert
Author URI: https://wordpress.com
Description: Child Theme Zitec
Template: twentytwenty
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0.0
Text Domain: twentytwenty-child
*/
a{
text-decoration: none;
}
section{
background: #b2cec1;
}
h2,h3{
font-weight: 500;
margin: 0;
}
select{
padding: 2rem 1.5rem;
padding-right: 3rem;
border: 3px solid;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-image: url("chevron.svg");
background-repeat: no-repeat;
background-position: 90%;
}
.container{
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
}
.filter-wrapper{
display: flex;
align-items: center;
column-gap: 25px;
row-gap: 25px;
flex-wrap: wrap;
}
.car-post{
display: block;
padding: 20px 0;
background: #eee;
margin-top: 50px;
margin-bottom: 70px;
text-align: center;
}
.post-title h2{
background: #bcbcbc;
margin: 0 20px;
color: #fafafa;
padding: 5px 0;
font-size: 40px;
}
.car-filters{
display: flex;
justify-content: space-between;
}
.filter-name{
margin-top: 15px;
flex: 0 0 33.333%;
width: 33.333%;
}
.filter-name h3{
background: gray;
color: #fafafa;
margin: 0 20px;
padding: 5px 0;
font-weight: 400;
text-transform: capitalize;
}
#preload-ajax{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff8a;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
visibility: hidden;
opacity: 0;
z-index: -1;
}
#loader{
width: 300px;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
margin: auto;
}
#preload-ajax.active-loader{
transition: all 0.5s ease;
visibility: visible;
opacity: 1;
z-index: 2;
}
@media screen and (max-width: 1240px) {
.car-filters {
flex-wrap: wrap;
}
.filter-name{
flex: 0 0 50%;
width: 50%;
}
.filter-name h3{
font-size: 25px;
}
}
@media screen and (max-width: 768px) {
.filter-name{
flex: 0 0 100%;
width: 100%;
}
}