changes on server

This commit is contained in:
Michael Murtaugh
2019-09-11 12:17:19 +02:00
parent c5af587d38
commit 47ce5c4d37
7 changed files with 126 additions and 80 deletions

View File

@@ -6,17 +6,19 @@
<link rel="stylesheet" type="text/css" href="/m/style.css">
<style>
body {
margin: 5%;
margin-left: 50px;
margin-top: 10px;
background: #111111;
margin: 1.5em;
margin-left: 40px;
margin-top: 2.5em;
background: #333;
color: white;
overflow: auto;
font-family: Vega;
font-size: 17px;
}
h1 {
margin: 0;
font-family: Combined;
font-size: 100%;
font-size: 1.5em;
}
#content {
margin-top: 1em;
@@ -40,7 +42,7 @@
padding: 5px;
}
div.edit {
margin-bottom: 0.5em;
margin-bottom: 1em;
}
</style>
</head>

View File

@@ -4,6 +4,12 @@
<title>recent files</title>
<meta charset="utf-8">
<style>
:root {
--font-title: Combined;
--font-body: Vega;
--color-a: #a700ff;
--color-b: #00ab6b;
}
body {
background: #eee;
background-image: linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0), linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0);
@@ -17,6 +23,19 @@
}
div.file img {
max-width: 100%;
display: block;
}
div.file a {
border-style: solid;
border-width: 2px;
border-color: transparent;
display: block;
}
div.file a:hover {
border-image: linear-gradient(to right, var(--color-a), var(--color-b));
border-image-slice: 1;
border-width: 2px;
border-color: initial;
}
div#footer {
clear: both;