Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions StyleSheet1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
body {
font-family: Gill Sans, sans-serif;
}
p {
margin: 0;
}
.header {
text-align: center;
font-size: 30px;
}
.text-block {
text-align: left;
color: #40EA53;
background-color: #625620;
width: 600px;
padding: 30px;
}
.image-block {
position: relative;
top: 20px;
padding: 20px;
}
.image-block__image-bg {
position: relative;
width: 600px;
}
.image-block__image-fg {
position: absolute;
top: 40px;
left: 40px;
height: 300px;
}
.traffic-light {
width: 300px;
height: 550px;
background-color: #1e1e1e;
border: 30px solid black;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
padding: 20px;
}
.traffic-light__light {
width: 150px;
height: 150px;
border: 10px solid #4b4d4b;
border-radius: 50%;
}
.red {
background-color: red
}
.yellow {
background-color: yellow
}
.green {
background-color: green
}
.maze {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-rows: repeat(3, 100px);
}
.maze__cell {
background-color: gray;
}
.maze__cell_border-bottom {
border-bottom: 5px solid black;
}
.maze__cell_border-right {
border-right: 5px solid black;
}
.maze__cell_border-left {
border-left: 5px solid black;
}
.maze__cell_border-top {
border-top: 5px solid black;
}
82 changes: 82 additions & 0 deletions StyleSheet2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
.list {
list-style-type: disc;
}
.list__item {
padding: 5px;
transition: color 0.3s ease;
}
.list__item:hover {
color: #f83030;
}
.family {
display: block;
}
.family__parent1 {
margin: 10px;
padding: 5px;
}

.parent1__child {
padding: 5px;
margin: 5px 10px;
color: red;
}
.family__parent2 {
color: orange;
margin: 10px;
padding: 5px;
}
.parent2__child {
color: #b4005a;
border: 1px dashed orange;
padding: 5px;
margin: 5px 10px;
}
.family__parent3 {
margin: 10px;
padding: 5px;
color: initial;
}
.parent3__child {
color: initial;
padding: 5px;
margin: 5px 10px;
}
.family__parent2 ~ .family__parent3,
.family__parent2 ~ .family__parent3 .parent3__child {
color: green;
}
.family__parent2 ~ .family__parent3 .parent2__child {
color: purple;
border: none;
}
.programming-text {
font-size: 16px;
}
.programming-text__link {
list-style-type: none;
text-decoration: none;
color: inherit;
font-weight: bold;
}
.programming-text__link::before {
content: "🌐";
font-size: 10px;
}
.programming-list {
position: relative;
padding-bottom: 20px;
list-style-type: none
}
.programming-list::after {
content: "";
display: block;
width: 200px;
height: 50px;
margin-top: 20px;
background-image: url('https://ssau.ru/i/logo/logo-white-ru.svg');
background-repeat: no-repeat;
background-size: contain;
background-color: royalblue;
border-radius: 3px;
}
166 changes: 166 additions & 0 deletions StyleSheet3.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #EEE2DC;
color: #123C69;
display: flex;
justify-content: center;
}

.resume {
background-color: #EDC7B7;
width: 100%;
max-width: 700px;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 25px #123C69;
}

.resume__top-section {
display: flex;
gap: 40px;
margin-bottom: 30px;
border-bottom: 2px solid #123C69;
padding-bottom: 30px;
}

.top-section__identity-column {
flex: 0 0 250px;
text-align: center;
}

.top-section__about-column {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

.identity-column__avatar {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #AC3B69;
margin-bottom: 15px;
}

.identity-column__title {
margin: 10px 0 5px;
font-size: 20px;
color: #123C69;
}

.identity-column__birth-date {
color: #123C69;
font-size: 20px;
margin-bottom: 10px;
}

.identity-column__github-link {
display: inline-block;
text-decoration: none;
background-color: #123C69;
color: white;
padding: 8px 16px;
border-radius: 20px;
font-weight: bold;
transition: background 0.3s;
}

.identity-column__github-link:hover {
background-color: #AC3B69;
}

.resume__bottom-section {
margin-top: 20px;
}

.bottom-section__bottom-element {
margin-bottom: 30px;
}

.about-column__subtitle {
color: #AC3B69;
border-left: 4px solid #AC3B69;
padding-left: 10px;
margin-bottom: 15px;
font-size: 1.4rem;
}

.about-column__text {
line-height: 1.5;
}

.bottom-element__subtitle {
border-left: 4px solid;
padding-left: 10px;
}

.bottom-element__tags {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.tags__item {
background-color: #EEE2DC;
color: #123C69;
padding: 5px 12px;
border-radius: 5px;
font-size: 20px;
font-weight: 600;
}

.bottom-element__skills-category {
margin-bottom: 10px;
font-weight: bold;
display: block;
}
.projects-content__projects-list {
list-style: none;
padding: 0;
margin: 0;
}

.projects-list__item {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(172, 59, 105, 0.2);
}

.projects-list__item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.item__project-item-title {
color: #123C69;
font-weight: bold;
margin-bottom: 5px;
font-size: 1.1rem;
}

.item__project-item-description {
color: rgba(18, 60, 105, 0.8);
font-size: 0.95rem;
margin-bottom: 10px;
line-height: 1.4;
}

.item__project-item-link {
color: #AC3B69;
text-decoration: none;
font-weight: bold;
display: inline-block;
padding: 5px 10px;
border-radius: 5px;
transition: all 0.3s;
}

.item__project-item-link:hover {
background-color: #AC3B69;
color: white;
}
Binary file added avatar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading