2008-03-19 20:02:42 +00:00
|
|
|
/*
|
|
|
|
Yolanda default stylesheet colors (using tango color palette)
|
|
|
|
(c) 2007-2008 Nils Dagsson Moskopp
|
|
|
|
|
|
|
|
This file is licensed under the WTF Public License
|
|
|
|
(License terms: Do what the fuck you want.)
|
|
|
|
|
|
|
|
Purpose of this file is to provide decorations, such as:
|
|
|
|
- borders (size, width, style etc.)
|
|
|
|
- font properties (family, size, style, weight etc.)
|
|
|
|
- spacing between elements and / or content (margin, padding)
|
2008-03-24 16:04:46 +00:00
|
|
|
- css pseudo-content that isn't graphics (:before, :after)
|
2008-03-19 20:02:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
body
|
|
|
|
{
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 8pt;
|
2008-03-24 16:04:46 +00:00
|
|
|
/* font-weight: bold;*/
|
2008-03-19 20:02:42 +00:00
|
|
|
margin: 1.5em;
|
2008-03-24 16:04:46 +00:00
|
|
|
text-align: center;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a
|
|
|
|
{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover
|
|
|
|
{
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.tag
|
|
|
|
{
|
|
|
|
margin-left: 0.25em;
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div
|
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0.5em;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
div.button-download
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
div.description
|
|
|
|
{
|
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.footer,
|
|
|
|
div.header
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
div.cc-license
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
|
|
|
vertical-align: top;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
div.cc-license img
|
2008-03-24 16:04:46 +00:00
|
|
|
{
|
2008-03-27 16:43:08 +00:00
|
|
|
border-width: 0px;
|
|
|
|
margin: 0.5em;
|
2008-03-24 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 20:02:42 +00:00
|
|
|
div.cc-license-chooser
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cc-license-chooser img
|
|
|
|
{
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
div.commentform,
|
|
|
|
div.loginform,
|
|
|
|
div.registerform,
|
|
|
|
div.settingsform,
|
|
|
|
div.uploadform
|
|
|
|
{
|
|
|
|
line-height: 2.5em;
|
|
|
|
margin: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.loginbox
|
|
|
|
{
|
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
2008-03-19 20:02:42 +00:00
|
|
|
|
|
|
|
div.messagebox
|
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
/* correct spacing to avoid overlapping with float:right elements */
|
|
|
|
margin-right: 22em;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-04-10 05:05:19 +00:00
|
|
|
div.messagebox span.message
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
2008-04-10 05:05:19 +00:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
/* correct spacing to avoid overlapping with background icon */
|
|
|
|
margin-left: 33%;
|
|
|
|
margin-top: 1em;
|
|
|
|
/* the width of the icon */
|
|
|
|
padding-left: 32px;
|
|
|
|
text-align: justify;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
div.metadata
|
|
|
|
{
|
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
2008-03-19 20:02:42 +00:00
|
|
|
|
|
|
|
div.page-number
|
|
|
|
{
|
|
|
|
font-size: 40px;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
div.protip-embed
|
|
|
|
{
|
|
|
|
/* correct spacing to avoid overlapping with float:right elements */
|
|
|
|
margin-right: 22em;
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
div#preview
|
|
|
|
{
|
|
|
|
/* correct spacing to avoid overlapping with float:right elements */
|
|
|
|
margin-right: 22em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#preview form
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
div#preview form button[name="playback"]
|
|
|
|
{
|
|
|
|
/* crude center hack (second part in fake6.css) */
|
|
|
|
margin-left: -15em;
|
|
|
|
margin-top: -7.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#preview form button[name="download"]
|
|
|
|
{
|
|
|
|
/* crude center hack (second part in fake6.css) */
|
|
|
|
margin-left: 0em;
|
|
|
|
margin-top: -7.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#preview img
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
div.results
|
|
|
|
{
|
2008-03-27 16:43:08 +00:00
|
|
|
border-width: 0px;
|
2008-03-24 16:04:46 +00:00
|
|
|
/* correct spacing to avoid overlapping with float:right elements */
|
|
|
|
margin-right: 22em !important;
|
2008-03-27 16:43:08 +00:00
|
|
|
padding: 0px;
|
2008-03-24 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.results div.result
|
|
|
|
{
|
|
|
|
border-width: 0px;
|
|
|
|
padding: 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.results div.result img
|
|
|
|
{
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.searchbar
|
|
|
|
{
|
|
|
|
/* TODO: find out /why we do this/ !
|
|
|
|
does float make zero top margin really necessary or is it a bug ?
|
|
|
|
latter seems unlikely because it works across browsers. */
|
|
|
|
margin-top: 0em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.splashbox
|
|
|
|
{
|
|
|
|
/* correct spacing to avoid overlapping with float:right elements */
|
|
|
|
margin-right: 22em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.tagcloud
|
|
|
|
{
|
|
|
|
/* TODO: find out /why we do this/ (see div.searchbar) ! */
|
|
|
|
margin-top: 0em;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
div.video
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
form
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
form fieldset
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
border-width: 0px;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
form fieldset input[type="text"]
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
h1
|
|
|
|
{
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 2em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
li
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
li#latestadditions
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
li#mostviews
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
li#mostdownloads
|
2008-03-24 16:04:46 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-19 20:02:42 +00:00
|
|
|
input
|
|
|
|
{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
img
|
|
|
|
{
|
2008-04-09 11:25:31 +00:00
|
|
|
border-width: 0px
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-04-09 11:25:31 +00:00
|
|
|
img#logo
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
p
|
|
|
|
{
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
span
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
span.duration:after
|
|
|
|
{
|
2008-03-27 16:43:08 +00:00
|
|
|
content: ")";
|
2008-03-24 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.duration:before
|
|
|
|
{
|
2008-03-27 16:43:08 +00:00
|
|
|
content: "(";
|
2008-03-24 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.instruction
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
span.protip
|
|
|
|
{
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.protip:after
|
|
|
|
{
|
|
|
|
content: " )";
|
|
|
|
}
|
2008-03-19 20:02:42 +00:00
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
span.protip:before
|
|
|
|
{
|
|
|
|
content: "( ";
|
|
|
|
}
|
|
|
|
|
2008-04-09 11:25:31 +00:00
|
|
|
ul#header
|
|
|
|
{
|
|
|
|
/* don't overlapt with the site logo */
|
|
|
|
margin-left: 260px !important;
|
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
ul#footer,
|
|
|
|
ul#header
|
2008-03-19 20:02:42 +00:00
|
|
|
{
|
2008-03-24 16:04:46 +00:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
font-weight:bold;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0.5em;
|
2008-03-19 20:02:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-24 16:04:46 +00:00
|
|
|
ul li
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ul#footer li a,
|
|
|
|
ul#header li a
|
|
|
|
{
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 3em;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:43:08 +00:00
|
|
|
ul#account-actions,
|
2008-03-24 16:04:46 +00:00
|
|
|
ul#queries
|
|
|
|
{
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|