more CSS goodness
git-svn-id: http://yolanda.mister-muffin.de/svn@413 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
parent
3e5ae50fd5
commit
1b78258dbf
3 changed files with 87 additions and 42 deletions
|
@ -40,6 +40,14 @@ div
|
||||||
|
|
||||||
/* ids */
|
/* ids */
|
||||||
|
|
||||||
|
#header,
|
||||||
|
#copyright
|
||||||
|
{
|
||||||
|
background-color: #eeeeec;
|
||||||
|
border-color: #babdb6;
|
||||||
|
border-style: solid;
|
||||||
|
}
|
||||||
|
|
||||||
input#query,
|
input#query,
|
||||||
input#username
|
input#username
|
||||||
{
|
{
|
||||||
|
@ -55,7 +63,7 @@ input#query
|
||||||
|
|
||||||
input#username
|
input#username
|
||||||
{
|
{
|
||||||
background-image: url(/images/openid-icon.png);
|
background-image: url(/images/openid/openid-16x16.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,27 +120,26 @@ input#username
|
||||||
|
|
||||||
#messagebox
|
#messagebox
|
||||||
{
|
{
|
||||||
border-color: #363636;
|
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messagebox.error
|
#messagebox.error
|
||||||
{
|
{
|
||||||
/* "Scarlet Red 1" */
|
background-color: #ef2929; /* "Scarlet Red 1" */
|
||||||
background-color: #ef2929;
|
border-color: #a40000; /* "Scarlet Red 3" */
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messagebox.information
|
#messagebox.information
|
||||||
{
|
{
|
||||||
/* "Chameleon 1" */
|
background-color: #8ae234; /* "Chameleon 1" */
|
||||||
background-color: #8ae234;
|
border-color: #4e9a06; /* "Chameleon 3" */
|
||||||
color: #131313;
|
color: #131313;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messagebox.warning
|
#messagebox.warning
|
||||||
{
|
{
|
||||||
/* "Orange 1" */
|
background-color: #fcaf3e; /* "Orange 1" */
|
||||||
background-color: #fcaf3e;
|
border-color: #ce5c00; /* "Orange 3" */
|
||||||
color: #131313;
|
color: #131313;
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,14 +116,19 @@ q
|
||||||
|
|
||||||
q:before
|
q:before
|
||||||
{
|
{
|
||||||
content: open-quote;
|
content: open-quote;
|
||||||
}
|
}
|
||||||
|
|
||||||
q:after
|
q:after
|
||||||
{
|
{
|
||||||
content: close-quote;
|
content: close-quote;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
strong
|
||||||
|
{
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
ul
|
ul
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -151,11 +156,6 @@ ul
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messagebox #message
|
|
||||||
{
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#header,
|
#header,
|
||||||
#heading,
|
#heading,
|
||||||
#login,
|
#login,
|
||||||
|
@ -165,7 +165,18 @@ ul
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#messagebox h1
|
||||||
|
{
|
||||||
|
font-size: 1em;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
|
||||||
#tagcloud
|
#tagcloud
|
||||||
{
|
{
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.privacy
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
|
@ -44,33 +44,37 @@ textarea
|
||||||
width: 9.5em;
|
width: 9.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol
|
label
|
||||||
{
|
{
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol#results
|
|
||||||
|
/* ids */
|
||||||
|
|
||||||
|
#results
|
||||||
|
{
|
||||||
|
/* compensate for list element margin */
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#results li
|
||||||
{
|
{
|
||||||
/* compensate for list element margin */
|
display: inline-block;
|
||||||
text-align: center;
|
width: 216px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol#results li
|
#results li img
|
||||||
{
|
{
|
||||||
display: inline-block;
|
border-width: 1px;
|
||||||
width: 216px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ol#results li img
|
#results li a.title
|
||||||
{
|
{
|
||||||
border-width: 1px;
|
display: block;
|
||||||
}
|
height: 1em;
|
||||||
|
overflow: hidden;
|
||||||
ol#results li a.title
|
}
|
||||||
{
|
|
||||||
display: block;
|
|
||||||
height: 1em;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul
|
ul
|
||||||
{
|
{
|
||||||
|
@ -100,9 +104,16 @@ ul
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#copyright,
|
||||||
|
#header
|
||||||
|
{
|
||||||
|
border-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
#messagebox
|
#messagebox
|
||||||
{
|
{
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
margin: 1em;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -114,13 +125,9 @@ ul
|
||||||
}
|
}
|
||||||
|
|
||||||
#search,
|
#search,
|
||||||
#account-actions,
|
#account-actions
|
||||||
#tagcloud
|
|
||||||
{
|
{
|
||||||
margin: 0;
|
padding-left: 0;
|
||||||
padding-left: 0;
|
|
||||||
position: relative;
|
|
||||||
top: -3.75em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#account-actions li,
|
#account-actions li,
|
||||||
|
@ -147,7 +154,7 @@ ul
|
||||||
}
|
}
|
||||||
|
|
||||||
#login h1,
|
#login h1,
|
||||||
#messagebox h1,
|
/*#messagebox h1,*/
|
||||||
#search h1,
|
#search h1,
|
||||||
#tagcloud h1,
|
#tagcloud h1,
|
||||||
#account-actions h1
|
#account-actions h1
|
||||||
|
@ -155,8 +162,28 @@ ul
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content,
|
#content
|
||||||
|
{
|
||||||
|
padding-right: 0;
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#messagebox
|
#messagebox
|
||||||
{
|
{
|
||||||
margin-right: 21em;
|
margin-right: 21.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#messagebox h1
|
||||||
|
{
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#messagebox h1:after
|
||||||
|
{
|
||||||
|
content: ":";
|
||||||
|
}
|
||||||
|
|
||||||
|
.privacy
|
||||||
|
{
|
||||||
|
padding: 0em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue