karmen.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. padding-top: 60px;
  3. }
  4. .base-template {
  5. padding: 45px;
  6. }
  7. /* #myInput { */
  8. /* background-image: url('/css/searchicon.png'); /\* Add a search icon to input *\/ */
  9. /* background-position: 10px 12px; /\* Position the search icon *\/ */
  10. /* background-repeat: no-repeat; /\* Do not repeat the icon image *\/ */
  11. /* width: 100%; /\* Full-width *\/ */
  12. /* font-size: 16px; /\* Increase font-size *\/ */
  13. /* padding: 12px 20px 12px 40px; /\* Add some padding *\/ */
  14. /* border: 1px solid #ddd; /\* Add a grey border *\/ */
  15. /* margin-bottom: 12px; /\* Add some space below the input *\/ */
  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. }