mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
47 lines
No EOL
1.8 KiB
HTML
47 lines
No EOL
1.8 KiB
HTML
<template name="css">
|
|
<style>
|
|
@import url({{getSetting 'fontUrl'}});
|
|
|
|
body, textarea, input, button, input[type="submit"], input[type="button"]{
|
|
font-family: {{getSetting 'fontFamily'}};
|
|
}
|
|
|
|
body{
|
|
background: {{getSetting "backgroundCSS"}};
|
|
}
|
|
.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"}};
|
|
}
|
|
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"}};
|
|
}
|
|
.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{
|
|
/*color: {{getSetting "secondaryColor"}};*/
|
|
}
|
|
|
|
.logo-image a{
|
|
max-height:{{getSetting "logoHeight"}}px;
|
|
max-width:{{getSetting "logoWidth"}}px;
|
|
}
|
|
|
|
.svg-buttoncolor path{
|
|
fill: {{getSetting "buttonColor"}};
|
|
}
|
|
|
|
{{hideAuthClass}}
|
|
|
|
</style>
|
|
</template> |