Skip to content

Commit

Permalink
Change front page button margins
Browse files Browse the repository at this point in the history
  • Loading branch information
WallSoGB committed Nov 18, 2024
1 parent ef9aad3 commit efe650c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
13 changes: 12 additions & 1 deletion css/frontPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ body {
user-select: none;
color: #ffffff;
font-size: 2.2em;
line-height: 2em;
text-decoration: none;
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -72,6 +71,8 @@ body {
color: #ffffff;
font-size: 1rem;
text-shadow: rgb(0, 0, 0) 0 1px 8px;
display: inline-block;
margin-top: 1.1em;
}

.welcomeContent .welcomeButton,
Expand Down Expand Up @@ -149,6 +150,16 @@ body {
text-shadow: 0.05em 0.075em 0.1em rgba(0, 0, 0, 0.7);
}

.disabledButton {
pointer-events: none;
cursor: not-allowed;
background-color: #333333 !important;
}

.disabledButton strong {
color: rgba(255, 255, 255, 0.3764705882) !important;
}

@media screen and (min-width: 900px) {
#title br {
display: none;
Expand Down
2 changes: 1 addition & 1 deletion css/frontPage.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion css/frontPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ body {
user-select: none;
color: #ffffff;
font-size: 2.2em;
line-height: 2em;
text-decoration: none;
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -67,6 +66,8 @@ body {
color: #ffffff;
font-size: 1rem;
text-shadow: rgb(0, 0, 0) 0 1px 8px;
display: inline-block;
margin-top: 1.1em;
}

.welcomeContent .welcomeButton,
Expand Down Expand Up @@ -143,6 +144,16 @@ body {
text-shadow: 0.05em 0.075em 0.1em rgba(0, 0, 0, 0.7);
}

.disabledButton {
pointer-events: none;
cursor: not-allowed;
background-color: #333333 !important;
}

.disabledButton strong {
color: #ffffff60 !important;
}

@media screen and (min-width: 900px) {
#title br {
display: none;
Expand Down

0 comments on commit efe650c

Please sign in to comment.