81 lines
1.3 KiB
CSS
81 lines
1.3 KiB
CSS
.About {
|
|
background-color: #3F3F4A;
|
|
color: #AA9AA0;
|
|
max-width:100vw;
|
|
width:100%;
|
|
padding-bottom: 5.5rem;
|
|
display:flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.About .title {
|
|
margin-top: 4rem;
|
|
color: #BF8D8C !important;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.About .social {
|
|
padding:10px;
|
|
width: 85vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items:flex-start;
|
|
|
|
}
|
|
|
|
.About .links {
|
|
display:flex;
|
|
flex-direction:row;
|
|
align-content:center;
|
|
justify-content:space-evenly;
|
|
align-items:center;
|
|
flex-wrap: wrap;
|
|
width:85vw;
|
|
|
|
}
|
|
|
|
.About .links .link img {
|
|
width:10rem;
|
|
}
|
|
|
|
.About .links .link {
|
|
margin: 10px;
|
|
}
|
|
|
|
.About .link {
|
|
border-radius: 5px;
|
|
display:flex;
|
|
height: 10rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
}
|
|
|
|
.About .link.bg-white {
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.About .link.bg-black{
|
|
background-color: black;
|
|
}
|
|
|
|
.About .link.bg-hackerrank {
|
|
background-color: rgb(14, 20, 25);
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.About .links .link img {
|
|
width: 100%;
|
|
}
|
|
|
|
.About .link, .About .link.bg-white {
|
|
height:25vw;
|
|
width: 25vw;
|
|
}
|
|
} |