60 lines
947 B
CSS
Executable File
60 lines
947 B
CSS
Executable File
<?php include("themes/minimalpunk/colors.php"); ?>
|
|
@font-face{
|
|
font-family: liberation-sans;
|
|
src: url(/themes/minimalpunk/assets/liberation-sans-Regular.ttf) format("truetype");
|
|
}
|
|
@font-face{
|
|
font-family: liberation-sans;
|
|
font-weight: bold;
|
|
src: url(/themes/minimalpunk/assets/liberation-sans-Bold.ttf) format("truetype");
|
|
}
|
|
|
|
body{
|
|
font-family: liberation-sans;
|
|
background-color: <?= $color_bg ?>;
|
|
color: white;
|
|
font-size: 15px;
|
|
}
|
|
|
|
a{
|
|
color: white;
|
|
}
|
|
|
|
input{
|
|
background-color: <?= $color_3 ?>;
|
|
color: white;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
margin: 5px 0px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
body{
|
|
background-image: url("/themes/minimalpunk/assets/logo_1000px.png"):
|
|
background-size: 100px 100px;
|
|
}
|
|
|
|
#header{
|
|
text-align: right;
|
|
padding: 20px;
|
|
background-color: <?= $color_main ?>;
|
|
}
|
|
|
|
h1, h2{
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1{
|
|
font-size:30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
h2{
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
p{
|
|
margin: 20px 0px;
|
|
}
|