43 lines
737 B
CSS
43 lines
737 B
CSS
:host {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
font-size: 14px;
|
|
color: #333;
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
svg.material-icons {
|
|
height: 24px;
|
|
width: auto;
|
|
}
|
|
|
|
svg.material-icons:not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/* Responsive Styles */
|
|
@media screen and (max-width: 767px) {
|
|
|
|
.card:not(.highlight-card) {
|
|
height: 16px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.card.highlight-card span {
|
|
margin-left: 72px;
|
|
}
|
|
|
|
}
|
|
|
|
.router {
|
|
height: 100%;
|
|
}
|
|
|
|
.chat {
|
|
float: right;
|
|
height: 100%;
|
|
width: 20%;
|
|
background-color: goldenrod;
|
|
}
|