1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-02-14 10:40:54 +01:00
2020-12-20 14:29:21 +01:00

110 lines
1.5 KiB
CSS

/* Define platform-specific typefaces */
@font-face {
font-family: "system";
font-style: normal;
src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma");
}
/* Web query */
@media screen and (min-width: 501px) {
img#logo {
width: 72px;
height: 72px;
}
}
/* Mobile screen+ query */
@media screen and (max-width: 500px) {
h1 {
font-size: 1.6rem;
margin: 0;
}
article#main, input {
font-size: 1.1rem;
}
img#logo {
width: 64px;
height: 64px;
}
}
/* Mobile screen query */
@media screen and (max-width: 320px) {
h1 {
font-size: 1.2rem;
margin: 0;
}
article#main, input {
font-size: 1.2rem;
}
img#logo {
width: 32px;
height: 32px;
}
}
body {
font-family:-apple-system, "system";
display: flex;
flex-direction: column;
min-height: 100vh;
font-size: 16px;
margin: 0px;
padding: 5px;
max-width: 600px;
box-sizing: border-box;
}
header {
display: flex;
align-items: center;
}
footer {
background-color: #fff;
}
article#main {
flex: 1;
}
img#logo {
margin: 5px;
}
input {
font-size: 1rem;
}
#current-download {
display: none;
}
.row {
display: flex;
align-items: center;
flex-wrap: wrap;
}
input#url {
flex: 1;
}
.show {
display: block;
}
.hidden {
display: none;
}
.notice {
font-size: 0.9rem;
}
#nojs {
margin: 5px 0;
}