latin/app/static/css/LLPSI.css

64 lines
797 B
CSS
Raw Permalink Normal View History

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0 10vw 0 10vw;
}
header {
margin: 0;
padding: 0;
}
h1, h2 {
margin: 0;
}
h1 {
font-size: 5vw;
}
h2 {
font-size: 3vw;
2020-12-24 00:15:26 +01:00
display: inline;
}
.pensum_content {
font-size: 2vw;
}
.capitulum_content {
font-size: 2vw;
}
p.capitulum_content {
text-indent: 1em;
}
span {
display: inline-block;
}
2020-12-03 20:22:58 +01:00
input[type="text"] {
-webkit-appearance: none;
2020-12-03 20:22:58 +01:00
border: none;
border-bottom: 2px solid black;
box-sizing: border-box;
font: inherit;
2020-12-03 20:22:58 +01:00
}
input[type="text"].incorrect {
background-color: indianred;
2020-12-03 20:22:58 +01:00
}
input[type="text"].correct {
background-color: green;
}