cd67-custom.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. @color1 : #629DD1;
  2. @color2 : #23527c;
  3. /* Breadcrumb et mise en avant */
  4. .color1 {
  5. color: @color1;
  6. }
  7. .menu_principal a, .menu_principal div {
  8. background-color: @color1;
  9. }
  10. .submenu a{
  11. background-color: #fff;
  12. color: @color1;
  13. }
  14. .menu-button{
  15. background: @color1;
  16. border-color: @color1;
  17. }
  18. .input-group-addon{
  19. background-color: @color1;
  20. border-color: @color1;
  21. }
  22. .menu_principal a:hover, .menu_principal div:hover {
  23. background-color: darken(@color1, 25%);
  24. }
  25. legend {
  26. height: 40px !important;
  27. border-color: @color1;
  28. }
  29. #breadcrumbs-one a {
  30. color: black;
  31. }
  32. /* Fond de la sidebar */
  33. .color2 {
  34. color: #5a5555;
  35. }
  36. #wrapper.toggled-2 #sidebar-wrapper {
  37. background-color: #5a5555;
  38. }
  39. .background-color2 {
  40. background-color: #5a5555;
  41. }
  42. #a-li-menu-l2-active {
  43. border-bottom-color: #5a5555;
  44. }
  45. textarea:not(:empty):not(:placeholder-shown):not(:focus)[aria-invalid='true'],input:not([value=""]):not(:placeholder-shown):not(:focus)[aria-invalid='true']{
  46. background-color: rgba(255, 0, 0, 0.5) /*rgba(218, 18, 81, O.5)*/}
  47. input[aria-required='true'], textarea[aria-required='true'] {
  48. border-color:#f00
  49. }
  50. .pagination {
  51. background: #eee;
  52. padding: 10px;
  53. width: 100%;
  54. text-align:center;
  55. margin:0;
  56. }
  57. .flex-list {
  58. display: flex;
  59. flex-direction: row;
  60. flex-wrap: wrap;
  61. justify-content: space-around;
  62. }
  63. .flex-col {
  64. display: flex;
  65. flex-direction: column;
  66. }
  67. .disabled-input-as-label {
  68. border: 0px;
  69. background: none;
  70. }
  71. label[for="recherche"]{
  72. width: 210px;
  73. }
  74. header .search{
  75. cursor: pointer;
  76. }
  77. h1 .sup{
  78. font-size: 0.7em;
  79. top: -.6em;
  80. }
  81. header nav{
  82. padding: 0 1em 0 1em;
  83. }
  84. #content {
  85. margin: 4em auto;
  86. width: 80%;
  87. }
  88. /* Home */
  89. .home-content {
  90. width: 100%;
  91. }
  92. .home-content .row {
  93. margin: 2em auto;
  94. height: 100%;
  95. }
  96. .home-content .row img {
  97. width: 100%;
  98. }
  99. .home-content .card {
  100. height: 100%;
  101. }
  102. .home-content .card ul {
  103. margin-top: 2em;
  104. }
  105. .home-content .card li {
  106. margin-top: 1em;
  107. }
  108. .home-content .card li a {
  109. text-decoration: underline;
  110. }
  111. .home-content .card .input-search {
  112. width: 30%;
  113. min-width: 300px;
  114. }
  115. .breadcrumb-arrow {
  116. float: left;
  117. padding: 0.7em 0.5em 0.7em 0.5em;
  118. }
  119. /* Pages d'index */
  120. #content header {
  121. display: flex;
  122. flex-direction: row;
  123. color: @color2;
  124. margin-bottom: 2em;
  125. }
  126. #content header h2 {
  127. flex: 2;
  128. font-size: 1.8em;
  129. margin: 0;
  130. }
  131. #content header a {
  132. flex: 1;
  133. padding: 0 1em;
  134. }
  135. .datatable tbody>tr:hover{
  136. cursor: pointer;
  137. background-color: lighten(@color1, 30%);
  138. }