Last change
on this file since 30 was 24, checked in by Kris Deugau, 15 years ago |
/trunk
checkpoint
- group management more or less functional
- user management partially functional
- misc minor tweaks and normalizations
|
File size:
2.1 KB
|
Rev | Line | |
---|
[2] | 1 | #debug {
|
---|
| 2 | background-color: #990066;
|
---|
[24] | 3 | padding: 2px;
|
---|
[2] | 4 | }
|
---|
| 5 |
|
---|
| 6 | /* General settings */
|
---|
| 7 | body {
|
---|
| 8 | font-family: Verdana, Helvetica, sans-serif;
|
---|
| 9 | font-size: 12px;
|
---|
| 10 | margin-left: 0px;
|
---|
| 11 | margin-right: 0px;
|
---|
| 12 | /* background-color: #deadDD;*/
|
---|
| 13 | /* background-color: #FFFF00;*/
|
---|
| 14 | }
|
---|
| 15 | hr {
|
---|
| 16 | background-color: #666;
|
---|
| 17 | height: 1px;
|
---|
| 18 | border: 0;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | table.login {
|
---|
| 22 | text-align: center;
|
---|
| 23 | border: thin solid #000000;
|
---|
| 24 | background-color: #CCCCFF;
|
---|
| 25 | }
|
---|
| 26 | table.list {
|
---|
| 27 | background-color: #F0F0F0;
|
---|
| 28 | }
|
---|
| 29 | table.wholepage {
|
---|
| 30 | width: 100%;
|
---|
| 31 | }
|
---|
| 32 | tr.row0 {
|
---|
| 33 | background-color: #FFFFFF;
|
---|
| 34 | }
|
---|
| 35 | tr.row1 {
|
---|
| 36 | background-color: #DDDDDD;
|
---|
| 37 | }
|
---|
| 38 | tr.tableheader {
|
---|
| 39 | background-color: #CCCCCC;
|
---|
| 40 | padding: 3px;
|
---|
| 41 | }
|
---|
| 42 | tr.darkrowheader {
|
---|
| 43 | background-color: #CCCCCC;
|
---|
| 44 | padding: 3px;
|
---|
| 45 | }
|
---|
| 46 | tr.datalinelight {
|
---|
| 47 | background-color: #F0F0F0;
|
---|
| 48 | }
|
---|
| 49 | td.tblsubmit {
|
---|
| 50 | text-align: center;
|
---|
| 51 | }
|
---|
| 52 | td.inputlabel {
|
---|
| 53 | text-align: right;
|
---|
| 54 | padding: 3px;
|
---|
| 55 | }
|
---|
| 56 | td.data {
|
---|
| 57 | padding: 3px;
|
---|
| 58 | }
|
---|
| 59 | td.title {
|
---|
| 60 | text-align: center;
|
---|
| 61 | }
|
---|
| 62 | td.menu {
|
---|
| 63 | width: 200px;
|
---|
| 64 | white-space: nowrap;
|
---|
| 65 | border: thin solid #000000;
|
---|
| 66 | background-color: #ffccee;
|
---|
| 67 | vertical-align: top;
|
---|
| 68 | }
|
---|
| 69 | td.defaults {
|
---|
| 70 | background-color: #DDDDDD;
|
---|
| 71 | }
|
---|
| 72 | .meat {
|
---|
| 73 | align: center;
|
---|
| 74 | width: 100%;
|
---|
| 75 | }
|
---|
| 76 | input {
|
---|
| 77 | font-size: 10px;
|
---|
| 78 | }
|
---|
[24] | 79 | ul {
|
---|
| 80 | margin-left: 10px;
|
---|
| 81 | padding: 0px;
|
---|
| 82 | list-style-type:none;
|
---|
| 83 | }
|
---|
[2] | 84 |
|
---|
| 85 | /* general classes */
|
---|
| 86 | .errmsg {
|
---|
| 87 | font-weight: bold;
|
---|
| 88 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 89 | font-size:100%;
|
---|
| 90 | color: red;
|
---|
| 91 | background-color: #404040;
|
---|
| 92 | text-align: center;
|
---|
| 93 | border: thin solid #FFFFFF;
|
---|
| 94 | padding: 5px;
|
---|
| 95 | width: 70%;
|
---|
| 96 | }
|
---|
| 97 | .right {
|
---|
| 98 | right: 3px;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | /* Specific common divs */
|
---|
| 102 | #header {
|
---|
| 103 | border-bottom: thin solid #000000;
|
---|
| 104 | clear: both;
|
---|
| 105 | float: left;
|
---|
| 106 | width: 100%;
|
---|
| 107 | }
|
---|
| 108 | #footer {
|
---|
| 109 | border-top: thin solid #000000;
|
---|
| 110 | clear: both;
|
---|
| 111 | }
|
---|
| 112 | #contact {
|
---|
| 113 | font-size: 10px;
|
---|
| 114 | position: absolute;
|
---|
| 115 | right: 10px;
|
---|
| 116 | text-align: right;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | #main {
|
---|
| 120 | position: relative;
|
---|
| 121 | float: right;
|
---|
| 122 | width: 100%;
|
---|
| 123 | }
|
---|
| 124 | #login {
|
---|
| 125 | margin-top: 50px;
|
---|
| 126 | margin-bottom: 50px;
|
---|
| 127 | padding: 3px;
|
---|
| 128 | border: thin solid #000000;
|
---|
| 129 | }
|
---|
| 130 | #tableholder {
|
---|
| 131 | padding: 2px;
|
---|
| 132 | background: #FFFFFF;
|
---|
| 133 | width: 70%;
|
---|
| 134 | }
|
---|
| 135 | #menu {
|
---|
| 136 | border-right: thin solid #000000;
|
---|
| 137 | margin-right: 5px;
|
---|
| 138 | padding: 3px;
|
---|
| 139 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.