Last active
May 6, 2022 20:28
-
-
Save susanBuck/fba8872a0e06d940dd5129de36892bfa to your computer and use it in GitHub Desktop.
FlashWord starting CSS
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
[v-cloak] { | |
display: none; | |
} | |
#app { | |
font-family: Avenir, Helvetica, Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-align: center; | |
color: black; | |
margin-top: 60px; | |
} | |
#cards { | |
justify-content: center; | |
display: grid; | |
grid-template-columns: 300px 300px 300px; | |
grid-gap: 30px; | |
} | |
.card { | |
background-color: #E8F0FF; | |
border-radius: 5px; | |
padding: 10px 0; | |
font-size: 25px; | |
} | |
input[type=text] { | |
border: 0; | |
font-size: 25px; | |
border-radius: 5px; | |
margin-top: 5px; | |
text-align: center; | |
padding: 5px; | |
} | |
.word { | |
font-weight: bold; | |
} | |
.correctAnswer { | |
padding: 0; | |
margin: 0; | |
} | |
.correct { | |
color: #0f5132; | |
background-color: #d1e7dd; | |
} | |
#correctCount { | |
font-size: 20px; | |
margin: 10px; | |
font-weight: bold; | |
padding: 10px; | |
} | |
#completed { | |
font-size: 20px; | |
font-weight: bold; | |
color: #0f5132; | |
padding: 10px; | |
margin: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment