123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* Titre général */
- header {
- user-select: none;
- /* Navigateurs */
- -moz-user-select: none;
- -webkit-user-select: none;
- }
- h1 {
- font-size: 2.2em;
- margin-bottom: 1em;
- }
- h1:before {
- content: "\\_o<";
- color: #FF6600;
- font-weight: normal;
- font-family: monospace;
- text-align: center;
- font-size: 1.25em;
- display: block;
- float: left;
- width: 25%;
- }
- h1:hover:before {
- content: "\\_x<";
- }
- h1:hover:after {
- position: absolute;
- text-align: center;
- z-index: -1;
- right: 15%;
- left: 25%;
- }
- h1 a, h1:after {
- color: #0086A9;
- font-weight: bold;
- }
- /* Barre de navigation */
- .side-nav {
- background-color: #FAFAFA;
- padding:5px;
- }
- /*
- nav#sidebox {
- position: fixed;
- z-index: 1;
- }
- h3#nav {
- background-color: #E8E8FF;
- border: 1px solid #E0E0E0;
- border-bottom-color: #0086A9;
- padding-bottom: 0.25em;
- text-indent: 0.25em;
- margin-top: 0.25em;
- padding-top: 0.1em;
- margin-bottom: 0;
- color: #FF6600;
- }*/
- /*
- .side-nav {
- padding: 0;
- padding-top: 0.75em;
- background-color: #E8E8FF;
- border: 1px solid #E0E0E0;
- border-top: 0 none transparent;
- margin-top: 0;
- }
- .side-nav a {
- padding: 0 0.5em 0.2em 0.5em;
- }
- .side-nav a:hover,
- .side-nav li.active a,
- .side-nav li ul li a:hover {
- background-color: #0086A9;
- color: #FFFFFF !important;
- border-radius: 5px;
- }
- .side-nav li ul {
- list-style-type: disc;
- padding-top: 0.25em;
- }
- .side-nav li ul li a:hover {
- margin-right: 1em;
- }
- .side-nav li ul li a {
- padding-left: 0.25em;
- margin-left: -0.25em;
- }
- .side-nav li.active li a {
- background-color: transparent;
- color: #0086A9 !important;
- }
- */
- /* Titre section principale */
- h2:before {
- /*content: url(../img/coinitem.png);*/
- margin-right: 0.25em;
- }
- h2 {
- color: #FF6600;
- /*border-bottom: 2px solid #0086A9;*/
- }
- /* Tables */
- table.full-width {
- width:100%;
- }
- /* Footer */
- #footer { opacity: 0.18; }
- #footer .line {
- widht:100%;
- border-bottom: 1px solid black;
- }
- #footer .duck {
- background-image: url('../img/coin.svg');
- background-size: 20%;
- background-repeat: no-repeat;
- background-position: center top;
- height:50px;
- }
- /* Invoices */
- #invoice_details .period {
- color:#999;
- }
- table.invoice-table tr.total>td {
- font-weight:bold;
- border-top:2px solid #DDD;
- }
- table.invoice-table td.total {
- width:100px;
- }
- #member_invoices td.unpaid {
- color:red;
- }
- #member_invoices tr.total>td.right {
- text-align:right;
- }
- #payment_howto p {
- font-size:0.7rem;
- }
|