mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
31 lines
No EOL
717 B
HTML
31 lines
No EOL
717 B
HTML
<template name="css">
|
|
<style>
|
|
|
|
{{elementColors}}
|
|
|
|
@import url({{getSetting 'fontUrl'}});
|
|
|
|
body, textarea, input, button, input[type="submit"], input[type="button"]{
|
|
font-family: {{getSetting 'fontFamily'}};
|
|
}
|
|
|
|
body{
|
|
background: {{getSetting "backgroundCSS"}};
|
|
}
|
|
|
|
.logo-image a{
|
|
max-height:{{getSetting "logoHeight"}}px;
|
|
max-width:{{getSetting "logoWidth"}}px;
|
|
}
|
|
|
|
{{hideAuthClass}}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
/* find a way to get rid of this */
|
|
.post-discuss .icon, .post-discuss .action-count{
|
|
color: {{getSetting "buttonColor"}};
|
|
}
|
|
}
|
|
|
|
</style>
|
|
</template> |