accounts-frontend/src/pages/root/root.scss

48 lines
679 B
SCSS
Raw Normal View History

@import '~components/ui/colors.scss';
@import '~components/ui/fonts.scss';
2016-01-04 02:48:42 +05:30
.root {
height: 100%;
2016-01-04 02:48:42 +05:30
}
.wrapper {
width: 756px;
2016-01-04 02:48:42 +05:30
margin: 0 auto;
}
.header {
position: relative;
2016-01-04 02:48:42 +05:30
height: 50px;
background: $green;
2016-01-04 02:48:42 +05:30
}
.headerContent {
composes: wrapper;
}
.logo {
line-height: 50px;
padding: 0 20px;
display: inline-block;
background: darker($green);
font-family: $font-family-title;
font-size: 33px;
color: #fff;
2016-01-04 02:48:42 +05:30
}
.body {
composes: wrapper;
position: relative;
2016-01-04 02:48:42 +05:30
// place for header
min-height: 100%;
box-sizing: border-box;
padding-top: 50px;
margin-top: -50px;
2016-01-04 02:48:42 +05:30
}
.userbar {
float: right;
}