2014-08-12 16:16:44 +09:00
|
|
|
<template name="css">
|
|
|
|
<style>
|
2015-03-24 14:30:04 +09:00
|
|
|
|
|
|
|
{{elementColors}}
|
|
|
|
|
2015-02-13 11:56:24 +09:00
|
|
|
@import url({{getSetting 'fontUrl'}});
|
2015-02-13 11:37:09 +09:00
|
|
|
|
|
|
|
body, textarea, input, button, input[type="submit"], input[type="button"]{
|
2015-02-13 11:56:24 +09:00
|
|
|
font-family: {{getSetting 'fontFamily'}};
|
2015-02-13 11:37:09 +09:00
|
|
|
}
|
|
|
|
|
2014-08-12 16:16:44 +09:00
|
|
|
body{
|
|
|
|
background: {{getSetting "backgroundCSS"}};
|
|
|
|
}
|
2015-03-23 08:57:29 +09:00
|
|
|
|
2015-03-24 14:30:04 +09:00
|
|
|
.logo-image a{
|
|
|
|
max-height:{{getSetting "logoHeight"}}px;
|
|
|
|
max-width:{{getSetting "logoWidth"}}px;
|
2015-03-23 08:57:29 +09:00
|
|
|
}
|
|
|
|
|
2015-03-24 14:30:04 +09:00
|
|
|
{{hideAuthClass}}
|
2015-03-23 08:57:29 +09:00
|
|
|
|
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
|
|
|
|
2014-08-12 16:16:44 +09:00
|
|
|
</style>
|
|
|
|
</template>
|