-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The font spreading is hacky, but seems to be the only way to get a good responsive behavour? Use an off-white and off-black colour for the card, and black and white for the rest. Add a pixel to the dividing lines to make it feel more bingo, but then we need to very very slightly make the font size smaller to compensate.
- Loading branch information
Showing
10 changed files
with
58 additions
and
20 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
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
width: 100%; | ||
table-layout: fixed; | ||
border-collapse: collapse; | ||
background-color: #fcfaf7; | ||
} | ||
|
||
.Row { | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
position: fixed; | ||
bottom: 0; | ||
right: 0; | ||
padding: 25px; | ||
padding: 15px; | ||
text-align: right; | ||
} | ||
|
||
|
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
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 |
---|---|---|
@@ -1,11 +1,31 @@ | ||
.Card { | ||
background-color: #282c34; | ||
padding-bottom: 5px; | ||
box-shadow: 0px 5px 23px -8px #000000; | ||
} | ||
|
||
.Main-header { | ||
text-align: center; | ||
background-color: #282c34; | ||
color: white; | ||
padding-bottom: 15px; | ||
color: #fcfaf7; | ||
padding: 15px; | ||
} | ||
|
||
.Main-header h1 { | ||
margin-block: 0; /* reset user agent styles */ | ||
padding: 0.67em 0 0.67em; | ||
font-size: calc(30px + 2vmin); | ||
margin-bottom: 10px; | ||
font-size: calc(20px + 2vmin); | ||
font-family: "Jost", sans-serif; | ||
font-weight: 900; | ||
} | ||
|
||
.Main-header h1 .bingo { | ||
display: flex; | ||
justify-content: space-between; | ||
font-style: normal; | ||
text-transform: uppercase; | ||
font-size: calc(50px + 2vmin); | ||
line-height: 1.3; | ||
max-width: 600px; | ||
margin: auto; | ||
} |
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