27 lines
499 B
SCSS
27 lines
499 B
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
html, body { height: 100%; }
|
|
body {
|
|
margin: 0;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
padding-top: 3.2rem;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shadowed {
|
|
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
transition: box-shadow .2s ease-out;
|
|
|
|
&:hover {
|
|
box-shadow: 0 .2em .5em #777;
|
|
}
|
|
}
|
|
|
|
a.no-style {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|