Added diverse.

This commit is contained in:
Trygve 2021-03-17 09:30:45 +01:00
parent 5c3ba05736
commit 84ba4d6087
2 changed files with 35 additions and 2 deletions

View File

@ -5,7 +5,8 @@
--dark-cont-bg-color: transparent;
--dark-header-bg-color: #121212;
--dark-text-color: #eeeeee;
--dark-btn-color: #303f9f
--dark-btn-color: #303f9f;
--dark-link-color: #5C6BC0;
}
body {
@ -18,13 +19,18 @@ body {
--header-bg-color: white;
--text-color: black;
--btn-color: #303f9f;
--link-color: #3949AB;
background-color: var(--bg-color);
color: var(--text-color);
}
header{
padding: 0.5rem;
}
a {
color: var(--link-color);
}
.header-list{
width: fit-content;
width: -moz-fit-content;
@ -138,6 +144,7 @@ header{
--text-color: var(--dark-text-color);
--btn-color: var(--dark-btn-color);
--accent-color: var(--dark-accent-color);
--link-color: var(--dark-link-color);
}
#li-nextcloud { }
#li-matrix { filter: invert(); }

26
diverse/index.php Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="no">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="UTF-8">
<meta name="theme-color" content="#263238"/>
<link rel="icon" type="image/png" href="/dist/favicon.png">
<link rel="stylesheet" href="../common/main.css">
</head>
<body class="theme-auto">
<?php include "../common/header.html"; ?>
<center>
<div class="cont">
<h1>Flere saker</h1>
<ul>
<li><a href="/phpsysinfo/">Server info</a></li>
<li><a href="/active-forks/">Gaffelsøker</a></li>
</ul>
</div>
</center>
</body>
</html>