Vulcan/client/views/common/css.html
2015-03-24 14:30:04 +09:00

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>