onion/sass/ascribe_panel.scss

102 lines
1.7 KiB
SCSS
Raw Normal View History

.panel {
/* Here we are overriding bootstrap to show the is-focused background color */
background-color: transparent;
}
2015-08-06 13:56:37 +02:00
.ascribe-panel-wrapper {
2015-08-31 19:04:44 +02:00
border: 1px solid #ddd;
height: 5em;
margin-top: 1em;
2015-08-31 19:04:44 +02:00
min-height: 5em;
> div {
float: left;
2015-08-31 19:04:44 +02:00
height: 100%;
&:first-child {
width: 60%;
}
&:nth-child(2) {
width: 40%;
}
}
2015-08-06 13:56:37 +02:00
}
.ascribe-panel-table {
2015-08-31 19:04:44 +02:00
display: table;
> .ascribe-panel-content {
display: table-cell;
vertical-align: middle;
&:first-child {
word-break: break-word;
font-size: .9em;
}
}
@media(max-width:767px) {
&:first-child {
> div {
padding-left: 1em;
}
}
&:nth-child(2) {
> div {
padding-right: 1em;
> button {
2015-08-31 19:04:44 +02:00
float: right;
}
}
}
}
@media(min-width:768px) {
&:first-child {
> div {
padding-left: 2em;
}
}
&:nth-child(2) {
> div {
padding-right: 2em;
> button {
2015-08-31 19:04:44 +02:00
float: right;
}
}
}
}
2015-08-06 13:56:37 +02:00
}
@media(max-width:767px) {
.ascribe-panel-title {
font-size: .9em;
}
.ascribe-panel-subtitle {
2015-08-31 19:04:44 +02:00
color: rgba(0, 0, 0, .5);
font-size: .7em;
}
}
@media(min-width:768px) {
.ascribe-panel-title {
font-size: 1.1em;
}
.ascribe-panel-subtitle {
2015-08-31 19:04:44 +02:00
color: rgba(0, 0, 0, .5);
font-size: .9em;
}
}