-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (102 loc) · 2.1 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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
outline: none;
text-decoration: none;
text-transform: uppercase;
}
:root {
--activeGreen: #2dbf64;
--fontPrimary: #002333;
--questionBG: #e4e8ee;
--successGreen: #00ff84;
--bodyBackground: #f2f4f8;
--smartYellow: #FFC916;
--smartBlue: #0070f3;
--purpule: #728FCE;
}
.img-wrapper{
background: #000;
}
.img-wrapper img{
width: 32%;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 209, 45, 0.479) 0px 30px 60px -30px;
border-radius: 20px;
}
/* icon realted */
.icons-wrapper {
align-items: center;
justify-content: center;
background: #000;
display: flex;
margin-top: -30px;
color: #fb5200;
font-size: 4rem;
}
/* css icon */
.fa-css3{
color: #0070f3;
margin: 10px;
gap: 2rem;
}
/* code */
.fa-code{
color: #00ff84;
background: #000;
padding: 12px;
width: 100ex;
font-size: 3rem;
border: 0.5px solid #00ff511e;
}
/* react */
.fa-react{
color: #61dbfb;
}
/* node */
.fa-node{
color: #00be3c;
margin: 20px;
}
/* vue js */
.fa-vuejs{
color: #41B883;
}
/* express */
.express{
text-transform: lowercase;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #00ff51;
font-size: 1.8rem;
background: rgba(0, 0, 0, 0.233);
}
/* github */
.fa-github{
color: #666666;
margin: 10px;
}
/* js */
.fa-js{
color: #FFC916;
}
/* icon wrapper */
.icons-wrapper{
border-top: 6px solid #00be3c;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
/* i love to write code */
.writeCode{
color: #a0a0a0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1.3rem;
}
/* mongo db */
#mongo{
margin: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #00ff51;
font-size: 1.8rem;
background: rgba(0, 0, 0, 0.233);
}