26 lines
537 B
SCSS
26 lines
537 B
SCSS
|
$review-border-color: #c8c8c8;
|
||
|
$review-border: 1px solid $review-border-color;
|
||
|
|
||
|
@mixin border-with-radius {
|
||
|
border: $review-border {
|
||
|
radius: 5px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
color-scheme: light;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: -apple-system, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla";
|
||
|
box-sizing: border-box;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
a:active, a:link, a:hover {
|
||
|
text-decoration: none;
|
||
|
}
|