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
|
/* xmpppy.css - The stylesheet of the xmpppy homepage
*
* Parts are taken of ickle stylesheet
*
* Copyleft 2005 by Marek Kubica
*
* Version 0.0.20050507
*
*/
/* set a background color, a light grey*/
body {
background-color: #F2F2F2;
}
/* fonts - no serif */
a, p, ul, td, div {
font-family: sans-serif;
}
/* hyperlinks: blue, not decorated, just bold */
a {
text-decoration: none;
color: #00488F;
font-weight: bold;
}
/* the head table, blue like the sf.net logo */
table.head {
width: 100%;
background-color: #00488F;
text-align: right;
border-collapse: collapse;
}
td.head {
padding: 0px;
}
table.content {
padding: 5px;
border-spacing: 30px;
}
td.sflogo {
width: 99%;
}
/* the conentent of the left side fills 80% of the screen */
td.leftside {
width: 80%;
}
/* the links on the right side fill the remaining 20%
* and are displayed on top
*/
td.rightside {
width: 20%;
vertical-align: top;
}
/* not simple bullets, but squares */
ul {
list-style-type: square;
}
/* blockquotes in italic */
blockquote {
font-style: italic;
}
|