1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-06-05 22:09:25 +02:00

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