1
Fork 0
mirror of https://github.com/Steffo99/trivia.git synced 2024-10-16 09:37:27 +00:00
trivia/style.css

84 lines
1.3 KiB
CSS
Raw Normal View History

2019-08-14 17:51:10 +00:00
body {
background-color: #262a35;
}
.card {
display: grid;
background-color: #383e4e;
border-radius: 16px;
padding: 16px;
grid-row-gap: 8px;
grid-template-columns: 24px auto;
grid-column-gap: 8px;
font-family: "Source Sans Pro", sans-serif;
color: white;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}
#question {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 3;
align-items: center;
font-size: xx-large;
}
.letter {
grid-column: 1;
font-size: larger;
border-radius: 12px;
width: 24px;
height: 24px;
text-align: center;
}
.letter .text {
text-shadow: none;
color: #383e4e;
font-family: "Arial", sans-serif;
}
.letter.a {
background-color: #188ff3;
}
.letter.b {
background-color: #f37a18;
}
.letter.c {
background-color: #e118f3;
}
.letter.d {
background-color: #18f384;
}
.text {
margin: auto;
}
.answer {
grid-column: 2;
font-size: larger;
}
.answer.correct {
color: #0f0;
}
.answer.incorrect {
color: #f00;
}
.a {
grid-row: 2;
}
.b {
grid-row: 3;
}
.c {
grid-row: 4;
}
.d {
grid-row: 5;
}
.footer {
position: fixed;
bottom: 0;
color: #424961;
font-size: smaller;
font-family: "Arial", sans-serif;
padding: 16px;
}
.footer a {
color: #424961;
}
/*# sourceMappingURL=style.css.map */