Skills
- HTML
- CSS/SCSS
- Git, GitHub
- Bootstrap
- Adobe Photoshop, Figma
Experience
These are links to my study projects
Education
State Marine Technical University St. Petersburg
Engineering-Economics Faculty
HTML/CSS coding courses on the Stepik platform
English
Pre-intermediate
Code example
:root {
--co-white: #fff;
--co-black: #000;
--co-dark: #263238;
--co-logo: #939393;
--co-gray: #8f95a5;
--co-bgc: #f5f5f5;
}
/* media breakpoints: 992px, 767px, 575px, 320px */
.card {
border-radius: 10px;
background-color: var(--co-bgc);
padding: 0 20px 20px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 30px;
text-align: left;
}
.card__img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.card__title {
font-weight: 600;
font-size: 30px;
color: var(--co-dark);
}