japanese-conjugation-drill/conjugation/drill.css

69 lines
899 B
CSS
Raw Normal View History

2016-11-22 00:22:00 +00:00
body {
2016-11-22 01:59:30 +00:00
font-family: 'Source Sans Pro', sans-serif;
margin: 0;
}
.questionOuter {
background: #a0a0a0;
width: 100%;
}
#question {
padding-top: 40px;
font-size: 40px;
2016-11-26 16:45:32 +00:00
text-shadow: 2px 2px 4px #808080;
2016-11-22 01:59:30 +00:00
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
display: table;
}
#input {
background: #eee;
width: 100%;
}
#answer {
width: 100%;
background: #eee;
border: 0;
padding-top: 12px;
padding-bottom: 12px;
font-size: 30px;
margin-left: auto;
margin-right: auto;
display: table;
text-align: center;
}
#response {
width: 100%;
}
#message {
width: 100%;
}
#message > div {
padding-top: 4px;
padding-bottom: 4px;
text-align: center;
}
.correct,
.incorrect {
padding-top: 12px;
padding-bottom: 12px;
font-size: 30px;
width: 100%;
text-align: center;
}
.correct {
background: #8f8;
}
.incorrect {
background: #f88;
2016-11-22 00:22:00 +00:00
}