salix/front/core/styles/global.scss

40 lines
583 B
SCSS

@import "variables";
html, body {
background-color: $color-bg;
overflow: auto;
height: 100%;
font-family: vn-font;
color: $color-font;
font-size: $font-size;
margin: 0;
padding: 0;
}
a:focus {
outline: 1px solid $color-spacer-light;
}
input,
button {
&:focus {
outline: none;
}
}
button,
input {
&::-moz-focus-inner {
border: none;
}
}
input[type=submit],
input[type=button],
button {
cursor: pointer;
&:disabled {
opacity: .7;
}
}
a {
color: $color-font-link;
text-decoration: none;
}