42 lines
561 B
PHP
42 lines
561 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
Platinus Global CSS
|
|
|
|
*/
|
|
|
|
header("Content-Type: text/css");
|
|
?>
|
|
/*
|
|
|
|
Platinus Global CSS
|
|
Copyright (C) XlXi 2020
|
|
DO NOT DISTRIBUTE
|
|
|
|
*/
|
|
|
|
body, div, h1, h2, h3, h4, h5 {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: segoe ui;
|
|
min-height: 100vh;
|
|
background-color: rgb(248,248,254);
|
|
}
|
|
|
|
.plt-header {
|
|
height: 50px;
|
|
background: linear-gradient(hsl(213 71% 50% / 1), hsl(213 71% 30% / 1));
|
|
border: 0;
|
|
border-bottom: 1px #292a2f;
|
|
border-style: solid;
|
|
box-shadow: #292a2f 0 -18px 2px 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.container {
|
|
margin: auto;
|
|
max-width: 1000px;
|
|
}
|