Parent: [326aaf] (diff)

Download this file

cdbrowser.css    113 lines (98 with data), 2.1 kB

  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
/* General font selection. This is the place to adjust the font size for the
* directory browser area. */
html, body, form, fieldset, table, tr, td, img {
font-family:Arial,helvetica,sans-serif;
font-size: 10pt;
}
/* Servers page. Each is a p */
p.cdserver {
margin: 7px 0px 0px 0px;
}
a {
text-decoration: none;
}
/* The top margin is for leaving the space for the fixed header.
* We specify the size in em to avoid having to edit it when
* changing the font size */
body {margin: 2em 0px 0px 0px;}
/* The current path indicator is an ul inside a browsepath div inside
the fixedheader div */
div#fixedheader {
position:fixed;
top:0px;
left:0px;
width:100%;
padding:4px;
/* height: 30px;*/
}
div#browsepath {
font-size: 80%;
font-weight: bold;
/* margin: 0px 0px 10px 0px;*/
}
#browsepath ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#browsepath li {
margin: 0 0 0 3px;
float: left;
}
/* The 'jump to initial' list */
#alphalist {
/*visibility: hidden;*/
margin-left: 3px;
}
/* Directory listing */
/* The table id is entrylist */
#entrylist {
clear: both;
width: 100%;
/* table-layout: fixed;*/
}
// The table begins with a colgroup, with the following column
// classes. I was not able to do anything really useful with setting
// the widths, I find that the automatic approach is always
// better. This might be different if overflow: and text-overflow:
// worked, but they don't appear to. So the following is commented out
// by default
/*
.coltracknumber {
width: 4%;
}
.coltitle {
font-size: 50%;
width: 30%;
}
.colartist {
width: 30%;
}
.colalbum {
width: 30%;
}
.colduration {
width: 6%;
}
*/
/* Styles for the directory list cells */
.tk_tracknum {
width: 1em;
}
.tk_artist {
align: left;
margin-left: 5px;
}
.tk_album {
margin-left: 5px;
// Could not get this to work,
// white-space: nowrap;
// overflow: hidden;
// text-overflow: ellipsis;
}
.tk_title {
margin-left: 5px;
}
.tk_duration {
margin-left: 5px;
}