-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
196 lines (180 loc) · 3.19 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica;
}
.btn {
padding: 14px 26px;
font-weight: 700;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
}
.banner-image {
background: linear-gradient(145deg, #1b2430, #816797);
background-size: cover;
background-position: center;
}
.banner-phone-image img {
width: 400px;
}
.star-rating a {
color: rgba(255, 255, 255, 0.5);
margin-right: 10px;
}
.star-rating a:hover {
color: #fff;
}
.aa {
line-height: 26px;
}
.cbtn {
background: linear-gradient(180deg, #816797 50%, #51557e);
color: white;
font-size: 25px;
border: none;
border-radius: 30px;
padding: 10px 20px;
box-shadow: 1px 1px 3px #46183d;
}
.cbtn:hover {
background: linear-gradient(180deg, #bea8d1 50%, #999dc9);
}
.cbtn a,
.cbtn a:hover {
color: white;
text-decoration: none;
}
.app i:hover {
color: #51557e;
}
.skill {
background: linear-gradient(45deg, #1b2430, #816797);
}
.underline {
width: 150px;
border: 3px solid #d6ba6e;
margin: auto;
}
.d {
color: #d6ba6e;
}
.leaf {
color: #ae98c2;
font-size: 20px;
}
.sec {
padding: 20px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 40px auto;
}
.sec ul {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
.sec ul li {
border-radius: 25px;
list-style: none;
background: rgb(255, 255, 255);
padding: 12px 20px;
margin: 5px;
letter-spacing: 1px;
cursor: pointer;
border: 1px solid #816797;
}
.sec ul li.active {
background: #816797;
color: #fff;
}
.sec ul li:hover {
border: 1px solid #816797;
background: #d6d5a8;
}
.product {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.product .itemBox {
position: relative;
width: 300px;
height: 300px;
margin: 5px;
display: block;
box-shadow: 1px 2px 3px gray;
border-radius: 20px;
}
.product .itemBox.hide {
display: none;
}
.product .itemBox img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
}
.sub {
background-color: #d6ba6e;
padding: 10px 30px;
border: none;
color: #51557e;
border-radius: 20px;
font-weight: bold;
}
.sub:hover {
background-color: #e9d3fd;
color: #816797;
}
.gradient-brand-color {
background-image: -webkit-linear-gradient(0deg, #1b2430, #816797 0% 100%);
color: #fff;
}
.contact-info__wrapper {
overflow: hidden;
border-radius: 0.625rem 0.625rem 0 0;
}
@media (min-width: 1024px) {
.contact-info__wrapper {
border-radius: 0 0.625rem 0.625rem 0;
padding: 5rem !important;
}
}
.contact-info__list span.position-absolute {
left: 0;
}
.z-index-101 {
z-index: 101;
}
.list-style--none {
list-style: none;
}
.contact__wrapper {
background-color: #fff;
border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 1024px) {
.contact__wrapper {
border-radius: 0.625rem 0 0.625rem 0.625rem;
}
}
@media (min-width: 1024px) {
.contact-form__wrapper {
padding: 5rem !important;
}
}
.shadow-lg,
.shadow-lg--on-hover:hover {
box-shadow: 0 1rem 3rem rgba(132, 138, 163, 0.1) !important;
}