gitignore dist
parent
41cf29c1f0
commit
5a95050bb4
@ -0,0 +1 @@
|
||||
dist
|
@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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);
|
||||
background-position: 0 0, 20px 20px;
|
||||
background-size: 40px 40px;
|
||||
}
|
||||
div.file {
|
||||
float: left;
|
||||
margin: 8px;
|
||||
max-width: 45%;
|
||||
}
|
||||
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;
|
||||
text-align: center;
|
||||
}
|
||||
a#more {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
background: black;
|
||||
padding: 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content"></div>
|
||||
<div id="footer"><a href="#" id="more">en plus…</a></div>
|
||||
<script src="dist/recentfiles.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue