salix/front/core/styles/global.scss

48 lines
652 B
SCSS
Raw Permalink Normal View History

2019-10-18 19:36:30 +00:00
@import "variables";
2019-10-23 10:26:57 +00:00
html {
2020-04-02 12:52:02 +00:00
font-size: $font-size;
2019-10-18 19:36:30 +00:00
background-color: $color-bg;
overflow: auto;
height: 100%;
2019-10-23 10:26:57 +00:00
}
body {
height: 100%;
2019-10-18 19:36:30 +00:00
font-family: vn-font;
color: $color-font;
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;
2019-11-10 10:08:44 +00:00
}
.ng-leave,
.ng-enter {
transition: none;
}