| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- @color1 : #629DD1;
- @color2 : #23527c;
- /* Breadcrumb et mise en avant */
- .color1 {
- color: @color1;
- }
- .menu_principal li {
- margin: 0 !important;
- }
- .menu_principal a, .menu_principal div {
- background-color: @color1;
- }
- .submenu a{
- background-color: #fff;
- color: @color1;
- }
- .input-group-addon{
- background-color: @color1;
- border-color: @color1;
- }
- .menu_principal a:hover, .menu_principal div:hover {
- background-color: darken(@color1, 25%);
- }
- legend {
- height: 40px !important;
- border-color: @color1;
- }
- #breadcrumbs-one a {
- color: black;
- }
- /* TopBar */
- #topbar {
- background-color: lighten(@color1, 33%);
- border-bottom: 1px solid @color1;
- }
- #title{
- margin: 10px;
- padding: 0;
- }
- #titlebar {
- display: inline-block;
- }
- #loginbar{
- margin-top: 3px;
- }
- #loginbar * {
- color: darken(@color1, 25%);
- }
- .menu-hamburger {
- color: @color1;
- top: 7px;
- left: 20px;
- position: fixed;
- cursor: pointer;
- font-size: 3em;
- }
- .menu-hamburger:hover {
- color: darken(@color1, 25%);
- }
- /* Fond de la sidebar */
- .color2 {
- color: #5a5555;
- }
- #wrapper.toggled-2 #sidebar-wrapper {
- background-color: #5a5555;
- }
- .background-color2 {
- background-color: #5a5555;
- }
- #a-li-menu-l2-active {
- border-bottom-color: #5a5555;
- }
- textarea:not(:empty):not(:placeholder-shown):not(:focus)[aria-invalid='true'],input:not([value=""]):not(:placeholder-shown):not(:focus)[aria-invalid='true']{
- background-color: rgba(255, 0, 0, 0.5) /*rgba(218, 18, 81, O.5)*/}
- input[aria-required='true'], textarea[aria-required='true'] {
- border-color:#f00
- }
- .pagination {
- background: #eee;
- padding: 10px;
- width: 100%;
- text-align:center;
- margin:0;
- }
- .flex-list {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .flex-col {
- display: flex;
- flex-direction: column;
- }
- .disabled-input-as-label {
- border: 0px;
- background: none;
- }
- label[for="recherche"]{
- width: 210px;
- }
- header .search{
- cursor: pointer;
- }
- h1 .sup{
- font-size: 0.7em;
- top: -.6em;
- }
- header nav{
- padding: 0 1em 0 1em;
- border-bottom: 1px solid;
- }
- #content {
- margin: 3em auto;
- width: 80%;
- }
- /* Home */
- .home-content {
- width: 100%;
- }
- .home-content .row {
- margin: 2em auto;
- height: 100%;
- }
- .home-content .row img {
- width: 100%;
- }
- .home-content .card {
- height: 100%;
- }
- .home-content .card ul {
- margin-top: 2em;
- }
- .home-content .card li {
- margin-top: 1em;
- }
- .home-content .card li a {
- text-decoration: underline;
- }
- .home-content .card .input-search {
- width: 30%;
- min-width: 300px;
- }
- .breadcrumb-arrow {
- float: left;
- padding: 0.7em 0.5em 0.7em 0.5em;
- }
- /* Pages d'index */
- #content header {
- display: flex;
- flex-direction: row;
- color: @color2;
- margin-bottom: 2em;
- }
- #content header h2 {
- flex: 2;
- font-size: 1.8em;
- margin: 0;
- }
- #content header a {
- flex: 1;
- padding: 0 1em;
- }
- .datatable tbody>tr:hover{
- cursor: pointer;
- background-color: lighten(@color1, 30%);
- }
- .special_hidden {
- float: right;
- width: 0;
- height:0;
- border:none;
- background:none;
- color:white;
- }
- #yearpicker {
- color: #337ab7;
- border: 1px solid lightgrey;
- }
- #goback {
- color:#337ab7;
- font-size: 18px;
- }
|