Промежуточный этап верстки форм

This commit is contained in:
SleepWalker
2016-01-08 15:14:35 +02:00
parent 900dac850e
commit 54fff54135
12 changed files with 633 additions and 24 deletions

View File

@@ -0,0 +1,56 @@
@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 {
float: left;
line-height: 1;
border-right: 1px solid lighter($black);
overflow: hidden;
height: 49px;
}
.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;
}
}