You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
2.1KB

  1. @import "compass";
  2. .float-left {
  3. float: left;
  4. }
  5. .float-right {
  6. float: right;
  7. }
  8. /* Navigation utilisateur en haut du site */
  9. .nav-user-top {
  10. float: right;
  11. .navbar {
  12. @include border-radius(0px);
  13. border: 0px none;
  14. margin-bottom: 0px;
  15. ul {
  16. li {
  17. padding-left: 5px;
  18. a {
  19. padding-left: 10px;
  20. padding-right: 10px;
  21. &.navbar-btn {
  22. padding: 5px 10px;
  23. }
  24. }
  25. ul li a {
  26. padding: 2px 20px;
  27. }
  28. }
  29. }
  30. }
  31. .dropdown-menu {
  32. .divider.dropdown-header {
  33. padding: 0px;
  34. }
  35. }
  36. }
  37. @media screen and (max-width: 768px) {
  38. .nav-user-top {
  39. .navbar {
  40. ul {
  41. float: right;
  42. margin-right: 0px;
  43. }
  44. .link-text {
  45. display: none;
  46. }
  47. .dropdown-menu {
  48. position: absolute;
  49. right: 5%;
  50. left: auto;
  51. border: 1px solid #ddd;
  52. background: #fff;
  53. @include box-shadow(0px 0px 4px gray);
  54. li {
  55. a {
  56. padding-left: 15px;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. }
  63. /* Block de date */
  64. .block-date {
  65. margin: 0px auto;
  66. padding-top: 0px;
  67. text-align: center;
  68. .day {
  69. text-transform: capitalize;
  70. line-height: 15px;
  71. font-size: 13px;
  72. text-transform: uppercase;
  73. }
  74. .num {
  75. font-size: 30px;
  76. line-height: 35px;
  77. font-weight: bold;
  78. }
  79. .month {
  80. text-transform: uppercase;
  81. line-height: 15px;
  82. font-size: 13px;
  83. color: darken($color-primary, 5);
  84. }
  85. }
  86. /* Page d'erreur */
  87. #main #content .site-error {
  88. .col-lg-6 {
  89. margin: 0px auto;
  90. float: none;
  91. }
  92. .panel {
  93. .panel-body {
  94. padding-bottom: 0px;
  95. }
  96. h2 {
  97. text-transform: none;
  98. font-size: 25px;
  99. margin-top: 0px;
  100. margin-bottom: 0px;
  101. }
  102. }
  103. .alert {
  104. padding-bottom: 5px;
  105. h2 {
  106. margin-top: 5px;
  107. }
  108. p {
  109. margin-bottom: 15px;
  110. }
  111. .btn {
  112. text-decoration: none;
  113. }
  114. }
  115. .actions {
  116. //text-align: center;
  117. }
  118. }
  119. /* Paiement */
  120. .payment-detail-remaining-surplus {
  121. font-size: 13px;
  122. color: gray;
  123. strong {
  124. font-weight: bold;
  125. }
  126. }