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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @color: #0046a0;
  2. //header
  3. .om-header-container{
  4. position: fixed;
  5. top: 0px;
  6. z-index: 1;
  7. width: 100%;
  8. }
  9. .om-header{
  10. justify-content:space-between;
  11. display: flex;
  12. padding-left: 2%;
  13. padding-right: 2%;
  14. height: 8%;
  15. background-color: @color;
  16. }
  17. .om-searchbar{
  18. display: inline-block;
  19. padding-bottom: 0%;
  20. margin: 3%;
  21. }
  22. //content
  23. .om-content{
  24. margin: 10px;
  25. margin-top: 75px;
  26. margin-bottom: 70px;
  27. a{
  28. color: @color;
  29. &:hover{color:@color;}
  30. }
  31. }
  32. .om-card{
  33. margin: 10px;
  34. margin-bottom: 20px;
  35. padding: 20px;
  36. }
  37. .om-btn{
  38. background-color: @color;
  39. }
  40. .om-user-head{
  41. display: flex;
  42. margin-bottom: 5%;
  43. i{
  44. margin-right: 2%;
  45. }
  46. }
  47. //footer
  48. .om-nav{
  49. position:fixed;
  50. bottom: 0;
  51. height: 8%;
  52. width: 100%;
  53. background-color: @color;
  54. i{
  55. color: white;
  56. }
  57. }
  58. //bmd changes
  59. .form-group.is-focused .form-control {
  60. background-image: linear-gradient(0deg,@color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
  61. }