accounts-frontend/src/index.scss

43 lines
469 B
SCSS
Raw Normal View History

@import '~components/ui/colors.scss';
@import '~components/ui/fonts.scss';
2016-01-04 02:48:42 +05:30
html,
body,
.app {
2016-01-04 02:48:42 +05:30
height: 100%;
margin: 0;
padding: 0;
2016-01-03 14:41:08 +05:30
}
body {
font-family: $font-family-base;
background: $light;
2016-05-22 21:26:52 +05:30
color: #444;
font-size: 16px;
}
b {
2016-05-20 09:51:40 +05:30
font-weight: $font-weight-bold;
}
a {
text-decoration: none;
}
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-weight: normal;
line-height: 1;
padding: 0;
margin: 0;
2016-05-20 01:11:43 +05:30
list-style: none;
}