buttons
This commit is contained in:
@ -14,7 +14,7 @@ $button_color: color.adjust($accent_color, $hue: 90);
|
||||
|
||||
%button-base {
|
||||
cursor: default;
|
||||
// color: black;
|
||||
color: black;
|
||||
font-size: 0.9rem;
|
||||
text-decoration: none;
|
||||
border: 1px solid black;
|
||||
@ -51,6 +51,8 @@ body {
|
||||
|
||||
#topnav {
|
||||
@include navbar($accent_color);
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#bottomnav {
|
||||
@ -63,6 +65,11 @@ body {
|
||||
background-color: $dark_bg;
|
||||
}
|
||||
|
||||
.site-title {
|
||||
display: inline;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.thread-title {
|
||||
margin: 0;
|
||||
}
|
||||
@ -138,6 +145,15 @@ button, input[type="submit"], .linkbutton {
|
||||
color: white;
|
||||
@include button(red);
|
||||
}
|
||||
|
||||
&.warn {
|
||||
@include button(#fbfb8d);
|
||||
}
|
||||
}
|
||||
|
||||
// not sure why this one has to be separate, but if it's included in the rule above everything breaks
|
||||
input[type="file"]::file-selector-button {
|
||||
@include button($button_color);
|
||||
}
|
||||
|
||||
.pagebutton {
|
||||
@ -158,3 +174,7 @@ button, input[type="submit"], .linkbutton {
|
||||
min-width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.modform {
|
||||
display: inline;
|
||||
}
|
||||
|
Reference in New Issue
Block a user