Restructure file base.

This commit is contained in:
Lars Jung 2015-05-12 16:08:20 +02:00
parent 057a5f05a5
commit ee241e7e3f
151 changed files with 88 additions and 86 deletions

View file

@ -0,0 +1,69 @@
.card {
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
}
.raised {
box-shadow: 0 1px 10px 0 rgba(0,0,0,0.5);
}
.popup {
box-shadow: 0 1px 20px 0 rgba(0,0,0,0.5);
}
.rounded {
border-radius: 2px;
}
.clear-appearance {
-moz-appearance: none;
-ms-appearance: none;
-webkit-appearance: none;
}
.eased-transition {
transition: all 0.2s ease-in-out;
}
.flex-base {
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
align-content: flex-start;
align-items: stretch;
}
.flex-column {
.flex-base;
flex-direction: column;
}
.flex-row {
.flex-base;
flex-direction: row;
}
.el-button {
.card;
.rounded;
.eased-transition;
color: @col-text-primary-white;
background: @col-blue-400;
cursor: pointer;
text-decoration: none;
&:hover {
.raised;
}
}
.el-input {
.card;
.rounded;
.clear-appearance;
font-family: @font-family;
font-weight: @font-weight;
color: @col-text;
background: @col-back-paper;
border: none;
outline: none;
}