-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesigns.html
254 lines (239 loc) · 6.34 KB
/
designs.html
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FZ2GBVV4SW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FZ2GBVV4SW');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tohid Khan</title>
<style>
/*==================== GOOGLE FONTS ====================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
/*==================== VARIABLES CSS ====================*/
:root {
/*========== Colors ==========*/
--text-color: #000000;
--bg-color: #282828;
/*========== Font and typography ==========*/
--body-font: 'Poppins', sans-serif;
--normal-font-size: .938rem;
}
@media screen and (min-width: 968px) {
:root {
--normal-font-size: 1rem;
}
}
/*==================== BASE ====================*/
*,
*:after,
*:before {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-size: var(--normal-font-size);
background-color: var(--bg-color);
color: var(--text-color);
font-weight: 400;
font-family: var(--body-font);
transition: all 0.2s ease;
}
/*==================== REUSABLE CSS CLASSES ====================*/
.container {
max-width: 1140px;
width: 100%;
margin: 0 auto;
padding: 3rem 0;
min-height: 100vh;
display: grid;
place-items: center;
}
/*==================== SERVICE CARD ====================*/
.card__container {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
width: 100%;
max-width: 90%;
margin: 40px auto;
}
.card__bx {
--bg-clr: #282828;
--txt-clr: #ffffff;
--btn-txt-clr: #333333;
--transition: all 0.5s;
font-family: 'Poppins', sans-serif;
height: 400px;
width: 300px;
overflow: hidden;
border-radius: 20px;
border-top-left-radius: 70px;
position: relative;
overflow: hidden;
background: var(--clr);
transition: var(--transition);
}
.card__1 {
--clr: #249eff;
}
.card__2 {
--clr: #ff1f6b;
}
.card__3 {
--clr: #98ff21;
}
.card__bx .card__data {
position: absolute;
inset: 10px;
border-radius: 10px;
background: var(--bg-clr);
}
.card__bx .card__data .card__icon {
position: absolute;
top: 0;
left: 0;
border-bottom-right-radius: 50%;
height: 140px;
width: 140px;
background: var(--clr);
}
.card__bx .card__data .card__icon::before {
content: '';
position: absolute;
bottom: -30px;
left: 0;
height: 30px;
width: 30px;
border-top-left-radius: 30px;
background: transparent;
box-shadow: -5px -5px 0 5px var(--clr);
}
.card__bx .card__data .card__icon::after {
content: '';
position: absolute;
right: -30px;
top: 0;
height: 30px;
width: 30px;
border-top-left-radius: 30px;
background: transparent;
box-shadow: -5px -5px 0 5px var(--clr);
}
.card__bx .card__data .card__icon .card__icon-bx {
position: absolute;
inset: 10px;
border-radius: 10px;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 60px;
background: var(--bg-clr);
color: var(--clr);
}
.card__bx:hover .card__data .card__icon .card__icon-bx {
background: var(--clr);
color: var(--txt-clr);
transition: var(--transition);
}
.card__bx .card__data .card__content {
position: absolute;
top: 150px;
padding: 20px;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
gap: 15px;
color: var(--txt-clr);
}
.card__bx .card__data .card__content h3 {
font-size: 24px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
}
.card__bx .card__data .card__content p {
font-size: 14px;
opacity: 0.75;
}
.card__bx .card__data .card__content a {
display: inline-flex;
align-self: center;
padding: 10px 25px;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
font-weight: 600;
border-radius: 30px;
border: 2px solid var(--clr);
color: var(--btn-txt-clr);
background: var(--clr);
transition: var(--transition);
}
.card__bx .card__data .card__content a:hover {
background: transparent;
color: var(--clr);
}
h1 {
text-align: center;
color: white;
}
</style>
</head>
<body>
<h1><u>Tohid Khan</u></h1>
<section class="container">
<section class="card__container">
<!--==================== SERVICE CARD ====================-->
<div class="card__bx card__1">
<div class="card__data">
<div class="card__icon">
<div class="card__icon-bx">
<i class="fa-solid fa-pen-ruler"></i>
</div>
</div>
<div class="card__content">
<h3>Design</h3>
<p>Tohid Khan is specilized in several and attractive web designs.</p>
<a href="https://github.com/Tohidkhan6332">Read More</a>
</div>
</div>
</div>
<div class="card__bx card__2">
<div class="card__data">
<div class="card__icon">
<div class="card__icon-bx"><i class="fa-solid fa-code"></i></div>
</div>
<div class="card__content">
<h3>Development</h3>
<p>Tohid Khan is specialized in general software development.</p>
<a href="https://github.com/Tohidkhan6332">Read More</a>
</div>
</div>
</div>
<div class="card__bx card__3">
<div class="card__data">
<div class="card__icon">
<div class="card__icon-bx"><i class="fa-solid fa-rocket"></i></div>
</div>
<div class="card__content">
<h3>Launch</h3>
<p>Tohid Khan is working on launching projects and collaborating with willing individuals.</p>
<a href="https://github.com/Tohidkhan6332">Read More</a>
</div>
</div>
</div>
</section>
</section>
</body>
</html>