style.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. body {
  2. padding-top: 60px;
  3. }
  4. div.login {
  5. padding-left: 20%;
  6. padding-right: 20%;
  7. }
  8. .login form {
  9. border: 1px solid #cccccc;
  10. padding: 5%;
  11. border-radius: .3rem;
  12. margin: 5%;
  13. }
  14. .base-template {
  15. padding: 45px;
  16. }
  17. #myUL {
  18. /* Remove default list styling */
  19. list-style-type: none;
  20. padding: 0;
  21. margin: 0;
  22. }
  23. #myUL li a {
  24. border: 1px solid #ddd; /* Add a border to all links */
  25. margin-top: -1px; /* Prevent double borders */
  26. background-color: #f6f6f6; /* Grey background color */
  27. padding: 12px; /* Add some padding */
  28. text-decoration: none; /* Remove default text underline */
  29. font-size: 18px; /* Increase the font-size */
  30. color: black; /* Add a black text color */
  31. display: block; /* Make it into a block element to fill the whole list */
  32. }
  33. #myUL li a.header {
  34. background-color: #e2e2e2; /* Add a darker background color for headers */
  35. cursor: default; /* Change cursor style */
  36. }
  37. #myUL li a:hover:not(.header) {
  38. background-color: #eee; /* Add a hover effect to all links, except for headers */
  39. }
  40. .list-group-item small {
  41. background-color: #ffffff;
  42. color: #333333;
  43. padding: 3px 6px 3px 6px;
  44. border-radius: .28571429rem;
  45. border: 1px solid #333333;
  46. }
  47. ul.karmen-related-elements {
  48. list-style-type: none;
  49. }
  50. .karmen-info-header {
  51. margin-bottom: 20px;
  52. }
  53. .karmen-relation-header {
  54. border-bottom: 1px solid #cccccc;
  55. padding-bottom: 10px;
  56. margin-bottom: 25px;
  57. margin-top: 20px;
  58. }
  59. .karmen-info-header h1 {
  60. margin-top: 0;
  61. }
  62. .karmen-dashboard-header h2 {
  63. margin-top: 0;
  64. margin-bottom: 20px;
  65. }
  66. .karmen-dashboard-header {
  67. margin-top: 50px;
  68. }
  69. .experimental {
  70. vertical-align: middle;
  71. margin-left: 3px;
  72. margin-top: -20px;
  73. font-size: 10px;
  74. }
  75. .terminal {
  76. background-color: black;
  77. color: white;
  78. }