minor CSS adjustments

This commit is contained in:
Ondrej Synacek 2019-10-20 20:57:39 +02:00
parent b7d58febe8
commit 4b669d34aa
2 changed files with 93 additions and 43 deletions

BIN
lib/public/icon-180.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -4,13 +4,48 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="/manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="/icon-180.png">
<title>Facebook Event to iCal Converter</title>
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
font-size: 16px;
margin: 0px;
}
header, footer, article {
padding: 5px;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
}
article#main {
flex: 1;
}
p, input, table, button, label {
font-size: 1rem;
}
#current-download {
display: none;
}
#list {}
.list-wrapper {
max-height: 500px;
overflow: auto;
}
#list {
}
.row {
display: flex;
@ -28,9 +63,14 @@
min-width: 300px;
}
#form input {
margin: 5px;
}
#status {
flex: 1;
height: 1rem;
margin: 5px;
}
.status-item {
@ -49,9 +89,12 @@
</head>
<body>
<header>
<a id="current-download" href="javascript:void(0)"></a>
<h1>Facebook Events to iCal Converter</h1>
</header>
<article id="main">
<p>
Insert Facebook event URL into the form. When you submit it
you will get <a href="https://en.wikipedia.org/wiki/ICalendar"><code>ics</code></a>
@ -88,6 +131,7 @@
<br />
<br />
<div class="list-wrapper">
<table id="list" class="hidden">
<thead>
<tr>
@ -99,6 +143,12 @@
<tbody>
</tbody>
</table>
</div>
</article>
<footer>
Created by <a href="http://ondrejsynacek.com">Ondrej Synacek</a>
</footer>
<script>