2017-04-04 07:53:27 +02:00
|
|
|
html {
|
|
|
|
background-color: #455a64;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
min-height: calc(100vh - 80px);
|
2017-04-09 19:49:28 +02:00
|
|
|
overflow-x: hidden;
|
2017-04-04 07:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2017-04-09 00:12:28 +02:00
|
|
|
position: fixed;
|
2017-04-04 07:53:27 +02:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50px;
|
|
|
|
background-color: #37474f;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
background-color: #263238;
|
|
|
|
background: linear-gradient(rgba(38, 50, 56, 1), rgba(255,0,0,0));
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .brand-logo {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 993px) {
|
|
|
|
.container {
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-nav {
|
|
|
|
color: white;
|
|
|
|
background-color: #607d8b;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-nav .userView .name {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-nav li>a {
|
|
|
|
color: #eceff1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-nav .subheader {
|
|
|
|
color: #cfd8dc;
|
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
background-color: #90a4ae;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channel-hash {
|
|
|
|
font-size: 95%;
|
|
|
|
color: #b0bec5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.membercircle {
|
|
|
|
margin-top: 5px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.membername {
|
|
|
|
position: absolute;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatcontent {
|
|
|
|
padding-left: 1%;
|
|
|
|
padding-top: 1%;
|
|
|
|
padding-bottom: 40px;
|
2017-04-09 19:12:06 +02:00
|
|
|
|
|
|
|
/* https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ */
|
|
|
|
/* These are technically the same, but use both */
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
-ms-word-break: break-all;
|
|
|
|
/* This is the dangerous one in WebKit, as it breaks things wherever */
|
|
|
|
word-break: break-all;
|
|
|
|
/* Instead use this non-standard one: */
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
/* Adds a hyphen where the word breaks, if supported (No Blink) */
|
|
|
|
-ms-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
hyphens: auto;
|
2017-04-04 07:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 601px) {
|
|
|
|
nav a.button-collapse {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatusername {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #eceff1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chattimestamp {
|
|
|
|
font-size: 10px;
|
|
|
|
color: #90a4ae;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footercontainer {
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
margin: 10px;
|
2017-04-09 19:49:28 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#messageboxouter {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
2017-04-04 07:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.currentuserchip {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
top: -6px;
|
|
|
|
padding: 6px;
|
|
|
|
padding-right: 9px;
|
|
|
|
background-color: #455a64;
|
|
|
|
}
|
|
|
|
|
|
|
|
.currentuserimage {
|
|
|
|
width: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.currentusername {
|
|
|
|
position: relative;
|
|
|
|
top: 7px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-field {
|
|
|
|
position: relative;
|
|
|
|
top: -19px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
background-color: #546e7a;
|
2017-04-05 09:14:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.betatag {
|
|
|
|
font-variant: small-caps;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #eceff1;
|
2017-04-09 00:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#channeltopic {
|
|
|
|
width: 80%;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-right: auto;
|
|
|
|
font-size: 85%;
|
|
|
|
}
|