1.tocsel_title { 2 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Schriftfamilie */ 3 font-size: 19px; /* Schriftgröße */ 4 font-weight: 500; /* Halb-fett wie im Screenshot */ 5 color: #333333; /* Farbe für dunkleren Text */ 6 margin: 20px 0; /* Abstand oben und unten */ 7 line-height: 1.2; /* Zeilenhöhe für bessere Lesbarkeit */ 8 border-bottom: 1px solid #e5e5e5; /* Dünne Linie unter dem Text */ 9 padding-bottom: 10px; /* Mehr Abstand zwischen Text und Linie */ 10 display: block; /* Stellt sicher, dass es über die volle Breite geht */ 11 width: 100%; /* Linie über die gesamte Breite */ 12 box-sizing: border-box; /* Bezieht Padding und Ränder in die Breite mit ein */ 13} 14 15.tocsel_right div#setctoc_out { 16 max-height: none; 17 overflow: visible; 18 font-size: 12px; 19 padding: 0; 20 margin: 0; 21 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 22 line-height: 1.5; 23} 24 25.tocsel_right ul { 26 list-style: none; 27 margin: 0; 28 padding: 0; 29} 30 31.tocsel_right li { 32 border: 1px dashed #337AB7; 33 border-radius: 5px; 34 padding: 10px 15px; 35 margin: 5px 0; 36 background-color: #ffffff; 37 position: relative; 38 transition: background-color 0.3s ease, border 0.3s ease; 39} 40 41.tocsel_right li.hover-active { 42 border: none !important; 43 background-color: #eaeaea !important; 44 transition: background-color 0.3s ease, border 0.3s ease; /* Sanfte Animation */ 45} 46 47 48 49.tocsel_right li li:hover { 50 background-color: inherit; 51 border: 1px dashed #337AB7; 52} 53 54.tocsel_right li li li { 55 background-color: #ffffff; 56 border: 1px dashed #337AB7; 57} 58 59.tocsel_right li a { 60 color: #337AB7; 61 text-decoration: none; 62 font-weight: normal; 63 display: block; 64 border-radius: 5px; 65 position: relative; 66} 67 68.tocsel_right li a:hover { 69 color: #0056b3; 70 text-decoration: none; 71} 72 73.tocsel_right #selectoc_btn, 74.tocsel_right #selectoc_id, 75.tocsel_right li.tocsel_up { 76 display: none !important; 77} 78