18 lines
385 B
CSS
18 lines
385 B
CSS
/* Styles specific to Game1 */
|
|
|
|
/* page-level indicator to confirm CSS is loaded */
|
|
body.game1-page {
|
|
/* subtle background tint so you can visually confirm on /game */
|
|
background-color: #f9fbff;
|
|
}
|
|
|
|
/* example component style */
|
|
.game1-banner {
|
|
padding: 1rem 1.25rem;
|
|
border: 1px solid #cfe2ff;
|
|
background: #e9f2ff;
|
|
color: #0b5ed7;
|
|
border-radius: 8px;
|
|
margin: 1rem 0;
|
|
}
|