Digital Rights Management für elektronische Patientenakten
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.

styles.css 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @import url(https://fonts.googleapis.com/css?family=Lato);
  2. .topic {
  3. font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
  4. font-size: 15px;
  5. font-style: normal;
  6. font-weight: bold;
  7. margin-bottom: 6pt;
  8. margin-left: 0pt;
  9. margin-top: 6pt;
  10. }
  11. .content {
  12. font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
  13. font-size: 15px;
  14. font-style: normal;
  15. font-weight: normal;
  16. margin-bottom: 6pt;
  17. margin-left: 25px;
  18. margin-top: 6pt;
  19. }
  20. button {
  21. background-color: rgba(54, 94, 239, 0.3);
  22. border-radius: 25px;
  23. padding: 10px;
  24. box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
  25. backdrop-filter: blur(6px);
  26. border: 0;
  27. }
  28. .sidebar-nav {
  29. text-align: center;
  30. margin-top: 20px;
  31. list-style: none;
  32. flex-direction: column;
  33. list-style-type: none;
  34. background-color: rgba(54, 94, 239, 0.3);
  35. border-radius: 25px;
  36. padding: 10px;
  37. box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
  38. backdrop-filter: blur(6px);
  39. }
  40. .sidebar-nav li
  41. {
  42. padding: 6px 0;
  43. }
  44. .sidebar-nav a {
  45. position: relative;
  46. display: block;
  47. padding: 10px 0;
  48. font-family: Lato, sans-serif;
  49. color: #000000;
  50. text-decoration: none;
  51. text-transform: uppercase;
  52. transition: 0.5s;
  53. }
  54. .sidebar-nav a:after {
  55. position: absolute;
  56. content: "";
  57. top: 100%;
  58. left: 0;
  59. width: 100%;
  60. height: 3px;
  61. background: #222222;
  62. transform: scaleX(0);
  63. transition: transform 0.5s;
  64. }
  65. .sidebar-nav a:hover, li:hover, button:hover{
  66. color: #95a5a6;
  67. }
  68. .sidebar-nav a:hover::after {
  69. transform: scaleX(1);
  70. }