Benutzer:YvonneDHBW/common.css: Difference between revisions
From semantic-hub.io
YvonneDHBW (talk | contribs) Created page with "<syntaxhighlight lang="css"><span style="color:green">green text</span> body { font-size: larger; }</syntaxhighlight>" |
YvonneDHBW (talk | contribs) mNo edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
<syntaxhighlight lang="css"> | <syntaxhighlight lang="css">body { | ||
body { | background-color: #f5f7fa; | ||
font-family: Arial, sans-serif; | |||
} | |||
/* Überschriften */ | |||
h1, h2, h3 { | |||
color: #2c3e50; | |||
} | |||
/* Links */ | |||
a { | |||
color: #3498db; | |||
} | |||
/* Inhalt breiter machen */ | |||
.mw-body { | |||
max-width: 1200px; | |||
margin: auto; | |||
} | |||
/* Sidebar ausblenden */ | |||
#mw-panel { | |||
display: none; | |||
}</syntaxhighlight> | |||
Latest revision as of 16:30, 12 April 2026
body {
background-color: #f5f7fa;
font-family: Arial, sans-serif;
}
/* Überschriften */
h1, h2, h3 {
color: #2c3e50;
}
/* Links */
a {
color: #3498db;
}
/* Inhalt breiter machen */
.mw-body {
max-width: 1200px;
margin: auto;
}
/* Sidebar ausblenden */
#mw-panel {
display: none;
}
