accounts-frontend/src/components/ui/panel.scss

63 lines
987 B
SCSS
Raw Normal View History

@import '~components/ui/colors.scss';
@import '~components/ui/fonts.scss';
.panel {
background: $black;
}
.header {
box-sizing: border-box;
height: 50px;
border-bottom: 1px solid lighter($black);
font-family: $font-family-title;
text-align: center;
line-height: 48px;
font-size: 20px;
color: #fff;
}
.headerControl {
composes: black from './buttons.scss';
float: left;
overflow: hidden;
height: 49px;
width: 49px;
padding: 0;
border-right: 1px solid lighter($black);
line-height: 1;
text-align: center;
}
.body {
padding: 15px;
color: #ccc;
font-size: 18px;
b {
color: #fff;
}
a {
color: #fff;
border-bottom: 1px dotted #ede9e2;
text-decoration: none;
transition: .25s;
&:hover {
border-bottom-color: #ccc;
color: #ccc;
}
}
}
.footer {
display: flex;
> * {
flex-grow: 1;
}
}