-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtechstack.css
More file actions
316 lines (284 loc) · 6.35 KB
/
techstack.css
File metadata and controls
316 lines (284 loc) · 6.35 KB
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
html[light-mode="light"] {
--bg1-color: rgba(0, 0, 0, 0);
--text-color: #6c757d;
--shadow-col1: #babdc2;
--shadow-col2: #ffffff;
--meta-col: #444;
--head-col: black;
}
html[light-mode="dark"] {
--bg1-color: #272727;
--text-color: #fff;
--bg-txt-img: linear-gradient(315deg, #d5adc8 0%, #ff8489 74%);
--txt-fill: transparent;
--shadow-col1: #191919;
--shadow-col2: #1d1d1d;
--meta-col: rgb(155, 149, 149);
--head-col: #fff;
}
html {
overflow-x: hidden;
}
/* .main{
width: 100%;
padding-left: 4rem;
padding-right: 4rem;
margin: 0 auto;
} */
/* Tech Stack Cards */
.techstack-box{
/* position: absolute; */
/* left: 0; */
display: flex;
flex-direction: row;
flex-wrap: wrap;
overflow: hidden;
justify-content: center;
}
.tech_card{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: none;
border-radius: 13px;
background-color: rgb(65, 62, 65);
width: 45.7vw;
margin:3.5em 30px;
padding: 20px;
box-shadow: 0px 0px 15px 2px black;
}
html[light-mode="light"] .tech_card{
background-color: white;
color: #303030;
box-shadow: 0px 0px 10px #303030;
}
.tech_card img{
width: 120px;
height: 120px;
/* border: 1px solid black; */
/* box-shadow: 8px 8px 7px black; */
border-radius: 8px;
margin-bottom: 8px;
padding: 20px;
}
.tech_card h4{
font-weight: bold;
font-family: cursive;
}
.main-heading{
font-weight: 700;
}
.main-heading .my_techstacks{
color: #4e00bb;
text-shadow: 0px 0px 15px #4e00bb;
}
html[light-mode="light"] .main-heading .my_techstacks{
text-shadow: none !important;
}
.skill-head{
font-size: 2rem;
font-weight: 700;
}
.skill-head .my_skill{
color: #4e00bb;
text-shadow: 0px 0px 15px #4e00bb;
}
html[light-mode="light"] .skill-head .my_skill{
text-shadow: none !important;
}
.tech_card .card_img img{
animation: scale_anime 2s infinite ease-in-out;
}
html[light-mode="light"] .tech_card img{
animation: scale_anime_dark 2s infinite ease-in-out;
}
@keyframes scale_anime_dark {
0%{
transform: scale(1);
}
50%{
transform: scale(1.15);
}100%{
transform: scale(1);
}
}
@keyframes scale_anime {
0%{
transform: scale(1);
}
50%{
transform: scale(1.15);
}100%{
transform: scale(1);
}
}
#svg_css_text {
animation: translate_forward 2s infinite ease-in-out;
}
#svg_html_text {
animation: translate_backward 2s infinite ease-in-out;
}
@keyframes translate_forward {
0% {
transform: translateX(12px);
}
50% {
transform: translateX(0px);
}
100% {
transform: translateX(12px);
}
}
@keyframes translate_backward {
0% {
transform: translateX(0px);
}
50% {
transform: translateX(12px);
}
100% {
transform: translateX(0px);
}
}
.techstacks_icons {
align-items: center;
justify-content: center;
}
.techstacks_icons .techstack_icon {
padding: 5px 10px;
}
.techstacks_icons .techstack_icon i {
font-size: 2.5rem;
opacity: .7;
}
html[light-mode="light"] .techstacks_icons .techstack_icon i {
font-size: 2.5rem;
opacity: 1;
}
div.techstack_icon>i:hover {
opacity: 1;
transition: opacity .2s linear;
transform: scale(1.3);
}
div.html_icon.techstack_icon>i.fa-html5 {
/* color: #FF5733 !important; */
display: inline-block;
background: linear-gradient(-90deg, #F06529 50%, #E34C26 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
div.techstack_icon>i.fa-css3-alt {
/* color: #2965f1 !important; */
display: inline-block;
background: linear-gradient(-90deg, #264de4 50%, #2965f1 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
div.techstack_icon>i.fa-bootstrap {
color: #ad428d !important;
}
div.techstack_icon>i.fa-js-square {
color: #F0DB4F;
}
div.techstack_icon>i.fa-python {
display: inline-block;
background: linear-gradient(-120deg, #ffde57, #4584b6, #646464);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
div.techstack_icon>i.fa-react {
color: #61DBFB;
}
div.techstack_icon>i.fa-git-alt {
color: #F1502F;
}
div.techstack_icon>i.fa-node {
color: #3C873A;
}
div.techstack_icon>i.fa-cuttlefish {
color: #044F88;
}
#box1{
animation: slide-down 8s infinite linear;
}
#box3{
animation: slide-up 8s 4s infinite linear;
}
@keyframes slide-down {
0%{
transform: translate(0px,0px);
}
50%{
transform: translate(212px, 61px)
}
100%{
transform: translate(0px,0px);
}
}
@keyframes slide-up {
0%{
transform: translate(-212px, -60px);
}
50%{
transform: translate(0px,0px);
}
100%{
transform: translate(-212px, -60px);
}
}
.project_item{
margin-top: 4px;
}
.project_item a{
color: #bb86c9;
text-decoration: none;
}
html[light-mode="light"] .project_item a{
color: #4e00bb ;
text-decoration: none;
}
@media (max-width:1180px){
.tech_card{
width: 45vw;
}
.techstack-box{
justify-content: center !important;
}
}
@media (max-width:1000px){
.tech_card{
width: 90vw;
}
}
@media (max-width:450px){
.skill-head{
margin-top: 10px;
font-size: 22px;
}
.main-heading{
font-size: 25px;
}
.techstacks_icons .techstack_icon i {
font-size: 1.8rem;
}
.pre-heading{
font-size: 13px;
}
}
@media (max-width:350px){
.techstack-box{
justify-content: center;
}
.tech_card{
width: 95vw;
}
}