mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-25 11:58:17 +02:00
Added login site.
This commit is contained in:
parent
0876b293e8
commit
94db8336df
20 changed files with 2362 additions and 0 deletions
158
www/css/global.css
Normal file
158
www/css/global.css
Normal file
|
@ -0,0 +1,158 @@
|
|||
body
|
||||
{
|
||||
font-family: Verdana;
|
||||
font-size: 10pt;
|
||||
line-height: 14pt;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
div.contentContainer {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
div.info
|
||||
{
|
||||
width: 320px;
|
||||
height: 100%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
div.infoFooter
|
||||
{
|
||||
width: 400px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: right;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
div.edit
|
||||
{
|
||||
width: 50%;
|
||||
min-width: 600px;
|
||||
margin-top: 20px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
div.inner
|
||||
{
|
||||
position: relative;
|
||||
max-width: 1250px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
line-height: 23px;
|
||||
font-size: 23px;
|
||||
padding: 5px 0px;
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
line-height: 17px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
h3
|
||||
{
|
||||
line-height: 14px;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
header.top
|
||||
{
|
||||
padding: 20px 0px;
|
||||
background: none repeat scroll 0% 0% lavender;
|
||||
position: relative;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
table.center
|
||||
{
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.infoForm
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.editForm
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.editForm input
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.editForm select
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
td
|
||||
{
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
th
|
||||
{
|
||||
padding: 3px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
p
|
||||
{
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
p.errorMessage
|
||||
{
|
||||
color: darkred;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p.pageTitle
|
||||
{
|
||||
font-weight: bold;
|
||||
font-size: 28px;
|
||||
line-height: 20px;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
|
||||
p.pageTitle a
|
||||
{
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
p.pageSubTitle
|
||||
{
|
||||
font-size: 10px;
|
||||
line-height: 18px;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
|
||||
#recaptcha_area
|
||||
{
|
||||
margin: 0 auto;
|
||||
}
|
48
www/css/reset.css
Normal file
48
www/css/reset.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue