2017-04-05 13:46:04 +02:00
|
|
|
@import "constants";
|
2017-03-30 17:00:35 +02:00
|
|
|
|
2017-04-12 11:12:05 +02:00
|
|
|
.default-data-block {
|
2016-11-24 19:33:34 +01:00
|
|
|
font-family: Arial;
|
|
|
|
|
|
|
|
.show-block {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.carret-right {
|
|
|
|
float: left;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
border-left: 14px solid #FFFFFF;
|
|
|
|
margin: 12px 12px 0 15px;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.carret-down {
|
|
|
|
float: left;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
display: none;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-top: 14px solid #FFFFFF;
|
|
|
|
margin: 12px 12px 0 15px;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.header {
|
|
|
|
background-color: #003C92;
|
2017-05-05 16:45:49 +02:00
|
|
|
min-height: 40px;
|
2016-11-24 19:33:34 +01:00
|
|
|
color: #FFFFFF;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-12 10:51:35 +02:00
|
|
|
.title,
|
|
|
|
.title-no-expanse,
|
|
|
|
.action,
|
|
|
|
.count {
|
2016-11-24 19:33:34 +01:00
|
|
|
line-height: 40px;
|
|
|
|
padding: 0px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-12-06 14:41:50 +01:00
|
|
|
.title-no-expanse {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-12 10:51:35 +02:00
|
|
|
.title,
|
|
|
|
.action,
|
|
|
|
.count {
|
2016-12-06 14:41:50 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-05-05 16:45:49 +02:00
|
|
|
.title-content {
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.action {
|
|
|
|
background-color: #E45B51;
|
|
|
|
text-align: center;
|
2016-12-06 13:06:34 +01:00
|
|
|
line-height: 40px;
|
2016-12-06 12:49:56 +01:00
|
|
|
font-size: 15px;
|
2016-12-05 18:11:18 +01:00
|
|
|
text-decoration: none;
|
2016-12-06 12:49:56 +01:00
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-12-06 12:49:56 +01:00
|
|
|
.action:hover {
|
2017-03-30 17:00:35 +02:00
|
|
|
color: $light-blue;
|
2016-11-24 19:33:34 +01:00
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.count {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2016-11-24 19:33:34 +01:00
|
|
|
.body {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
display: none;
|
|
|
|
}
|
2016-11-25 11:08:58 +01:00
|
|
|
}
|