Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | @import "../../styles/colors";
.intro-header {
height: 100%;
padding-bottom: 10px;
margin-right: 15px;
margin-left: auto;
background: $white;
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
@media (max-width: 992px) {
margin-bottom: 15px;
}
}
.about-me {
h2 {
font-size: 1.5rem;
}
}
.avatar {
width: 120px;
height: 120px;
margin-top: 1rem;
margin-bottom: 1rem;
border-radius: 50%;
transition: transform 0.5s;
&:hover {
transform: scale(1.2);
}
}
.soliloquy {
text-align: center;
}
.custom-icon {
i {
background: $regal-blue;
border-radius: 50%;
transition: background 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fa-layers {
span {
font-size: 200%;
}
}
&:hover {
border-radius: 50%;
i {
background: $light-blue;
}
}
}
|