Skip to content

Commit

Permalink
Merge pull request #4 from FuckingToasters/main
Browse files Browse the repository at this point in the history
Update brands.css
  • Loading branch information
JulianPrieber authored Jul 19, 2024
2 parents 17ddfce + 46135c5 commit c0741b8
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions brands.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
.button {
position: relative;
height: 23px;
background-color:var(--accentColor);
background-color: var(--accentColor);
color: var(--textColor);
border: solid var(--accentColor) 2px;
border-radius: 10px;
Expand All @@ -61,12 +61,25 @@
margin-bottom: 10px;
padding: 10px; /* 17px */
text-decoration: none;
width: 500px;
height: 48;
height: auto;
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
-webkit-tap-highlight-color: transparent;
}

/* Portrait mode */
@media (orientation: portrait) {
.button {
min-width: 250px;
}
}

/* Landscape mode */
@media (orientation: landscape) {
.button {
min-width: 500px;
}
}

@media (hover: hover) {
.buttonhover {
background-color: var(--accentColor);
Expand All @@ -93,4 +106,4 @@
-webkit-filter: invert(100%) grayscale(100%);
-moz-filter: invert(100%) grayscale(100%);
filter: invert(100%) grayscale(100%);
} */
} */

0 comments on commit c0741b8

Please sign in to comment.