Vulcan/client/views/common/css.html

30 lines
745 B
HTML
Raw Normal View History

<template name="css">
<style>
2015-03-24 14:30:04 +09:00
{{elementColors}}
2015-02-13 11:37:09 +09:00
body, textarea, input, button, input[type="submit"], input[type="button"]{
font-family: {{getSetting 'fontFamily'}};
2015-02-13 11:37:09 +09:00
}
body{
background: {{getSetting "backgroundCSS"}};
}
2015-03-24 14:30:04 +09:00
.logo-image a{
max-height:{{getSetting "logoHeight"}}px;
max-width:{{getSetting "logoWidth"}}px;
}
2015-03-24 14:30:04 +09:00
{{hideAuthClass}}
2015-03-24 13:13:04 +09:00
@media screen and (max-width: 600px) {
2015-03-24 14:30:04 +09:00
/* find a way to get rid of this */
2015-03-24 13:13:04 +09:00
.post-discuss .icon, .post-discuss .action-count{
color: {{getSetting "buttonColor"}};
}
}
2015-02-14 10:55:04 +09:00
</style>
2015-04-03 18:50:39 +09:00
<link href='{{getSetting 'fontUrl'}}' rel='stylesheet' type='text/css'>
</template>