]>
git.p6c8.net - jirafeau.git/blob - media/courgette/style.css.php
3 * Jyraphe, your web file repository
5 * Jerome Jutteau <j.jutteau@gmail.com>
6 * Jimmy Beauvois <jimmy.beauvois@gmail.com>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 * This stylesheet is the default stylesheet for Jyraphe.
24 * The content is dynamically generated for easier handling.
29 header('Content-type: text/css');
33 /* ==========================================================================
45 ========================================================================== */
47 /* ==========================================================================
49 ========================================================================== */
53 font
-family
: Arial
, sans
-serif
;
64 background
: url(logo
-jirafeau
.svg
) no
-repeat
;
65 background
-size
: 100%
100%
;
85 border
: 7px dashed
#bcaaa4;
107 text
-decoration
: none
;
110 input
[type
="submit"] {
113 padding
: 0.4em
2.2em
;
116 border
-bottom
: 5px solid
#085B69;
123 input
[type
="password"] {
129 select
{ width
: 100%
; }
131 input
[type
="submit"]:hover
,
132 input
[type
="submit"]:focus
{
144 background
: url(upload
.svg
) no
-repeat center
;
145 -webkit
-transition
: all
0.5s ease
;
146 -moz
-transition
: all
0.5s ease
;
147 -ms
-transition
: all
0.5s ease
;
148 -o
-transition
: all
0.5s ease
;
149 transition
: all
0.5s ease
;
152 #upload fieldset:hover {
153 border
-color
: #663D1C;
171 #upload.file-selected #file_select {
175 #upload.file-selected fieldset {
176 background
-image
: none
;
180 /* ==========================================================================
182 ========================================================================== */
193 text
-decoration
: none
;
198 text
-decoration
: underline
;
201 /* ==========================================================================
203 ========================================================================== */
212 #options tr { height: 2.7em; }
214 #option_table tr:first-child {
219 #option_table td:first-child {
222 #options input[type="submit"] {
227 /* ==========================================================================
229 ========================================================================== */
241 #upload_finished > p:nth-child(1) {
246 #upload_finished div p:nth-child(1) {
251 text
-decoration
: none
;
257 text
-decoration
: none
;
261 #uploaded_percentage {
266 #upload_finished a:hover,
268 #upload_finished a:focus,
270 text
-decoration
: underline
;
284 #upload_image_email {
286 padding
-bottom
: 15px
;
287 background
: url(email
.png
) no
-repeat
;
290 /* ==========================================================================
292 ========================================================================== */
294 textarea
[readonly
="readonly"] {
297 font
-family
: Arial
, sans
-serif
;
303 textarea
[readonly
="readonly"] + p
,
304 textarea
[readonly
="readonly"] + p + p
{
309 textarea
[readonly
="readonly"] + p a
,
310 textarea
[readonly
="readonly"] + p + p a
{
312 text
-decoration
: none
;
316 textarea
[readonly
="readonly"] + p a
:hover
,
317 textarea
[readonly
="readonly"] + p + p a
:hover
,
318 textarea
[readonly
="readonly"] + p a
:focus
,
319 textarea
[readonly
="readonly"] + p + p a
:focus
{
320 text
-decoration
: underline
;
323 /* ==========================================================================
325 ========================================================================== */
328 #install + fieldset {
331 border
: 7px dashed
#bcaaa4;
335 #install + fieldset table {
337 border
-collapse
: collapse
;
341 #install + fieldset td {
350 #install table form:nth-child(odd),
351 #install + fieldset tr:nth-child(odd) {
355 #install fieldset > form {
365 #install td:last-child { text-align: left; }
367 #install .info { width: 19em; }
369 #install input[type="submit"] {
373 #install + fieldset table {
377 #install + fieldset td:first-child input[type="submit"] {
385 #install + fieldset td:first-child input[type="submit"]:hover,
386 #install + fieldset td:first-child input[type="submit"]:focus {
387 text
-decoration
: underline
;
390 /* ==========================================================================
392 ========================================================================== */
398 border
: 7px dashed
#bcaaa4;
402 #admin + fieldset table {
404 border
-collapse
: collapse
;
405 border
-bottom
: 2px solid
#FFF;
409 #admin + fieldset td {
411 border
: 2px solid
#FFF;
419 #admin table form:nth-child(odd),
420 #admin + fieldset tr:nth-child(odd) {
424 #admin fieldset > form {
434 #admin td:last-child { text-align: left; }
436 #admin .info { width: 19em; }
438 #admin input[type="submit"] {
442 #admin + fieldset table {
446 #admin + fieldset td:first-child input[type="submit"] {
454 #admin + fieldset td:first-child input[type="submit"]:hover,
455 #admin + fieldset td:first-child input[type="submit"]:focus {
456 text
-decoration
: underline
;
459 /* ==========================================================================
461 ========================================================================== */
466 background
-image
: url('pixel_bomb.png');
467 background
-size
: 40px
40px
;
468 background
-repeat
: no
-repeat
;
471 padding
-bottom
: 10px
;
patrick-canterino.de