Compare commits

...

4 Commits

@ -130,13 +130,14 @@ h1 {
top:5%;
text-align: right;
background-color: rgba(11,239,235,0.7);
color: #371F10;
padding: 3px 35px 3px 10px;
z-index: 10;
font-size: 28px;
}
a, a:visited{
color:black;
color:#371F10;
text-decoration: underline;
}

@ -0,0 +1,47 @@
body {
background-color: #F4EBE8;
font-family: Roboto Mono, monospace;
font-size:20px;
padding-top: 200px;
padding-left: 120px;
padding-right: 120px;
}
#statbody {
display: flex;
}
.statcontainer {
display: inline-block;
width: 50%;
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;
}

@ -7,13 +7,13 @@ body {
.grid-container {
display: inline-grid;
grid-template-columns: repeat(8, 1fr);
grid-template-columns: repeat(3, 1fr);
grid-column-gap: 5px;
grid-row-gap: 120px;
grid-auto-flow: dense;
position: relative;
top: 60%;
left: 30%
left: 5%;
height: auto;
text-align: : center;
@ -73,10 +73,8 @@ h1 {
right:0%;
top:3%;
text-align: right;
background-color: #0BEFEB;
opacity: 0.5;
background-color: rgba(11,239,235,0.7);
padding: 3px 30px 3px 10px;
z-index: 10;
font-size: 32px;
}

@ -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…
Cancel
Save