20 lines
519 B
CSS
20 lines
519 B
CSS
|
|
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
|
||
|
|
@import url("https://fonts.googleapis.com/css?family=Inter:800,600,500,400,700|Roboto:600,500,400,700");
|
||
|
|
* {
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
margin: 0px;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
/* a blue color as a generic focus style */
|
||
|
|
button:focus-visible {
|
||
|
|
outline: 2px solid #4a90e2 !important;
|
||
|
|
outline: -webkit-focus-ring-color auto 5px !important;
|
||
|
|
}
|
||
|
|
a {
|
||
|
|
text-decoration: none;
|
||
|
|
}
|