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

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