Skip to content

Commit

Permalink
Update style
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdijk committed Jan 4, 2024
1 parent 2bf6b8c commit d3067f4
Showing 1 changed file with 28 additions and 5 deletions.
33 changes: 28 additions & 5 deletions narrowcast_content/upcoming_activities/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ body {
grid-template-columns: auto;
grid-template-rows: 170px auto;
height: 100vh;
background-color: white;
}

.top-bar {
Expand All @@ -53,11 +54,11 @@ body {
font-size: 63px;
justify-self: start;
align-self: end;
grid-row:1;
grid-row: 1;
grid-column: 1;
}

.top-bar a{
.top-bar a {
color: white;
text-decoration: none;
font-size: 27px;
Expand All @@ -82,13 +83,13 @@ body {

/* Hide scrollbar for Chrome, Safari and Opera */
.schedule::-webkit-scrollbar {
display: none;
display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.schedule {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}

.day {
Expand Down Expand Up @@ -165,4 +166,26 @@ body {
border-left-color: #90B6CB;
}

@media only screen and (max-width: 1300px) {
body {
grid-template-rows: 120px auto;
}

.top-bar {
grid-template-rows: 55fr 45fr;
}

.top-bar h1 {
font-size: 40px;
}

.top-bar a {
font-size: 20px;
}

.top-bar img {
height: 75px;
}

}

0 comments on commit d3067f4

Please sign in to comment.