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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. z-index:10;
  10. }
  11. .om-header{
  12. justify-content:space-between;
  13. display: flex;
  14. padding-left: 2%;
  15. padding-right: 2%;
  16. height: 65px;
  17. background-color: @color;
  18. }
  19. .logo-img{
  20. padding:10px;
  21. }
  22. .om-searchbar{
  23. display: inline-block;
  24. padding: 0;
  25. margin: 15px;
  26. }
  27. //content
  28. .om-content{
  29. margin: 10px;
  30. margin-top: 80px;
  31. margin-bottom: 80px;
  32. width: auto;
  33. overflow: hidden;
  34. a{
  35. color: #0046a0;
  36. &:hover{color: #0046a0;}
  37. .menu-list {
  38. color: white !important;
  39. &:hover{color: white !important; }
  40. }}
  41. }
  42. .content-desktop {
  43. margin-right: 30px;
  44. }
  45. //footer
  46. .om-nav{
  47. position:fixed;
  48. bottom: 0;
  49. height: 65px;
  50. width: 100%;
  51. background-color: @color;
  52. z-index:10;
  53. i{
  54. color: white;
  55. }
  56. }
  57. a.nav-item.nav-link{
  58. }
  59. .navbar-item {
  60. display: inline-block;
  61. text-align: center;
  62. i {
  63. margin: auto;
  64. text-align: center;
  65. }
  66. }
  67. //msg-Card
  68. .om-card{
  69. margin: 10px;
  70. margin-bottom: 20px;
  71. padding: 20px;
  72. }
  73. .om-card-footer{
  74. justify-content: space-between;
  75. display: flex;
  76. }
  77. .om-btn{
  78. background-color: @color;
  79. color: white;
  80. }
  81. .msg-head{
  82. margin-top: 10px;
  83. margin-bottom: 10px;
  84. img{
  85. float: right
  86. }
  87. }
  88. .om-user-line{
  89. display: flex;
  90. width: 80%;
  91. i{
  92. margin-right: 2%;
  93. }
  94. }
  95. //createMsg
  96. taginput-container is-focusable:focus {
  97. border-color: @color !important;
  98. //box-shadow: 0;
  99. }
  100. // bookmark
  101. .bookmark-headline{
  102. margin: 10px;
  103. padding-bottom: 10px;
  104. }
  105. //empty state
  106. .empty-state{
  107. margin: 40px;
  108. margin-top: 40%;
  109. color: #6c757d;
  110. text-align: center;
  111. i{
  112. font-size: 50px;
  113. margin: 10px;
  114. }
  115. }
  116. // profil
  117. .profil-text {
  118. margin-top: 90px;
  119. text-align: center;
  120. display: block;
  121. margin-left: auto;
  122. margin-right: auto;
  123. z-index:2;
  124. }
  125. .profil-card {
  126. margin-left: 10px;
  127. margin-right: 10px;
  128. margin-top: 130px;
  129. padding-top: 10px;
  130. margin-bottom: 15px;
  131. position: relative;
  132. z-index:1;
  133. }
  134. .prof-image {
  135. background-color: @color;
  136. border-style: solid;
  137. border-color: @color;
  138. border-width: thick;
  139. border-radius: 50%;
  140. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  141. display: block;
  142. position: absolute;
  143. top: -50px;
  144. left: 50%;
  145. margin-left: -60px;
  146. width: 120px !important;
  147. height: 120px;
  148. z-index:4;
  149. }
  150. hr.first {
  151. margin-top: 0px;
  152. margin-bottom: 0px;
  153. }
  154. .btnprofil {
  155. height: 60px;
  156. margin-top: 10px;
  157. margin-left: auto;
  158. margin-right: auto;
  159. margin-bottom: 10px;
  160. text-align: center;
  161. button {
  162. width: 110px;
  163. display: inline-block;
  164. margin-right: 20px;
  165. margin-left: 20px;
  166. }
  167. }
  168. .logout-item {
  169. color: @color;
  170. margin-top: -25px;
  171. margin-right: 10px;
  172. i {
  173. float: right;
  174. font-size: 30px;
  175. z-index:3;
  176. }
  177. }
  178. // Modal
  179. .vertical-alignment-helper {
  180. display:table;
  181. height: 100%;
  182. width: 100%;
  183. }
  184. .vertical-align-center {
  185. /* To center vertically */
  186. display: table-cell;
  187. vertical-align: middle;
  188. }
  189. .modal-content {
  190. width:inherit;
  191. height: 80%;
  192. /* To center horizontally */
  193. margin: 0 auto;
  194. }
  195. .om-tab {
  196. font-size: 16px;
  197. display: block;
  198. margin-left: auto;
  199. margin-right: auto;
  200. margin-bottom: 10px;
  201. }
  202. .om-tablinks{
  203. background: 0;
  204. border: 0;
  205. }
  206. //bmd changes
  207. //border
  208. .form-group.is-focused .form-control .custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
  209. background-image: linear-gradient(0deg, @color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
  210. }
  211. //checkbox
  212. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check:before, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check:before {
  213. color: @color;
  214. }
  215. .checkbox label input[type=checkbox]:checked+.checkbox-decorator .check, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check {
  216. color: @color;
  217. border-color: @color;
  218. }
  219. //label
  220. .is-focused [class*="bmd-label"], .is-focused[class^=bmd-label]{
  221. color: @color;
  222. }
  223. /*//Präsentation Styles
  224. .om-card {
  225. font-size: 140%;
  226. }
  227. .msg-head{
  228. font-size:90%;
  229. }
  230. .empty-state{
  231. margin: 40px;
  232. margin-top: 30%;
  233. font-size:140%;
  234. }*/
  235. .om-searchbar input.input{
  236. border-radius: 0 !important;
  237. box-shadow: none !important;
  238. border-right: white;
  239. }
  240. button.clearButton{
  241. border-radius: 0 !important;
  242. background-color: white;
  243. margin-left: -5px;
  244. border-color: #dbdbdb;
  245. border-left: white;
  246. }
  247. .taglink{
  248. color: @color;
  249. }