Vulcan/client/views/common/css.html

26 lines
1 KiB
HTML
Raw Normal View History

<template name="css">
<style>
body{
background: {{getSetting "backgroundCSS"}};
}
input[type="submit"], button, .button, .auth-buttons #login-buttons #login-buttons-password, .btn, .error, .mobile-menu-button, .login-link-text{
background-color: {{getSetting "buttonColor"}} !important;
}
2014-08-12 17:11:36 +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{
color: {{getSetting "buttonColor"}};
}
.toggle-actions-link{
border-color: {{getSetting "buttonColor"}};
}
.post-content .post-upvote .upvote-link.voted i.icon-check{
color: {{getSetting "secondaryColor"}};
}
.header{
background-color: {{getSetting "headerColor"}};
}
2014-08-12 17:34:56 +09:00
.logo-image a{
height:{{getSetting "logoHeight"}}px;
width:{{getSetting "logoWidth"}}px;
}
</style>
</template>