MovieNight/static/css/site.css

185 lines
2.6 KiB
CSS
Raw Normal View History

:root {
--var-border: 1px solid #606060;
--var-message-color: #f4f4f4;
}
html {
background: #0F0F11;
font-family: "Hack";
font-size: 14px;
}
dt {
font-weight: bold;
}
body {
height: 100vh;
margin: 0px;
}
span.name {
font-weight: bold;
}
span.cmdme {
font-style: italic;
}
span.msg {
font-style: normal;
color: #cfccd1;
}
span.svmsg {
font-style: italic;
color: #ea6260;
}
.root {
display: grid;
grid-template-columns: 5fr 1fr;
width: 100%;
height: 100%;
}
.button {
background: #232328;
color: var(--var-message-color);
font-size: 16px;
font-weight: bold;
border: none;
}
.button:hover {
background: #46464f;
}
.scrollbar {
/* Firefox compatable scrollbar settings */
scrollbar-color: #45009e transparent;
scrollbar-width: thin;
}
.scrollbar::-webkit-scrollbar {
width: 6px;
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: #45009e;
}
.announcement {
font-weight: bold;
color: #ea6260;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
border-top: 3px solid red;
border-bottom: 3px solid red;
}
.helptext {
color: white;
}
.notice {
color: #595959;
font-size: 75%;
text-align: center;
}
.command {
color: #B1B1B1;
}
#error {
color: #f00000;
padding: 5px;
font-weight: bold;
}
#video {
display: grid;
grid-template-rows: auto 1fr;
}
#infoBox {
display: grid;
grid-template-columns: 1fr 200px;
padding-left: 10px;
vertical-align: center;
height: 3.5em;
}
#info {
display: grid;
grid-template-rows: auto auto;
color: #8b6a96;
font-weight: bold;
}
#playing {
font-size: x-Large;
}
#videoElement {
background: #000000;
width: 100%;
height: calc(100vh - 9em);
}
#joinbox {
margin: 10px;
}
#chat {
display: grid;
grid-template-rows: 1fr 6em 2em;
margin: 5px;
}
#messages {
min-height: 15em;
height: calc(100vh - 9em);
color: var(--var-message-color);
opacity: 0%;
overflow-y: scroll;
border: var(--var-border);
}
#messages div {
padding: .1em .5em .15em .5em;
2019-03-13 20:11:04 +01:00
word-wrap: break-word;
}
#msg {
background: transparent;
border: var(--var-border);
border-radius: 5px;
margin: 5px 0px;
padding: 5px;
color: var(--var-message-color);
resize: none;
}
#suggestions {
background: hsl(240, 6%, 25%);
position: absolute;
min-width: 10em;
border-radius: 5px 5px 0px 5px;
color: var(--var-message-color);
}
#suggestions div {
padding: 5px;
}
#suggestions div.selectedName {
background: red;
}
#helpbody {
color: #B1B1B1;
}