Initial version, with no update possibility

This commit is contained in:
Gergely Polonkai (W00d5t0ck)
2010-12-17 15:41:45 +01:00
commit 7c6ed627cc
27 changed files with 1318 additions and 0 deletions

63
style/pws.css Normal file
View File

@@ -0,0 +1,63 @@
* {
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: white;
}
form {
text-align: center;
}
input {
border: 1px solid black;
background-color: white;
width: 200px;
}
input.submit {
background-color: black;
color: white;
cursor: pointer;
width: auto;
}
input.submit:hover {
background-color: #aaa;
color: #333;
}
#content {
margin-left: auto;
margin-right: auto;
width: 80%;
line-height: 110%;
}
label {
}
input#query {
border-right-width: 0;
}
input#clearsearch {
width: 20px;
}
.pwgname {
text-decoration: underline;
cursor: pointer;
}
a {
text-decoration: underline;
color: black;
}
.pwitem {
text-decoration: underline;
cursor: pointer;
}

7
style/tooltip.css Normal file
View File

@@ -0,0 +1,7 @@
#tooltip {
position: absolute;
z-index: 3000;
border: 1px solid black;
background-color: yellow;
padding: 5px;
}