This commit is contained in:
2017-02-10 10:51:08 +01:00
parent 900df47e68
commit aeb0ba37af
3 changed files with 52 additions and 50 deletions

View File

@ -50,27 +50,4 @@
} }
</table> </table>
<style>
tr.vpost {
background-color: #80A050;
max-height: 3em;
}
tr.ipost {
background-color: #303030;
color: #b0b0b0;
font-size: smaller;
max-height: 3em;
}
tr.vpost a {
font-weight: bold;
color: white;
text-shadow: 3px 3px 8px black;
}
tr.ipost a {
font-style: bold;
color: #b0b0b0;
text-shadow: 3px 3px 5px #505050;
}
</style>

View File

@ -3,42 +3,43 @@
<label><input type="checkbox" id="mute" />Muet</label> <label><input type="checkbox" id="mute" />Muet</label>
<style> <style>
.discussion { .discussion {
color: black; color: white;
font-family: monospace; font-family: monospace;
} }
.notif { .notif {
color: grey; color: #aaf;
font-family: monospace; font-family: monospace;
} }
.pv { .pv {
color: black; color: yellow;
font-family: monospace; font-family: monospace;
font-style: bold; font-style: bold;
background-color: yellow;
} }
#targets { #targets {
display:inline-block; display:inline-block;
} }
</style> </style>
<div class="container"> <div class="container">
<input type="hidden" id="displayname" /> <input type="hidden" id="displayname" />
<div style="float:right; background-color: grey; padding:1em; margin:1em;"> <div class="panel">
<h3>Salons</h3> <em>Salons</em>
<ul> <ul>
<li id="pubChan">Public</li> <li id="pubChan">Public</li>
</ul> </ul>
<h3>Utilisateurs</h3> <em>Utilisateurs</em>
<ul id="userlist" style="list-style:none; padding: 1em; margin:1em;"> <ul id="userlist" style="list-style:none;">
</ul> </ul>
</div>
</div>
<ul id="discussion"> <ul id="discussion">
</ul> </ul>
<div id="targets"> <div id="targets">
<div id="sendmessagebox"> <div id="sendmessagebox">
<input type="text" id="message" /> <input type="text" id="message" />
<input type="button" id="sendmessage" value="@SR[" Send "]" /> <input type="button" id="sendmessage" value="@SR["Send"]" />
</div> </div>
@if (ViewBag.IsAuthenticated) { @if (ViewBag.IsAuthenticated) {
<div id="sendpvbox"> <div id="sendpvbox">

View File

@ -4,14 +4,47 @@
body { body {
background-color: #210912; background-color: #210912;
color:#777; color:#999;
} }
h1,h2,h3{color:#fff;} h1,h2,h3{color:#fff;}
.blog { .blog {
padding: 1em; padding: 1em;
color: #999; }
background-color: rgb(0,0,0); .blog a {
color: #9f9;
font-weight: 900;
}
.blog a:active,
.blog a:hover {
outline: 0;
color: #6C6;
}
tr.vpost {
background-color: #306020;
max-height: 3em;
}
tr.ipost {
background-color: #303030;
font-size: smaller;
max-height: 2em;
}
tr.vpost a {
font-weight: bold;
color: white;
text-shadow: 3px 3px 8px black;
}
tr.ipost a {
font-style: bold;
color: #b0b0b0;
text-shadow: 3px 3px 5px #505050;
}
.panel{
float: left;
padding:1em;
margin:1em;
color: white;
background-color: #421824;
} }
/* Set widths on the form inputs since otherwise they're 100% wide */ /* Set widths on the form inputs since otherwise they're 100% wide */
input, input,
@ -31,15 +64,6 @@ a:hover {
outline: 0; outline: 0;
color: #6C6; color: #6C6;
} }
.blog a {
color: #9f9;
font-weight: 900;
}
.blog a:active,
.blog a:hover {
outline: 0;
color: #6C6;
}
.jumbotron { .jumbotron {
background-color: #502020; background-color: #502020;
padding: .5em; padding: .5em;