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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/*
$Id: config.css.default 14310 2006-08-14 07:41:08Z jenst $
Gallery - a web based photo album viewer and editor
Copyright (C) 2000-2006 Bharat Mediratta
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
body {
margin-top: 10px; margin-left: 20px; margin-right: 20px;
color: #000000;
background-image: url(../images/simplex-bkg.gif);
}
.header {
background-color: #E6E6DC;
font-size: 1.5em; font-weight:bold;
padding: 10px;
border: 1px solid #000000;
}
.sitedesc {
background-color: #FCFCF3;
margin-top:10px; padding:5px;
border: 1px solid #000000;
}
textarea:focus, input:focus {
background-color: #FFFFDA;
}
img {
border: none;
}
p#bottom { width: 500px; }
div#top {
width: 200px;
text-align:center;
}
.error { font-weight:bold; background-color: #CC0000; color: #FFFFFF ;
padding:2px;
}
.errorpct { font-weight:bold; background-color: #CC0000; color: #FFFFFF ;
padding:2px;
}
.errorlong { font-weight:bold; background-color: #CC0000; color: #FFFFFF ;
padding:2px; width: 100%; padding-left:10px;
}
.success { font-weight:bold; background-color: green; color: #FFFFFF ;
width: 150px; padding:2px;
}
.successpct { font-weight:bold; background-color: green; color: #FFFFFF ;
padding:2px;
}
.successlong { font-weight:bold; background-color: green; color: #FFFFFF ;
width: 100%; padding:2px; padding-left:10px;
}
.warning { font-weight:bold; background-color: #FFFF33; color: #000000 ;
width: 150px; padding:2px;
}
.warninglong { font-weight:bold; background-color: #FFFF33; color: #000000 ;
width: 100%; padding:2px; padding-left:10px;
}
.warningpct { font-weight:bold; background-color: #FFFF33; color: #000000 ;
padding:2px;
}
.separator {
text-align:center;
font-size: 22px;
background-color: #000099; color:#FFFFFF;
padding:2px;
}
.subgroup {
text-align:center;
font-size: 16px; font-weight: bold;
background-color: #9191FF; color:#FFFFFF;
padding:2px;
width: 60%;
margin-top: -10px; margin-bottom: 5px;
}
.inner {
padding: 5px; margin-bottom:15px;
border-style: solid; border-color: #000000; border-width:1px;
}
.shortdesc {
background-color: #DCDCC0;
padding:5px;
font-weight: bold;
}
.desc {
background-color: #FCFCF3 ;
padding: 3px;
}
.emphasis {
font-weight: bold;
}
.attention { font-size: 1.1em; font-weight:bold;
color:red ;
}
a:link { color: #000099;
}
a:visited,
a:hover { color: #409D27;
}
.littlered { font-size: 10px; color:red; vertical-align:top;
}
.g-tabset {
width: 100%;
font-weight: bold;
border-bottom: 1px solid black;
margin: 2px 0;
}
.g-tabset a {
margin: -2px 0 -1px 2px;
white-space: nowrap;
text-decoration: none;
color: #000;
background-color: #FCFCF3;
padding: 2px 0.5em;
display: block;
border: 1px solid #000;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
}
.g-tabset a:hover {
text-decoration: none;
background-color: #e9e9ff;
}
.g-tabset a.tab-hi {
color: #fff;
background: #66a;
border-bottom: 1px solid #66a;
}
|