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.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. //createMsg
  79. taginput-container is-focusable:focus {
  80. border-color: @color !important;
  81. //box-shadow: 0;
  82. }
  83. // bookmark
  84. .bookmark-headline{
  85. margin: 10px;
  86. padding-bottom: 10px;
  87. }
  88. //empty state
  89. .empty-state{
  90. margin: 40px;
  91. margin-top: 40%;
  92. color: #6c757d;
  93. text-align: center;
  94. i{
  95. font-size: 50px;
  96. margin: 10px;
  97. }
  98. }
  99. // profil
  100. .profil-text {
  101. margin-top: 70px;
  102. margin-bottom: 10px;
  103. text-align: center;
  104. display: block;
  105. margin-left: auto;
  106. margin-right: auto;
  107. }
  108. .profil-card {
  109. margin: 10px;
  110. margin-top: -80px;
  111. position: relative;
  112. z-index:1;
  113. }
  114. .profil-img {
  115. background-color: @color;
  116. border-style: solid;
  117. border-color: @color;
  118. border-width: thick;
  119. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  120. display: block;
  121. margin-left: auto;
  122. margin-right: auto;
  123. position: relative;
  124. z-index:2;
  125. }
  126. .edit-item {
  127. color: @color;
  128. margin-top: 10px;
  129. margin-right: 10px;
  130. i {
  131. float: right;
  132. font-size: 30px;
  133. }
  134. }
  135. // Modal
  136. .modal-dialog {
  137. height: 90%;
  138. }
  139. .modal-content {
  140. height: 100%;
  141. }
  142. //.modal-header {
  143. // background-color: @color;
  144. // color: #FFF;
  145. //}
  146. .om-tab {
  147. font-size: 16px;
  148. display: block;
  149. margin-left: auto;
  150. margin-right: auto;
  151. margin-bottom: 10px;
  152. }
  153. .om-tablinks{
  154. background: 0;
  155. border: 0;
  156. }
  157. //bmd changes
  158. //border
  159. .form-group.is-focused .form-control .custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
  160. background-image: linear-gradient(0deg, @color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
  161. }
  162. //checkbox
  163. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check:before, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check:before {
  164. color: @color;
  165. }
  166. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check {
  167. color: @color;
  168. border-color: @color;
  169. }
  170. //label
  171. .is-focused [class*="bmd-label"], .is-focused[class^=bmd-label]{
  172. color: @color;
  173. }
  174. /*//Präsentation Styles
  175. .om-card {
  176. font-size: 140%;
  177. }
  178. .msg-head{
  179. font-size:90%;
  180. }
  181. .empty-state{
  182. margin: 40px;
  183. margin-top: 30%;
  184. font-size:140%;
  185. }*/