Ohm-Management - Projektarbeit B-ME
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.

style.less 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. @color: #0046a0;
  2. //header
  3. .om-header-container{
  4. position: fixed;
  5. top: 0px;
  6. z-index: 1;
  7. width: 100%;
  8. display: block;
  9. }
  10. .om-header{
  11. justify-content:space-between;
  12. display: flex;
  13. padding-left: 2%;
  14. padding-right: 2%;
  15. height: 65px;
  16. background-color: @color;
  17. }
  18. .logo-img{
  19. padding:10px;
  20. }
  21. .om-searchbar{
  22. display: inline-block;
  23. padding: 0;
  24. margin: 15px;
  25. }
  26. //content
  27. .om-content{
  28. margin: 10px;
  29. margin-top: 80px;
  30. margin-bottom: 80px;
  31. a{
  32. color: @color;
  33. &:hover{color:@color;}
  34. }
  35. }
  36. //footer
  37. .om-nav{
  38. position:fixed;
  39. bottom: 0;
  40. height: 65px;
  41. width: 100%;
  42. background-color: @color;
  43. z-index:5;
  44. i{
  45. color: white;
  46. }
  47. }
  48. a.nav-item.nav-link{
  49. }
  50. //msg-Card
  51. .om-card{
  52. margin: 10px;
  53. margin-bottom: 20px;
  54. padding: 20px;
  55. }
  56. .om-card-footer{
  57. justify-content: space-between;
  58. display: flex;
  59. }
  60. .om-btn{
  61. background-color: @color;
  62. color: white;
  63. }
  64. .msg-head{
  65. margin-top: 10px;
  66. margin-bottom: 10px;
  67. img{
  68. float: right
  69. }
  70. }
  71. .om-user-line{
  72. display: flex;
  73. width: 80%;
  74. i{
  75. margin-right: 2%;
  76. }
  77. }
  78. // bookmark
  79. .bookmark-headline{
  80. margin: 10px;
  81. padding-bottom: 10px;
  82. }
  83. //empty state
  84. .empty-state{
  85. margin: 40px;
  86. margin-top: 40%;
  87. color: #6c757d;
  88. text-align: center;
  89. i{
  90. font-size: 50px;
  91. margin: 10px;
  92. }
  93. }
  94. // profil
  95. .profil-text {
  96. margin-top: 70px;
  97. margin-bottom: 10px;
  98. text-align: center;
  99. display: block;
  100. margin-left: auto;
  101. margin-right: auto;
  102. }
  103. .profil-card {
  104. margin: 10px;
  105. margin-top: -80px;
  106. position: relative;
  107. z-index:1;
  108. }
  109. .profil-img {
  110. background-color: @color;
  111. border-style: solid;
  112. border-color: @color;
  113. border-width: thick;
  114. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  115. display: block;
  116. margin-left: auto;
  117. margin-right: auto;
  118. position: relative;
  119. z-index:2;
  120. }
  121. .edit-item {
  122. color: @color;
  123. margin-top: 10px;
  124. margin-right: 10px;
  125. i {
  126. float: right;
  127. font-size: 30px;
  128. }
  129. }
  130. // Modal
  131. .modal-content {
  132. height: 650px;
  133. }
  134. //.modal-header {
  135. // background-color: @color;
  136. // color: #FFF;
  137. //}
  138. .om-tab {
  139. font-size: 16px;
  140. display: block;
  141. margin-left: auto;
  142. margin-right: auto;
  143. margin-bottom: 10px;
  144. }
  145. .om-tablinks{
  146. background: 0;
  147. border: 0;
  148. }
  149. //bmd changes
  150. //border
  151. .form-group.is-focused .form-control .custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
  152. background-image: linear-gradient(0deg, @color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
  153. }
  154. //checkbox
  155. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check:before, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check:before {
  156. color: @color;
  157. }
  158. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check {
  159. color: @color;
  160. border-color: @color;
  161. }
  162. //label
  163. .is-focused [class*="bmd-label"], .is-focused[class^=bmd-label]{
  164. color: @color;
  165. }
  166. /*//Präsentation Styles
  167. .om-card {
  168. font-size: 140%;
  169. }
  170. .msg-head{
  171. font-size:90%;
  172. }
  173. .empty-state{
  174. margin: 40px;
  175. margin-top: 30%;
  176. font-size:140%;
  177. }*/