39 lines
745 B
CSS
39 lines
745 B
CSS
<?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;
|
|
}
|
|
|
|
a{
|
|
color: white;
|
|
}
|
|
|
|
input{
|
|
background-color: <?= $color_3 ?>;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
body{
|
|
background-image: url("/themes/minimalpunk/assets/logo_1000px.png"):
|
|
background-size: 100px 100px;
|
|
}
|
|
|
|
#header{
|
|
text-align: right;
|
|
padding: 20px;
|
|
background-color: <?= $color_main ?>;
|
|
}
|