spee.ch/client/scss/row/_row.scss

61 lines
890 B
SCSS
Raw Normal View History

2018-06-02 20:58:54 -07:00
.row {
2018-10-21 23:12:10 +01:00
padding-bottom: 1.2em;
2018-06-02 20:58:54 -07:00
}
2018-06-08 08:50:25 -07:00
.row-labeled {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
}
.row-labeled-label {
align-self: flex-start;
width: 30%;
}
.row-labeled-content {
align-self: center;
width: 70%;
}
2018-06-10 16:07:15 -07:00
.row-labeled-alt {
display: column;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
.row-labeled-label {
align-self: flex-start;
width: 100%;
color: $grey;
2018-10-21 20:52:10 +01:00
.label {
2018-10-21 21:05:38 +01:00
font-weight: bold;
2018-10-21 20:52:10 +01:00
text-transform: uppercase;
2018-10-21 21:05:38 +01:00
font-size: 13px;
2018-10-21 20:52:10 +01:00
letter-spacing: 0.4px;
line-height: 18px;
}
}
.row-labeled-content {
align-self: center;
width: 100%;
}
}
2018-06-10 16:07:15 -07:00
@media (max-width: $break-point-medium ) {
.row-labeled {
flex-direction: column;
}
.row-labeled-label {
width: 100%;
}
.row-labeled-content {
width: 100%;
}
}