edited timeline css and html templates
commit
98560ae573
@ -0,0 +1,50 @@
|
|||||||
|
body {
|
||||||
|
background-color: #F4EBE8;
|
||||||
|
font-family: Roboto Mono, monospace;
|
||||||
|
font-size:20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#statbody {
|
||||||
|
display: flex;
|
||||||
|
margin: 120px;
|
||||||
|
float: left
|
||||||
|
}
|
||||||
|
|
||||||
|
.statcontainer {
|
||||||
|
display: inline-block;
|
||||||
|
width: 50%;
|
||||||
|
min-height: 900px;
|
||||||
|
padding: 20px;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.counter {
|
||||||
|
display: flex;
|
||||||
|
width: 100%
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
display: inline-block;
|
||||||
|
width: 40%;
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.number {
|
||||||
|
font-size: 72px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#graphs {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image{
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
#counter {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="{{ staticpath }}//static/archive.css" />
|
||||||
|
<script type="text/javascript" src="{{ staticpath }}//static/archive.js"></script>
|
||||||
|
<link rel="stylesheet" href="{{ staticpath }}//static/stats.css" />
|
||||||
|
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
|
||||||
|
<title>{{ page.name }}</title>
|
||||||
|
</head>
|
||||||
|
<body class="title">
|
||||||
|
|
||||||
|
<h1>{{ page.name }}</h1>
|
||||||
|
<div id="body">{{ body|safe }}</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue