Skip to content
Open
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
457 changes: 454 additions & 3 deletions index.html

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src/icons/burger-menu-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/icons/button-arrow-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/button-arrow-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/icons/facebook-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/footer-button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/icons/instagram-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/red-square.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/images/NA_MU_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/bg-art-museum.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/current-events-painting1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/current-events-painting2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/from_classicism-painting.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/gallery-girl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/gallery_park.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/gallery_sunset.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/gallery_village.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/images/subscription-block-bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/styles/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@font-face {
font-family: Roboto, Arial, Helvetica, sans-serif;
src: url('../fonts/Roboto-Regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
src: url('../fonts/Roboto-Regular-webfont.woff') format('woff');
}
132 changes: 132 additions & 0 deletions src/styles/blocks/art_museum.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
.art_museum {
position: relative;
top: 0;
right: 0;
left: 0;

margin: 0;
margin-bottom: 70px;

@include on-tablet {
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: space-around;
}

&__bg {
grid-column: 1/-1;

width: 100%;
height: 300px;

background-image: url(/src/images/bg-art-museum.svg);
background-repeat: no-repeat;
background-size: cover;

@include on-tablet {
height: 384px;
}

@include on-desktop {
height: 655px;
}
}

&__description {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

margin: 0;

@include on-tablet {
align-items: start;
justify-content: left;
width: 50%;
}

@include on-desktop {
position: relative;
align-items: end;
}
}

&__title {
font-family: Montserrat, sans-serif;
font-size: 45px;
font-weight: 700;
line-height: 100%;
text-align: center;

@include on-tablet {
font-size: 54px;
text-align: left;
}

@include on-desktop {
margin-bottom: 89px;
font-size: 72px;
}
}

&__button-buy-tickets {
display: flex;

box-sizing: border-box;
width: $button-input-width-mobile;
height: $button-input-height-mobile;
border: 1px $bg-aside-color solid;

text-decoration: none;

&--description {
width: 230px;
border: none;

font-family: 'IBM Plex Sans', sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 100%;

background-color: transparent;
}

&--arrow {
width: 50px;
border: none;
background-color: $bg-aside-color;
}

@include on-tablet {
width: $button-input-width-tablet;
height: $button-input-height-tablet;
}
}

&__element-events {
display: none;

@include on-desktop {
position: absolute;
top: 110%;
right: 80%;
transform: rotate(271deg);

display: flex;

font-family: 'IBM Plex Sans', sans-serif;
font-size: 14px;
font-weight: 700;
color: #687480;

hr {
width: 70px;
height: 1px;
margin-right: 20px;
color: $bg-aside-color;
}
}
}
}
100 changes: 100 additions & 0 deletions src/styles/blocks/aside.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
.aside {
position: fixed;
z-index: 3;
top: 0;
right: 0;
left: 0;
transform: translateX(-100%);

overflow-y: hidden;

opacity: 0;
background-color: $bg-aside-color;

transition: all 0.3s;

&:target {
pointer-events: all;
transform: translateX(0);
opacity: 1;

&::before {
position: fixed;
z-index: 2;
top: 0;
left: 0;

display: block;

width: 100%;
height: 100%;

opacity: 0.5;
background-color: rgba(211, 197, 197, 0.69);
}
}

&__container {
box-sizing: border-box;
width: 90%;
padding-block: 27px;

@include grid-page;

font-family: 'IBM Plex Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 150%;
color: #fff;
}

&__menu {
display: flex;
gap: 30px;
align-items: first baseline;
justify-content: space-between;

margin-bottom: 24px;

color: #fff;

@include on-tablet {
grid-column: 1/3;
}

@include on-desktop {
grid-column: 1/5;
}

a {
color: #fff;
}
}

&__work-info {
grid-column: 1/-1;

@include on-tablet {
display: flex;
grid-column: 4/-1;
flex-direction: column;
}

@include on-desktop {
grid-column: 7/-1;
}
}

&__container-info {
display: flex;
gap: 30px;
}

&__time-info {
font-weight: 600;
}

&__part-schedule {
white-space: nowrap;
}
}
11 changes: 11 additions & 0 deletions src/styles/blocks/container.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.container {
padding-inline: 20px;

@include on-tablet {
padding-inline: 39px;
}

@include on-desktop {
padding-inline: 55px;
}
}
Loading
Loading