www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

css.php (1557B)


      1 <?php
      2 
      3 // #ba7500
      4 // #c0a700
      5 
      6 function get_css() {
      7 	return "h1 a {
      8 	color: #7f7f33;
      9 }
     10 
     11 .site.connexion {
     12 	position: absolute;
     13 	top: 0;
     14 	right: 0;
     15 	padding: 0.1em 0.2em;
     16 }
     17 
     18 .site.navigation {
     19 	float: left;
     20 	padding: 0em 0em;
     21 	margin-right: 1em;
     22 	border: thick solid black;
     23 	background-color: #eee;
     24 }
     25 
     26 .site.navigation ul {
     27 	padding: 0;
     28 	margin: 0;
     29 	text-align: center;
     30 }
     31 
     32 .site.navigation li:hover {
     33 	background-color: #ff0; /* Flashy <3 */
     34 }
     35 
     36 .site.navigation li {
     37 	padding: 0.5em 1.5em;
     38 	border-bottom: thin solid black;
     39 	list-style-type: none;
     40 }
     41 
     42 .site.navigation li:last-child {
     43 	border:none;
     44 }
     45 
     46 .site.contenu {
     47 	width: 63em;
     48 	float: left;
     49 }
     50 
     51 .galerie.infos {
     52 	border-bottom: thick solid gray;
     53 	padding-bottom: 1em;
     54 }
     55 
     56 .galerie.photos ul {
     57 	padding: 0;
     58 	margin: 0;
     59 }
     60 
     61 .galerie.photos li {
     62     list-style-type: none;
     63     float: left;
     64     margin: 1em;
     65 	padding: 0;
     66 	width: 9em;
     67 	text-align: center;
     68 }
     69 
     70 .galerie.photos li a {
     71 	display:block;
     72 	color: black;
     73 }
     74 
     75 .galerie.photos .miniature {
     76 	display:block;
     77 	border: thin solid gray;
     78 	height: 70px;
     79 }
     80 
     81 .galerie.photos img {
     82 	border: none;
     83 }
     84 
     85 .galerie.photos .titre {
     86 	display:block;
     87 	padding: 0.2em 0.4em;
     88 	height: 5em;
     89 }
     90 
     91 .galerie.photos li:hover .miniature {
     92 	border-color: #ff6;
     93 }
     94 
     95 .galerie.photos li:hover .titre {
     96 	color: #7f7f33;
     97 }
     98 
     99 .admin.permissions.regles {
    100 	width: 100%;
    101 }
    102 
    103 .clearboth {
    104 	clear: both;
    105 }
    106 
    107 /****** Formulaires ******/
    108 
    109 textarea {
    110 	width: 50%;
    111 	margin: 1em 0;
    112 	/* font-size: large; */ /* Activer pour plus d'accessibilité. */
    113 }
    114 
    115 h2 input {
    116 	font-size: x-large;
    117 	font-weight: bold;
    118 }";
    119 }