Age: 27
Country: Belarus
City: Minsk
Education: BSU, FSC, specialty: Applied Informatics
HTML, PUG, Nunjucks
CSS, SASS (SCSS), Stylus
Atomic CSS, CSS-Modules, BEM
JavaScript (ES 5, 2015+)
Git / GitHub
Node.js, Gulp, Webpack, Vite
React, Redux, Next
Vue
May 2017 – August 2017 WordPress-developer at Moonway.by studio
September 2017 – July 2019 Freelance Front-end developer
July 2019 – July 2020 Front-end developer at SportData.by
July 2020 – March 2022 Freelance Front-end developer
March 2022 – Present Front-end developer at Wild Spike
.view {
position: relative;
width: 100px;
height: 100px;
}
.view__inner {
position: absolute;
display: block;
width: 100px;
height: 100px;
border-radius: 50%;
box-shadow:
7.5px -5px 0 0 rgba(49,27,146, .6),
-7.5px -5px 0 0 rgba(81,45,168, .6),
0 10px 0 0 rgba(103,58,183, .6);
animation: rotate 5s linear infinite;
}
@keyframes rotate {
50% {
transform: scale(1.4) rotate(360deg);
}
100% {
transform: scale(1) rotate(720deg);
}
}