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 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. i{
  44. color: white;
  45. }
  46. }
  47. //msg-Card
  48. .om-card{
  49. margin: 10px;
  50. margin-bottom: 20px;
  51. padding: 20px;
  52. }
  53. .om-card-footer{
  54. justify-content: space-between;
  55. display: flex;
  56. }
  57. .om-btn{
  58. background-color: @color;
  59. color: white;
  60. }
  61. .msg-head{
  62. margin-top: 10px;
  63. margin-bottom: 10px;
  64. img{
  65. float: right
  66. }
  67. }
  68. .om-user-line{
  69. display: flex;
  70. width: 80%;
  71. i{
  72. margin-right: 2%;
  73. }
  74. }
  75. // bookmark
  76. .bookmark-headline{
  77. margin: 10px;
  78. padding-bottom: 10px;
  79. }
  80. //empty state
  81. .empty-state{
  82. margin: 40px;
  83. margin-top: 40%;
  84. color: #6c757d;
  85. text-align: center;
  86. i{
  87. font-size: 50px;
  88. margin: 10px;
  89. }
  90. }
  91. // profil
  92. .profil-text {
  93. margin-top: 70px;
  94. margin-bottom: 10px;
  95. text-align: center;
  96. display: block;
  97. margin-left: auto;
  98. margin-right: auto;
  99. }
  100. .profil-card {
  101. margin: 10px;
  102. margin-top: -80px;
  103. position: relative;
  104. z-index:1;
  105. }
  106. .profil-img {
  107. background-color: @color;
  108. border-style: solid;
  109. border-color: @color;
  110. border-width: thick;
  111. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  112. display: block;
  113. margin-left: auto;
  114. margin-right: auto;
  115. position: relative;
  116. z-index:2;
  117. }
  118. .edit-item {
  119. color: @color;
  120. margin-top: 10px;
  121. margin-right: 10px;
  122. i {
  123. float: right;
  124. font-size: 30px;
  125. }
  126. }
  127. .om-tab {
  128. font-size: 16px;
  129. display: block;
  130. margin-left: auto;
  131. margin-right: auto;
  132. margin-bottom: 10px;
  133. }
  134. .om-tablinks{
  135. background: 0;
  136. border: 0;
  137. }
  138. //bmd changes
  139. //border
  140. .form-group.is-focused .form-control .custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
  141. background-image: linear-gradient(0deg, @color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
  142. }
  143. //checkbox
  144. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check:before, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check:before {
  145. color: @color;
  146. }
  147. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check {
  148. color: @color;
  149. border-color: @color;
  150. }
  151. //label
  152. .is-focused [class*="bmd-label"], .is-focused[class^=bmd-label]{
  153. color: @color;
  154. }