-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc28bad
commit 8e75cfc
Showing
4 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,53 @@ | ||
.blurb { | ||
display: flex; | ||
display: grid; | ||
justify-items: center; | ||
align-items: center; | ||
justify-content: center; | ||
grid-template-columns: 1fr 1fr; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.blurbTextBox { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.blurbTextBox h1 { | ||
color: var(--shade-color); | ||
font-size: 48px; | ||
font-weight: 600; | ||
text-align: center; | ||
margin: 0; | ||
} | ||
|
||
.blurbTextBox p { | ||
font-size: 20px; | ||
font-weight: 600; | ||
text-align: center; | ||
} | ||
|
||
.startNow { | ||
color: var(--bg-color); | ||
font-size: 18px; | ||
font-weight: 600; | ||
background-color: var(--shade-color); | ||
box-shadow: 2px 2px 2px var(--black-shadow-color); | ||
border-style: solid; | ||
border-color: var(--shade-color); | ||
border-radius: 100px; | ||
border-width: 1px; | ||
padding: 10px 20px; /* Added padding to create nice margins around the text */ | ||
transition: | ||
background-color 0.166666s ease, | ||
transform 0.166666s ease; | ||
} | ||
|
||
.startNow:active { | ||
transform: scale(0.9) scale(1); | ||
transition: transform 0.166666s ease; | ||
} | ||
|
||
.startNow:hover { | ||
background-color: var(--accent-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ | |
.Blurb { | ||
display: grid; | ||
} | ||
|
||
p { | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters