themes/grey/style.css
author Dan
Tue, 26 May 2009 15:26:59 -0400
changeset 72 b8730fcd64a9
parent 50 1b4288399b1f
child 78 08f8a72b1f7b
permissions -rw-r--r--
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     1
/**
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     2
 * Based upon the AmaroK WebControl interface by:
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     3
 *    Jonas Christian Drewsen ( kde at xspect dot dk )
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     4
 *    André Kelpe ( fs111 at web dot de )
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     5
 *    Peter C. Ndikuwera ( pndiku at gmail dot com )
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     6
 */
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     7
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     8
body {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
     9
  font-family: sans-serif;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    10
  background-color: #262626;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    11
  color: #ffffff;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    12
  padding: 0 8px;
72
b8730fcd64a9 Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents: 50
diff changeset
    13
  font-size: 87.5%;
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    14
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    15
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    16
body.playlist {
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    17
  background-image: url(images/playbar-shadow.gif);
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    18
  background-repeat: repeat-x;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    19
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    20
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    21
div.tblholder {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    22
  padding: 1px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    23
  background-color: #b0b0b0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    24
  border: 1px solid #000000;
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    25
  color: #c6c6c6;
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    26
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    27
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    28
div.tblholder table {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    29
  background-color: #606060;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    30
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    31
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    32
tr th {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    33
  background-color: #505050;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    34
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    35
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    36
tr.row1 td, td.row1 {
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    37
  background-color: #383838;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    38
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    39
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    40
tr.row2 td, td.row2 {
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    41
  background-color: #424242;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    42
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    43
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    44
tr.row3 td, td.row3 {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    45
  background-color: #3d3d3d;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    46
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
    47
28
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    48
tr.current td {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    49
  background-color: #303030;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    50
  color: #ffff00;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    51
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    52
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    53
div#playbar {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    54
  position: fixed;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    55
  top: 0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    56
  left: 0; 
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    57
  width: 100%;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    58
  height: 32px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    59
  padding: 0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    60
  margin: 0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    61
  background-image: url(images/playbar.gif);
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    62
  background-repeat: repeat-x;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    63
  background-color: #383f61;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    64
  border-bottom: 1px solid #000000;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    65
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    66
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    67
div.playbar-inner {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    68
  padding: 5px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    69
  line-height: 22px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    70
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    71
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    72
a img {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    73
  border-width: 0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    74
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    75
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    76
div#playlist {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    77
  margin-top: 48px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    78
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    79
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    80
a.tracklink {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    81
  text-decoration: none;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    82
  color: white;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    83
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    84
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    85
div#playlist tr.current a.tracklink {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    86
  color: #ffff00;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    87
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    88
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    89
span#playmeter, span#volume_wrap {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    90
  position: relative;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    91
  top: -7px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    92
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    93
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    94
a.volume_button {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    95
  padding-right: 10px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    96
  margin-right: 1px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    97
  background-color: #262626;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    98
  border: 1px solid #909090;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
    99
  text-decoration: none;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   100
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   101
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   102
a.volume_button_active {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   103
  background-color: #404040;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   104
  border-color: #d0d0d0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   105
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   106
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   107
/* Position slider (playhead) */
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   108
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   109
div#playhead {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   110
  background-image: url(images/position-empty.png);
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   111
  width: 250px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   112
  background-repeat: no-repeat;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   113
  background-position: center center;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   114
  float: right;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   115
  margin-left: 10px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   116
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   117
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   118
div#playhead-filler {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   119
  background-image: url(images/position-full.png);
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   120
  width: 150px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   121
  background-repeat: no-repeat;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   122
  background-position: left center;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   123
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   124
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   125
div#playhead-button {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   126
  background-image: url(images/playhead.png);
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   127
  width: 16px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   128
  height: 16px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   129
  font-size: 1px;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   130
  position: absolute;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   131
  background-repeat: no-repeat;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   132
  background-position: center center;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   133
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   134
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   135
/* The list of colors that will be cycled through as playback takes place */
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   136
tr.pulsar0 td { background-color: #303030; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   137
tr.pulsar1 td { background-color: #333333; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   138
tr.pulsar2 td { background-color: #363636; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   139
tr.pulsar3 td { background-color: #393939; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   140
tr.pulsar4 td { background-color: #3c3c3c; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   141
tr.pulsar5 td { background-color: #3f3f3f; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   142
tr.pulsar6 td { background-color: #424242; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   143
tr.pulsar7 td { background-color: #454545; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   144
tr.pulsar8 td { background-color: #484848; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   145
tr.pulsar9 td { background-color: #4b4b4b; }
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   146
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   147
div.poweredby {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   148
  font-size: smaller;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   149
  text-align: center;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   150
  margin: 10px 0;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   151
}
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   152
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   153
div.poweredby a {
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   154
  color: #57608a;
c15f6dcc8085 Added grey theme.
Dan
parents:
diff changeset
   155
}
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   156
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   157
ul#userlist a {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   158
  color: #ffff00;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   159
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   160
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   161
p.success, p.error {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   162
  text-align: center;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   163
  font-weight: bold;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   164
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   165
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   166
p.success {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   167
  color: #23a600;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   168
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   169
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   170
p.error {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   171
  color: #c71700;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   172
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   173
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   174
a.backlink {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   175
  display: block;
72
b8730fcd64a9 Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents: 50
diff changeset
   176
  max-width: 135px;
50
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   177
  color: #a0a0a0;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   178
  background-color: #404040;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   179
  padding: 5px;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   180
  margin: 10px 0 5px 0;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   181
  text-decoration: none;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   182
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   183
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   184
a.backlink:hover {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   185
  color: #c0c0c0;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   186
  background-color: #505050;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   187
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   188
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   189
div.greylogo {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   190
  width: 120px;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   191
  height: 33px;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   192
  background-image: url(images/greylogo.png);
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   193
  background-repeat: no-repeat;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   194
  float: right;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   195
  margin: 5px 0;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   196
}
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   197
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   198
div.clearer {
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   199
  clear: both;
1b4288399b1f Added graphical configuration, at this point only for the grey theme but others will follow soon. (This has been nearly done for two weeks or more but was on hold due to the bugs with multithreading)
Dan
parents: 28
diff changeset
   200
}