-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutMe.css
More file actions
188 lines (186 loc) · 3.58 KB
/
aboutMe.css
File metadata and controls
188 lines (186 loc) · 3.58 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
width: 100%;
height: 100vh;
background-color: rgb(67, 66, 66);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5rem;
background-color: rgb(67, 66, 66);
}
nav span {
color: rgb(229, 124, 35);
}
nav a,
nav li {
text-decoration: none;
list-style-type: none;
color: white;
position: relative;
}
nav ul {
width: 550px;
display: flex;
justify-content: space-between;
font-size: 16px;
}
nav ul li a:after {
content: "";
width: 0;
height: 2px;
position: absolute;
left: 0;
bottom: 0;
background: white;
transition: width 0.1s linear;
}
nav ul li a:hover:after {
width: 100%;
}
nav .bar{
font-size: 20px;
color: #fff;
display: none;
}
.responsive-navbar{
width: 100%;
height: auto;
background-color: rgb(67, 66, 66);
position: absolute;
z-index: 6;
text-align: center;
font-size: 18px;
line-height: 70px;
font-weight: 600;
display: none;
}
.responsive-links a{
text-decoration: none;
color: white;
cursor: pointer;
}
main .experience h1{
margin: 2rem;
color: white;
}
.experience{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.experience h1:after{
content: "";
height: 2px;
background-color: lightgray;
position: absolute;
width: 80%;
margin-left: 30px;
top: 7.6rem;
}
.jobCards{
width: 100%;
display: flex;
gap: 4rem;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 2rem;
}
.education h1{
position: relative;
}
.education h1:after{
top: 1.5rem;
}
.float-down{
display: block;
top: -2px;
height: 250px;
background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1349 110" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="rgb(255,94,86)" d="M 0 49 C 270.8 49 406.2 110 677 110 L 677 110 L 677 0 L 0 0 Z" stroke-width="0"></path> <path fill="rgb(255,94,86)" d="M 676 110 C 945.2 110 1079.8 29 1349 29 L 1349 29 L 1349 0 L 676 0 Z" stroke-width="0"></path> </svg>');
background-size: cover;
background-repeat: no-repeat;
transform: rotate(180deg);
}
.jobcard{
background-color: white;
padding: 3rem 2rem;
width: 60%;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
border-radius: 8px;
position: relative;
display: flex;
align-items: center;
}
.description{
display: flex;
flex-wrap: wrap;
}
.role{
display: flex;
flex-direction: column;
justify-content: center;
width: 40%;
}
.describe{
width: 60%;
}
.timeperiod{
position: absolute;
font-weight: 700;
font-size: 18px;
color: white;
background-color: rgba(255, 94, 86);
padding: 1rem;
left: -4rem;
top: -1.7rem;
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
border-radius: 8px;
}
.eduDesc{
width: 100%;
}
.passingYear{
color: rgba(255, 94, 86);
font-weight: 700;
display: none;
}
@media screen and (max-width: 1024px){
nav .bar{
display: inline;
}
.links{
display: none;
}
nav{
padding: 1rem;
}
.auto-type{
font-size: 14px;
}
.experience h1:after, .timeperiod{
display: none;
}
.passingYear{
display: inline;
}
.description{
flex-direction: column;
}
.role, .describe{
width: 100%;
}
.jobcard{
width: 90%;
margin: auto;
}
}