Skip to content

Commit 6b4270c

Browse files
Update why.css
1 parent 868dcb1 commit 6b4270c

File tree

1 file changed

+1
-206
lines changed

1 file changed

+1
-206
lines changed

why.css

Lines changed: 1 addition & 206 deletions
Original file line numberDiff line numberDiff line change
@@ -1,208 +1,3 @@
1+
r
12

2-
.w1 {
3-
min-width: 130px;
4-
min-height: 400px;
5-
color: #fff;
6-
padding: 5px 10px;
7-
font-weight: bold;
8-
cursor: pointer;
9-
transition: all 0.3s ease;
10-
position: relative;
11-
display: inline-block;
12-
outline: none;
13-
border-radius: 5px;
14-
z-index: 0;
15-
background: #fff;
16-
overflow: hidden;
17-
border: 2px solid #ffd819;
18-
color: #ffd819;
19-
}
20-
.w1:hover {
21-
color: #fff;
22-
}
23-
.w1:hover:after {
24-
height: 100%;
25-
}
26-
.w1:after {
27-
content: "";
28-
position: absolute;
29-
z-index: -1;
30-
transition: all 0.3s ease;
31-
left: 0;
32-
top: 0;
33-
height: 0;
34-
width: 100%;
35-
background: #ffd819;
36-
}
37-
38-
.w2 {
39-
min-width: 130px;
40-
min-height: 400px;
41-
color: #fff;
42-
padding: 5px 10px;
43-
font-weight: bold;
44-
cursor: pointer;
45-
transition: all 0.3s ease;
46-
position: relative;
47-
display: inline-block;
48-
outline: none;
49-
border-radius: 5px;
50-
z-index: 0;
51-
background: #fff;
52-
overflow: hidden;
53-
border: 2px solid #f126bf;
54-
color: #f126bf;
55-
}
56-
.w2:hover {
57-
color: #fff;
58-
}
59-
.w2:hover:after {
60-
height: 100%;
61-
}
62-
.w2:after {
63-
content: "";
64-
position: absolute;
65-
z-index: -1;
66-
transition: all 0.3s ease;
67-
left: 0;
68-
top: 0;
69-
height: 0;
70-
width: 100%;
71-
background: #f126bf;
72-
}
73-
74-
.w3 {
75-
min-width: 130px;
76-
min-height: 400px;
77-
color: #fff;
78-
padding: 5px 10px;
79-
font-weight: bold;
80-
cursor: pointer;
81-
transition: all 0.3s ease;
82-
position: relative;
83-
display: inline-block;
84-
outline: none;
85-
border-radius: 5px;
86-
z-index: 0;
87-
background: #fff;
88-
overflow: hidden;
89-
border: 2px solid #00b4d8;
90-
color: #00b4d8;
91-
}
92-
.w3:hover {
93-
color: #fff;
94-
}
95-
.w3:hover:after {
96-
height: 100%;
97-
}
98-
.w3:after {
99-
content: "";
100-
position: absolute;
101-
z-index: -1;
102-
transition: all 0.3s ease;
103-
left: 0;
104-
top: 0;
105-
height: 0;
106-
width: 100%;
107-
background: #00b4d8;
108-
}
109-
110-
111-
.w4 {
112-
min-width: 130px;
113-
min-height: 400px;
114-
color: #fff;
115-
padding: 5px 10px;
116-
font-weight: bold;
117-
cursor: pointer;
118-
transition: all 0.3s ease;
119-
position: relative;
120-
display: inline-block;
121-
outline: none;
122-
border-radius: 5px;
123-
z-index: 0;
124-
background: #fff;
125-
overflow: hidden;
126-
border: 2px solid #6a994e;
127-
color: #6a994e;
128-
}
129-
.w4:hover {
130-
color: #fff;
131-
}
132-
.w4:hover:after {
133-
height: 100%;
134-
}
135-
.w4:after {
136-
content: "";
137-
position: absolute;
138-
z-index: -1;
139-
transition: all 0.3s ease;
140-
left: 0;
141-
top: 0;
142-
height: 0;
143-
width: 100%;
144-
background: #6a994e;
145-
}
146-
147-
.w5 {
148-
min-width: 130px;
149-
min-height: 400px;
150-
color: #fff;
151-
padding: 5px 10px;
152-
font-weight: bold;
153-
cursor: pointer;
154-
transition: all 0.3s ease;
155-
position: relative;
156-
display: inline-block;
157-
outline: none;
158-
border-radius: 5px;
159-
z-index: 0;
160-
background: #fff;
161-
overflow: hidden;
162-
border: 2px solid #590d22;
163-
color: #590d22;
164-
}
165-
.w5:hover {
166-
color: #fff;
167-
}
168-
.w5:hover:after {
169-
height: 100%;
170-
}
171-
.w5:after {
172-
content: "";
173-
position: absolute;
174-
z-index: -1;
175-
transition: all 0.3s ease;
176-
left: 0;
177-
top: 0;
178-
height: 0;
179-
width: 100%;
180-
background: #590d22;
181-
}
182-
183-
184-
185-
186-
/*our offerings button*/
1873

188-
189-
.offer {background-image: linear-gradient(to right, #83a4d4 0%, #b6fbff 51%, #83a4d4 100%)}
190-
.offer {
191-
margin: 10px;
192-
padding: 15px 45px;
193-
text-align: center;
194-
text-transform: uppercase;
195-
transition: 0.5s;
196-
background-size: 200% auto;
197-
color: white;
198-
box-shadow: 0 0 20px #eee;
199-
border-radius: 10px;
200-
display: block;
201-
}
202-
203-
.offer:hover {
204-
background-position: right center; /* change the direction of the change here */
205-
color: #fff;
206-
text-decoration: none;
207-
}
208-

0 commit comments

Comments
 (0)