finished everything for now
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 29 KiB |
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "App",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/android-icon-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image\/png",
|
||||
"density": "0.75"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image\/png",
|
||||
"density": "1.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image\/png",
|
||||
"density": "1.5"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image\/png",
|
||||
"density": "2.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image\/png",
|
||||
"density": "3.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png",
|
||||
"density": "4.0"
|
||||
}
|
||||
]
|
||||
}
|
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 233 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 78 KiB |
@ -0,0 +1,6 @@
|
||||
<template>
|
||||
<footer>
|
||||
This website is open source. <a href="https://github.com/ayush123460/ayushm.com">Find me on Github!</a>
|
||||
© 2020 Ayush Mukherjee, all rights to content reserved.
|
||||
</footer>
|
||||
</template>
|
@ -0,0 +1,17 @@
|
||||
footer {
|
||||
background: white;
|
||||
height: 150px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: $font-nav;
|
||||
padding: 0 30px;
|
||||
|
||||
a,
|
||||
a:active,
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: $primary;
|
||||
}
|
||||
}
|
@ -1,2 +1,5 @@
|
||||
@import 'header',
|
||||
'btn';
|
||||
'btn',
|
||||
'title',
|
||||
'panel',
|
||||
'footer';
|
@ -0,0 +1,92 @@
|
||||
.panel {
|
||||
padding: 0 30px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
.panel__image {
|
||||
max-width: 640px;
|
||||
|
||||
img {
|
||||
width: 90%;
|
||||
border-radius: 50px;
|
||||
border: 4px solid $quaternary;
|
||||
box-shadow: 0 3px 10px rgba($secondary, 25%);
|
||||
}
|
||||
}
|
||||
|
||||
.panel__body {
|
||||
margin-right: 10px;
|
||||
|
||||
.body__number {
|
||||
position: absolute;
|
||||
top: -90px;
|
||||
left: -30px;
|
||||
font-weight: $font-bold;
|
||||
font-size: $font-panel;
|
||||
color: $quaternary;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.body__title {
|
||||
font-size: $font-heading;
|
||||
font-weight: $font-bold;
|
||||
}
|
||||
|
||||
.body__content {
|
||||
margin: 40px 0;
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.panel-sec {
|
||||
flex-direction: row-reverse;
|
||||
|
||||
.panel__body {
|
||||
margin-right: 0;
|
||||
margin-left: 10px;
|
||||
.body__number {
|
||||
left: 90%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1100px) {
|
||||
.panel, .panel-sec {
|
||||
flex-direction: column-reverse;
|
||||
|
||||
.panel__image {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.panel__body {
|
||||
.body__number {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.body__cta {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
.panel {
|
||||
padding: 0;
|
||||
|
||||
.panel__body {
|
||||
.body__cta {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
a:first-child {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
.title {
|
||||
margin-top: 180px;
|
||||
padding-top: 20px;
|
||||
font-size: $font-section;
|
||||
font-weight: $font-bold;
|
||||
color: $primary;
|
||||
|
||||
.sub {
|
||||
color: rgba($secondary, 0.8);
|
||||
font-size: $font-section-sub;
|
||||
font-weight: $font-normal;
|
||||
}
|
||||
}
|
@ -1,20 +1,282 @@
|
||||
main {
|
||||
position: relative;
|
||||
padding: 60px 120px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 60px 60px;
|
||||
|
||||
.tag {
|
||||
font-size: $font-heading;
|
||||
margin-bottom: 60px;
|
||||
.content {
|
||||
margin-top: 60px;
|
||||
margin-right: 50px;
|
||||
|
||||
.tag {
|
||||
font-size: $font-hero;
|
||||
}
|
||||
|
||||
.para {
|
||||
max-width: 600px;
|
||||
margin: 40px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.illustration {
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.work {
|
||||
padding: 150px 30px;
|
||||
|
||||
.panel:nth-child(2) {
|
||||
margin: 150px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.para {
|
||||
.about {
|
||||
width: 100%;
|
||||
margin-top: 150px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.profile {
|
||||
background: white;
|
||||
max-width: 300px;
|
||||
margin-right: 40px;
|
||||
border: 4px solid $quaternary;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 3px 10px rgba($secondary, 20%);
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
max-width: 600px;
|
||||
margin-bottom: 60px;
|
||||
|
||||
.heading {
|
||||
span {
|
||||
color: $primary;
|
||||
font-size: $font-heading;
|
||||
font-weight: $font-bold;
|
||||
}
|
||||
}
|
||||
|
||||
.body {
|
||||
margin: 30px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.illustration {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 120px;
|
||||
.skills {
|
||||
margin-top: 120px;
|
||||
padding-left: 30px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
|
||||
.list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.list__heading {
|
||||
font-size: $font-heading;
|
||||
font-weight: $font-bold;
|
||||
}
|
||||
|
||||
.list__body {
|
||||
ul li {
|
||||
padding-left: 2px;
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
|
||||
&:before {
|
||||
content: "-";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.contact {
|
||||
margin: 120px 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.form {
|
||||
margin-right: 30px;
|
||||
padding: 15px 30px;
|
||||
max-width: 500px;
|
||||
width: 100%;
|
||||
background: $quaternary;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 3px 15px rgba($secondary, 20%);
|
||||
|
||||
.input-group {
|
||||
padding: 10px 0;
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 12px 20px;
|
||||
font-size: $font-nav;
|
||||
border: none;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
padding: 12px 20px;
|
||||
font-size: $font-nav;
|
||||
border: none;
|
||||
border-radius: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.socials {
|
||||
max-width: 500px;
|
||||
width: 100%;
|
||||
height: 500px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center; .about {
|
||||
|
||||
}
|
||||
margin: 10px 0;
|
||||
|
||||
img {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
a,
|
||||
a:active,
|
||||
a:visited {
|
||||
color: $primary;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1200px) {
|
||||
main {
|
||||
.content {
|
||||
.cta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
a:first-child {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
main {
|
||||
padding: 60px 30px;
|
||||
|
||||
.content {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.illustration {
|
||||
position: absolute;
|
||||
width: 420px;
|
||||
top: 120px;
|
||||
right: -150px;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
.about {
|
||||
flex-direction: column;
|
||||
|
||||
.content {
|
||||
.heading {
|
||||
padding: 0 30px;
|
||||
}
|
||||
|
||||
.body {
|
||||
padding: 0 30px;
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.skills {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.list {
|
||||
.list__body {
|
||||
ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.contact {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
main {
|
||||
padding: 30px 0;
|
||||
|
||||
.content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.illustration {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.about {
|
||||
.content {
|
||||
.cta {
|
||||
flex-direction: column;
|
||||
|
||||
a:first-child {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|