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

89 lines
1.3 KiB
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: 50px;
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;
}
}
.error {
position: relative;
padding: 10px;
margin: -15px;
margin-bottom: 15px;
background: #e66c69;
border: 1px #e15457 solid;
font-size: 14px;
line-height: 1.3;
color: #fff;
}
.close {
composes: close from './icons.scss';
position: absolute;
right: 5px;
top: 5px;
font-size: 10px;
cursor: pointer;
}