added redux

This commit is contained in:
VyacheslavShtyrlin
2022-12-26 22:39:33 +05:00
commit 2838655cd4
156 changed files with 35988 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
.background {
background-image: url(./images/background.png);
height: 100vh;
width: 100%;
background-size: cover;
}
.blur {
backdrop-filter: blur(12px);
height: 100vh;
width: 100%;
position: relative;
}
.content__container {
display: flex;
justify-content: center;
position: absolute;
top: 25%;
width: 100%;
}
.content__player {
position: absolute;
top: 0;
bottom: 0;
height: auto;
overflow: hidden;
width: 100%;
}
.content__container_off {
display: none;
}
@media screen and (max-width: 639px) {
.content__container {
display: block;
position: static;
}
.background {
background-image: none;
background-color: #262626;
}
.blur {
position: relative;
overflow: hidden;
}
}
.demos__tittle {
margin: 0;
font-style: normal;
font-weight: 400;
font-size: 48px;
line-height: 100%;
/* or 40px */
margin-bottom: 56px;
color: #ffffff;
}
.demos_container {
background: #141414;
border-radius: 16px;
}