mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-01 10:24:31 +01:00
Madeorsk
73d932173a
* Security improvement: index.php and static files are now in a webroot directory. The webserver should point to this directory instead of the one containing all the code and the configuration.
47 lines
835 B
CSS
47 lines
835 B
CSS
main input[name="title"],
|
|
main input[name="title"]:focus
|
|
{
|
|
background: transparent;
|
|
font-family: "PT Serif", serif;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
@keyframes scalex
|
|
{
|
|
0%
|
|
{ transform: scaleX(0); }
|
|
100%
|
|
{ transform: scaleX(1); }
|
|
}
|
|
|
|
main #choices .choice
|
|
{
|
|
animation: scalex 0.2s linear;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: auto;
|
|
width: 25rem;
|
|
}
|
|
main #choices .choice > *
|
|
{ margin: 0; }
|
|
main #choices .choice input
|
|
{ font-family: "PT Serif", serif; }
|
|
main #choices .choice .delete
|
|
{
|
|
background: #FF2E31;
|
|
width: 4em;
|
|
}
|
|
|
|
@media screen and (max-width: 640px)
|
|
{
|
|
main #choices .choice
|
|
{ width: 100%; }
|
|
main #choices .choice input
|
|
{ flex: 1; min-width: 0; }
|
|
main #choices .choice .delete
|
|
{ flex: 0 0; min-width: 3em; }
|
|
|
|
main input[name="title"],
|
|
main input[name="title"]:focus
|
|
{ font-size: 1.3em; }
|
|
} |