2017-11-06 19:02:18 +01:00
|
|
|
/* DashboardComponent's private CSS styles */
|
2017-02-22 18:13:21 +00:00
|
|
|
[class*='col-'] {
|
|
|
|
float: left;
|
|
|
|
padding-right: 20px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
[class*='col-']:last-of-type {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
*, *:after, *:before {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
h3 {
|
2018-11-24 20:48:21 +09:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 0;
|
2017-02-22 18:13:21 +00:00
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.grid {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.col-1-4 {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
.module {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
color: #eee;
|
|
|
|
max-height: 120px;
|
|
|
|
min-width: 120px;
|
2018-04-23 11:09:51 -07:00
|
|
|
background-color: #607d8b;
|
2017-02-22 18:13:21 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.module:hover {
|
2018-04-23 11:09:51 -07:00
|
|
|
background-color: #eee;
|
2017-02-22 18:13:21 +00:00
|
|
|
cursor: pointer;
|
|
|
|
color: #607d8b;
|
|
|
|
}
|
|
|
|
.grid-pad {
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
.grid-pad > [class*='col-']:last-of-type {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.module {
|
|
|
|
font-size: 10px;
|
|
|
|
max-height: 75px; }
|
|
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.grid {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.module {
|
|
|
|
min-width: 60px;
|
|
|
|
}
|
|
|
|
}
|