Vulcan/client/views/common/css.html

43 lines
1.7 KiB
HTML
Raw Normal View History

<template name="css">
<style>
@import url({{getSetting 'fontUrl'}});
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-02-11 09:44:08 +09:00
.header{
background-color: {{getSetting "headerColor"}};
}
.header, .header .logo a, .header .logo a:visited{
color: {{getSetting "headerTextColor"}};
}
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{
background-color: {{getSetting "buttonColor"}};
color: {{getSetting "buttonTextColor"}};
}
2015-01-04 12:51:18 +09:00
a:hover, .post-content .post-heading .post-title:hover, .post-content .post-upvote .upvote-link i, .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{
color: {{getSetting "buttonColor"}};
}
2015-01-04 12:51:18 +09:00
.post-upvote .upvote-link i{
border-color: {{getSetting "buttonColor"}};
}
.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
}
.logo-image a{
max-height:{{getSetting "logoHeight"}}px;
max-width:{{getSetting "logoWidth"}}px;
}
{{hideAuthClass}}
</style>
</template>