added redux
This commit is contained in:
+69
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user