Files
@ aeb1e5a3079c
Branch filter:
Location: light9/light9/web/style.css
aeb1e5a3079c
3.3 KiB
text/css
add hunter pkg for tracing code
Ignore-this: 9c55901d61d26a93512f2b7873ceb7a7
Ignore-this: 9c55901d61d26a93512f2b7873ceb7a7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | body {
background: black;
color: white;
font-family: sans-serif;
}
h1 {
margin: 0;
}
h2 {
margin: 0;
padding: 0;
font-size: 100%;
}
ul {
margin: 0;
}
a {
color: rgb(97, 97, 255);
}
input[type=text] {
border: 1px inset rgb(177, 177, 177);
background: rgb(230, 230, 230);
padding: 3px;
}
#status {
position: fixed;
bottom: 0px;
right: 0px;
background: rgba(0, 0, 0, 0.47);
padding-left: 6px;
}
.songs {
-moz-column-width:205px;
-webkit-column-width:205px;
}
.songs button {
display: inline-block;
width: 15em;
height: 50px;
text-align: left;
background: black;
color: white;
margin: 2px;
font-size: 130% !important;
font-weight: bold;
text-shadow: -1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
white-space: nowrap;
}
button a {
color: white;
}
.songs button:hover {
color: black;
background: #333;
}
.commands button {
background: black;
color: white;
padding: 20px
}
.commands button.active {
background: #a90707;
}
.key {
color: #888;
}
.currentSong button {
background: #a90707;
}
.timeRow {
margin: 14px;
}
.stalled {
opacity: .5;
}
.num {
font-size: 27px;
color: rgb(233, 122, 122);
display: inline-block;
padding: 10px;
font-size: 200% !important;
font-weight: bold;
text-shadow: -1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
.dropTarget {
padding: 10px 5px;
border: 2px dashed gray;
font-style: italic;
color: rgb(78, 90, 107);
}
.dropTarget:hover {
background: #1F1F0D;
}
.twoColList {
-webkit-column-width: 24em;
}
.twoColList > li {
margin-bottom: 13px;
}
.song {
color: rgb(85, 221, 85);
}
.song:before {
content: "♫";
color: black;
background: rgb(85, 221, 85);
border-radius: 30%;
}
.effect:before {
content: "⛖";
}
.song:before, .effect:before {
margin-right: 3px;
text-decoration: none !important;
font-size: 140%;
}
/* ascoltami mini mode */
@media (max-height: 600px) {
.songs {
-webkit-column-width: 12em;
}
.songs button {
font-size: initial;
height: initial;
width: 100%;
margin: initial;
border-width: 1px;
margin-bottom: 2px;
}
.num {
font-size: initial;
padding: initial;
}
.commands button {
padding: 5px;
}
}
/* subserver */
.vari {
color: white;
}
.sub {
display: inline-block;
vertical-align: top;
}
.sub.local {
background: rgb(44, 44, 44);
}
.sub img {
width: 196px;
min-height: 40px;
margin: 0 6px;
background: -webkit-gradient(linear,right top,left bottom,color-stop(0,rgb(121, 120, 120)),color-stop(1,rgb(54, 54, 54)));
}
.chase {
background: rgb(75, 57, 72);
}
a button {
font-size: 60%;
}
a.big {
background-color: #384052;
padding: 6px;
text-shadow: rgba(0, 0, 0, 0.48) -1px -1px 0px;
color: rgb(172, 172, 255);
font-size: 160%;
margin: 0px;
display: inline-block;
border-radius: 5px;
}
table {
border-collapse: collapse;
}
table.borders td, table.borders th {
border: 1px solid #4a4a4a;
padding: 2px 8px;
}
|