Vulcan/client/views/common/css.html
2015-04-13 16:29:33 +09:00

30 lines
734 B
HTML

<template name="css">
<style>
{{elementColors}}
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>
<link href='{{getSetting "fontUrl"}}' rel='stylesheet' type='text/css'>
</template>