Skip to content

Commit

Permalink
Make landing picture a bit transparent on small screens for lisibility
Browse files Browse the repository at this point in the history
  • Loading branch information
RuyBlast committed Nov 26, 2023
1 parent ee4128a commit 474d04b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1039,4 +1039,11 @@ h1, h2, h3, h4, h5, h6 {
.form-subscribe .form-control:-moz-placeholder { /* Firefox 18- */
color: #ccc;
font-style: italic;
}

/* Make landing picture a bit transparent on small screens for lisibility */
@media (max-width: 991px) {
#home-section img {
opacity: 0.5;
}
}
10 changes: 9 additions & 1 deletion scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,12 @@
/* Navbar */
@import "site-navbar";
/* Blocks */
@import "site-blocks";
@import "site-blocks";


/* Make landing picture a bit transparent on small screens for lisibility */
@media (max-width: 991px) {
#home-section img {
opacity: 0.5;
}
}

0 comments on commit 474d04b

Please sign in to comment.