add trans style

This commit is contained in:
HF 2020-05-17 12:53:16 +02:00
parent ce83847fa6
commit 628d338875
2 changed files with 53 additions and 1 deletions

46
src/styles/trans.css Normal file
View File

@ -0,0 +1,46 @@
tr:nth-child(even) {
background-color: #61dcea;
}
tr:nth-child(odd) {
background-color: #ffb1e1;
}
.chatbox {
background-color: rgba(59, 59, 59, 0.8);
}
.actionbuttons, .coorbox, .onlinebox, .cooldownbox, #historyselect, .notifybox {
background: linear-gradient(0deg, #61dcea , #ffb1e1, #ecffec, #ffb1e1, #61dcea);
border-radius: 10px;
}
.Overlay {
background: linear-gradient(175deg, #61dcea , #ffb1e1, #ecffec, #ffb1e1, #61dcea);
}
.chatmsg {
color: white;
}
.chatname {
background: linear-gradient(0deg, #61dcea , #ffb1e1, #ecffec, #ffb1e1, #61dcea);
}
.msg.info{
color: #ff91a6;
}
.msg.greentext{
color: #94ff94;
}
#chatlink {
color: #f9edde;
}
.actionbuttons:hover, .coorbox:hover, .menu > div:hover {
background: linear-gradient(160deg, #61dcea , #ffb1e1, #ecffec, #ffb1e1, #61dcea);
}
.Modal {
background: #efd9e2 none repeat scroll 0 0;;
border-radius: 10px;
}

View File

@ -8,7 +8,13 @@ import CleanCSS from 'clean-css';
import crypto from 'crypto';
const FOLDER = './src/styles';
const FILES = [ 'default.css', 'dark.css', 'light-round.css', 'dark-round.css' ];
const FILES = [
'default.css',
'dark.css',
'light-round.css',
'dark-round.css',
'trans.css',
];
async function minifyCss() {
console.log('Minifying css');