2019-10-18 19:36:30 +00:00
|
|
|
@import "variables";
|
|
|
|
|
2019-10-23 10:26:57 +00:00
|
|
|
html {
|
2019-10-18 19:36:30 +00:00
|
|
|
background-color: $color-bg;
|
|
|
|
overflow: auto;
|
|
|
|
height: 100%;
|
2020-04-02 12:08:38 +00:00
|
|
|
font-size: $font-size;
|
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;
|
2020-04-02 09:39:39 +00:00
|
|
|
}
|