|
|
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) |
Zeile 1: |
Zeile 1: |
| /* Das folgende CSS wird für Benutzer der Vector-Benutzeroberfläche geladen. */ | | /* Das folgende CSS wird für Benutzer der Vector-Benutzeroberfläche geladen. */ |
| /* Stil für die Container der Boxen */
| |
| .portal-container {
| |
| display: flex;
| |
| flex-wrap: wrap;
| |
| gap: 10px; /* Abstand zwischen den Boxen */
| |
| }
| |
|
| |
| /* Stil für die Box */
| |
| .portal-box {
| |
| border: 1px solid #a2a9b1;
| |
| padding: 10px;
| |
| margin-bottom: 10px;
| |
| background-color: #f9f9f9;
| |
| box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
| |
| flex: 1 1 calc(50% - 10px); /* Jede Box nimmt ein Drittel der Breite ein, minus Abstand */
| |
| box-sizing: border-box; /* Damit Padding und Border in der Breite mit einberechnet werden */
| |
| }
| |
| /* Stil für die Box */
| |
| .portal-boxw {
| |
| border: 1px solid #a2a9b1;
| |
| padding: 10px;
| |
| margin-bottom: 10px;
| |
| background-color: #f9f9f9;
| |
| box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
| |
| }
| |
|
| |
| /* Stil für die Überschrift der Box */
| |
| .portal-box h2 {
| |
| background-color: #d0e4f7;
| |
| color: #000000; /* Schwarz */
| |
| font-weight: bold; /* Fett gedruckt */
| |
| margin: -10px -10px 10px -10px;
| |
| padding: 5px 10px;
| |
| font-size: 1.2em;
| |
| border-bottom: 1px solid #a2a9b1;
| |
| }
| |
| /* Stil für die Überschrift der Box */
| |
| .portal-boxw h2 {
| |
| background-color: #d0e4f7;
| |
| color: #000000; /* Schwarz */
| |
| font-weight: bold; /* Fett gedruckt */
| |
| margin: -10px -10px 10px -10px;
| |
| padding: 5px 10px;
| |
| font-size: 1.2em;
| |
| border-bottom: 1px solid #a2a9b1;
| |
| }
| |