2014-08-12 16:16:44 +09:00
|
|
|
<template name="css">
|
|
|
|
<style>
|
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
|
|
|
|
|
|
|
/* Header */
|
|
|
|
|
2015-02-11 09:44:08 +09:00
|
|
|
.header{
|
|
|
|
background-color: {{getSetting "headerColor"}};
|
|
|
|
}
|
|
|
|
.header, .header .logo a, .header .logo a:visited{
|
|
|
|
color: {{getSetting "headerTextColor"}};
|
|
|
|
}
|
2015-03-23 08:57:29 +09:00
|
|
|
|
2015-03-23 11:38:30 +09:00
|
|
|
.header .dropdown-top-level, .header .dropdown-accordion .show-more{
|
2015-03-23 08:57:29 +09:00
|
|
|
border-color: {{headerTextColorHalfOpacity}};
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .svg-buttoncolor path{
|
|
|
|
fill: {{getSetting "headerTextColor"}};
|
|
|
|
}
|
|
|
|
|
2015-02-11 09:44:08 +09:00
|
|
|
input[type="submit"], button, .button, button.submit, .auth-buttons #login-buttons #login-buttons-password, .btn-primary, .header .btn-primary, .header .btn-primary:link, .header .btn-primary:visited, .error, .mobile-menu-button, .login-link-text, .post-category:hover{
|
2015-02-03 15:51:30 +09:00
|
|
|
background-color: {{getSetting "buttonColor"}};
|
|
|
|
color: {{getSetting "buttonTextColor"}};
|
2014-08-12 16:16:44 +09:00
|
|
|
}
|
2015-03-24 13:13:04 +09:00
|
|
|
a:hover, .post-content .post-heading .post-title:hover, .post-content .post-upvote .icon, .comment-actions a i, .comment-actions.upvoted .upvote i, .comment-actions.downvoted .downvote i, .toggle-actions-link, .post-meta a:hover, .action:hover, .post-upvote .upvote-link i, .post-actions .icon, .post-share .icon-share{
|
2014-08-12 16:16:44 +09:00
|
|
|
color: {{getSetting "buttonColor"}};
|
|
|
|
}
|
2015-03-24 13:13:04 +09:00
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.post-discuss .icon, .post-discuss .action-count{
|
|
|
|
color: {{getSetting "buttonColor"}};
|
|
|
|
}
|
|
|
|
}
|
2015-01-04 12:51:18 +09:00
|
|
|
.post-upvote .upvote-link i{
|
|
|
|
border-color: {{getSetting "buttonColor"}};
|
|
|
|
}
|
2014-08-12 16:16:44 +09:00
|
|
|
.toggle-actions-link{
|
|
|
|
border-color: {{getSetting "buttonColor"}};
|
|
|
|
}
|
|
|
|
.post-content .post-upvote .upvote-link.voted i.icon-check{
|
2014-08-21 15:30:05 +09:00
|
|
|
/*color: {{getSetting "secondaryColor"}};*/
|
2015-02-14 10:55:04 +09:00
|
|
|
}
|
|
|
|
|
2015-03-24 13:13:04 +09:00
|
|
|
.xyz{
|
|
|
|
color: {{getSetting "buttonColorHalfOpacity"}};
|
|
|
|
}
|
|
|
|
|
2015-02-14 10:55: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-21 20:51:23 +09:00
|
|
|
|
2015-02-14 10:55:04 +09:00
|
|
|
{{hideAuthClass}}
|
|
|
|
|
2014-08-12 16:16:44 +09:00
|
|
|
</style>
|
|
|
|
</template>
|