Skip to content

Commit

Permalink
breakepoint update 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkadiusz committed Mar 7, 2024
1 parent 914854e commit 02e5628
Show file tree
Hide file tree
Showing 8 changed files with 156 additions and 63 deletions.
77 changes: 56 additions & 21 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
}
100% {
transform: translateY(0);
opacity: 90%;
opacity: 100%;
}
}
@keyframes scale-in-center {
Expand All @@ -122,7 +122,7 @@
}
100% {
transform: scale(1);
opacity: 90%;
opacity: 100%;
}
}
@keyframes pulsate {
Expand Down Expand Up @@ -220,14 +220,12 @@
.schedule {
position: relative;
width: 100%;
height: calc(100vh - 80px);
padding-top: 40px;
background-color: #fff;
overflow: hidden;
}
.schedule__title {
font-size: 23px;
margin-left: 80px;
font-size: 17px;
margin-left: 25px;
color: #00ccff;
font-weight: bold;
}
Expand All @@ -241,7 +239,7 @@
justify-content: start;
flex-wrap: wrap;
width: 100%;
height: 80px;
height: 40px;
background-color: #3a0049;
border-top: 4px solid #00ccff;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.452);
Expand All @@ -257,7 +255,7 @@

.schedule-box {
position: relative;
width: 50%;
width: 100%;
height: 100%;
}
.schedule-box__bar {
Expand All @@ -272,11 +270,11 @@
}
.schedule-box button {
position: relative;
width: 160px;
width: 80px;
height: 40px;
border-radius: 5px;
border: none;
font-size: 14px;
padding: 2px;
font-size: 9px;
text-transform: uppercase;
border: 2px solid grey;
color: #000;
Expand Down Expand Up @@ -363,23 +361,23 @@
}
.schedule-box__content .contentSchedule {
width: 100%;
height: 100%;
background-color: #fff;
height: 350px;
}
.schedule-box .schedule-board {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
height: 350px;
color: #fff;
background-color: #242424;
box-shadow: 0 0 5px black;
border-radius: 7px;
font-size: 30px;
font-size: 18px;
}

.posters-box {
display: none;
position: relative;
width: 50%;
height: 100%;
Expand Down Expand Up @@ -1403,10 +1401,10 @@ body {

.logo {
position: absolute;
top: 10%;
left: 10%;
width: 90px;
height: 90px;
top: 20%;
left: 20%;
width: 70px;
height: 70px;
background-image: url("../img/logo.png");
background-size: cover;
animation: flicker 2s linear both;
Expand Down Expand Up @@ -1493,8 +1491,8 @@ div.circleBehind a:hover:after {

.burger-icon {
position: fixed;
top: 20px;
right: 20px;
top: 10px;
right: 30px;
width: 45px;
height: 45px;
padding: 10px;
Expand Down Expand Up @@ -2195,6 +2193,23 @@ div.circleBehind a:hover:after {
.player-info {
display: none;
}
.schedule {
height: calc(100vh - 80px);
padding-top: 40px;
}
.schedule__title {
font-size: 23px;
margin-left: 80px;
}
.schedule-bar {
height: 80px;
}
.schedule-box button {
top: 20px;
width: 160px;
height: 50px;
font-size: 14px;
}
}
@media (min-width: 768px) {
.burger-icon {
Expand Down Expand Up @@ -2528,6 +2543,26 @@ div.circleBehind a:hover:after {
right: -10px;
top: -17px;
}
.schedule-box {
width: 50%;
}
.posters-box {
display: block;
}
.poster-bg {
position: relative;
margin: 10px;
}
.poster-card {
width: 200px;
height: 300px;
font-size: 3rem;
}
.poster-card img {
translate: 0 0 80px;
width: 100px;
height: 100px;
}
}
@media (min-width: 1200px) {
.logo {
Expand Down
2 changes: 1 addition & 1 deletion css/main.css.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@
<!-- // -------- ..:: MAIN ::.. -------- \\ -->

<main class="main">

<section id="home" class="home">

<div class="home__bg">
<div class="round-bg"></div>
<div class="home__bg--overlay"></div>
Expand Down Expand Up @@ -208,6 +208,7 @@ <h2>Twoje miejsce w sieci!</h2>
</div>
</div>
</div>

<div class="posters-box">
<div class="posters">
<div class="poster-tilt rotate-tilt-1"
Expand Down
25 changes: 25 additions & 0 deletions sass/_large.scss
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,31 @@
right: -10px;
top: -17px;
}

.schedule-box {
width: 50%;
}

.posters-box {
display: block;
}

.poster-bg {
position: relative;
margin: 10px;
}

.poster-card {
width: 200px;
height: 300px;
font-size: 3rem;

& img {
translate: 0 0 80px;
width: 100px;
height: 100px;
}
}
}

// ============================= M1200
Expand Down
51 changes: 51 additions & 0 deletions sass/_small.scss
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,55 @@
.player-info {
display: none;
}

// ramówka schedule

.schedule {
height: calc(100vh - 80px);
padding-top: 40px;

&__title {
font-size: 23px;
margin-left: 80px;
}
}

.schedule-bar {
height: 80px;
}

.schedule-box {
button {
top: 20px;
width: 160px;
height: 50px;
font-size: 14px;
}

// &__content {
// align-items: center;

// .contentSchedule {
// position: relative;
// width: 90%;
// height: 500px;
// }
// }

// .schedule-board {
// width: 100%;
// height: 500px;
// font-size: 30px;
// }

// &__content {
// width: 100%;
// height: calc(100% - 80px);

// .contentSchedule {
// width: 100%;
// height: 500px;
// }
// }
}
}
6 changes: 3 additions & 3 deletions sass/components/_animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
}
100% {
transform: translateY(0);
opacity: 90%;
opacity: 100%;
}
}

Expand All @@ -126,7 +126,7 @@
}
100% {
transform: scale(1);
opacity: 90%;
opacity: 100%;
}
}

Expand Down Expand Up @@ -234,4 +234,4 @@
100% {
background-positon-x: 0px;
}
}
}
12 changes: 6 additions & 6 deletions sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ body {

.logo {
position: absolute;
top: 10%;
left: 10%;
width: 90px;
height: 90px;
top: 20%;
left: 20%;
width: 70px;
height: 70px;
background-image: url('../img/logo.png');
background-size: cover;
animation: flicker 2s linear both;
Expand Down Expand Up @@ -203,8 +203,8 @@ div.circleBehind a:hover:after {

.burger-icon {
position: fixed;
top: 20px;
right: 20px;
top: 10px;
right: 30px;
width: 45px;
height: 45px;
padding: 10px;
Expand Down
Loading

0 comments on commit 02e5628

Please sign in to comment.