summaryrefslogtreecommitdiff
path: root/stylesheets/styles.css
blob: c728105c20895e70799c4ac336822b383d0a65b1 (plain)
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
/* by tag */
body {
	background-color: #fff;
	font-family: 	  Helvetica;
	color: 			  #000
}
a { color: #000 }
input {
	vertical-align: bottom;
	font-size: 		1.1em
}
input[type='button'] {
	vertical-align: middle;
    margin-bottom:  2px;
	font-size: 		1.25em
}
input[type='text'] { padding: 4px }

/* by id */
div#wrapper {
	margin-left:  auto;
	margin-right: auto;
	width: 		  1000px
}
div#top {
    line-height:   1.3em;
    text-align:    justify;
    width:         82%;
    margin-bottom: 1em
}
div#holder {
	margin-left:  auto;
	margin-right: auto
}
span#desc {
    font-family: Georgia;
    line-height: 1.5em;
    display:     none
}

/* by class */
.message {
	font-weight: 		   bold;
	-moz-border-radius:    5px;
    -webkit-border-radius: 5px;
    border-radius:         5px;
    padding:               4px;
	padding-left: 		   8px;
    padding-right:         8px;
	text-decoration: 	   none
}
.message:hover { color: #000 }
.help:hover    { cursor: pointer }
.success       { background-color: #cdeb8b }
.failure       { background-color: #b02b2c }
.inprogress    { background-color: #ff8 }
.gray          { background-color: #eee }
.grayc         { color: #ccc }
.green         { background-color: #00ff7f }
.greenc        { color: #008000 }
.r			   { text-align: right }
.small         { font-size: 80% }