Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

print.css

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 3.20 KiB


001  /* Print Style Sheet
002  ---------------------------------------- */
003   
004   
005  /* Lots still TODO here! */
006   
007  /* General markup styles */
008  * {
009      padding: 0;
010      margin: 0;
011  }
012   
013  body {
014      font: 11pt Verdana, Arial, Helvetica, sans-serif;
015      color:#000000;
016  }
017   
018  a:link        { color: #000000; text-decoration: none; }
019  a:visited    { color: #000000; text-decoration: none; }
020  a:active    { color: #000000; text-decoration: none; }
021   
022  img, .noprint, .navbar, .box1, .divider, .signature { display: none; }
023  /* Display smilies (Bug #47265) */
024  .content img {
025      display: inline;
026  }
027   
028  /* Container for the main body */
029  .wrap {
030      margin: 0 2em;
031  }
032   
033  p { font-size: 85%; }
034  .copyright { font-size: 75%; }
035  .page-number { float: right; width: auto; text-align: right; font-size: 75%; }
036   
037  h1, h2, h3, h1 a, h2 a, h3 a {
038      font-family: "Trebuchet MS", georgia, Verdana, Sans-serif;
039      color: #000000;
040      background: none;
041      text-decoration: none;
042      font-weight: bold;
043  }
044   
045  h1 { font-size: 20pt; }
046  h2 { font-size: 16pt; margin-top: 1em; }
047  h3 { font-size: 14pt; margin-top: 1em; }
048   
049  .content {
050      font-size: 11pt;
051      line-height: 14pt;
052      margin-bottom: 1em;
053      font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
054      overflow: hidden;
055  }
056   
057  /* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
058  .postbody a:link, .postbody a:visited, .postbody a:hover, .postbody a:active {
059      text-decoration: underline;
060      padding: 0.1em 0.2em;
061      margin: -0.1em -0.2em;
062      color: #666;
063      background: none;
064      font-size: 100%;
065  }
066   
067  html>body .postbody a:link:after, html>body .postbody a:visited:after {
068      content: " (" attr(href) ") ";
069      font-size: 90%;
070      text-decoration: none;
071  }
072   
073  hr {
074      height: 1px;
075      background-color: #999999;
076      border-width: 0;
077  }
078   
079  .author {
080      font-family: Verdana, Arial, Helvetica, sans-serif;
081      font-size: 75%;
082      margin-bottom: 0.6em;
083  }
084   
085  .date {
086      font-family: Verdana, Arial, Helvetica, sans-serif;
087      float: right;
088      position: relative;
089      text-align: right;
090      font-size: 75%;
091  }
092   
093  /* Don't want to print url for names or titles in content area */
094  .postbody .author a:link, .postbody .author a:visited,
095  html>body .postbody .author a:link:after,
096  html>body .postbody .author a:visited:after,
097  .postquote .quote-by a:link, .postquote .quote-by a:visited,
098  html>body .postquote .quote-by a:link:after,
099  html>body .postquote .quote-by a:visited:after,
100  html>body .postbody h1 a:link:after, html>body .postbody h2 a:link:after {
101      text-decoration: none;
102      content: "";
103  }
104   
105  /* Poster profile */
106  .postprofile { display: none; }
107  .grip-show { display:none; }
108   
109  /* Quote */
110  .postquote, blockquote {
111      font-size: 85%;
112      margin: 1em 18% 1em 4%;
113      padding: 0.5em;
114      position: relative;
115      line-height: 1.5em;
116      border: 1px #999999 solid;
117  }
118   
119  .postquote img { display: none; }
120  .postquote span { display: block; }
121  .postquote span .postquote { font-size: 100%; }
122  .quote-by, blockquote cite {
123      color: black;
124      display: block;
125      font-weight: bold;
126  }
127   
128  /* List */
129  ol, ul {
130      margin-left: 15pt;
131  }
132   
133  /* Misc page elements */
134  div.spacer { clear: both; }
135   
136  code { display: block; }
137   
138  /* Accessibility tweaks: Mozilla.org */
139  .skip_link { display: none; }
140   
141  .codebox p { display: none; }
142   
143  /* stylelint-disable declaration-property-unit-whitelist */
144  .emoji {
145      min-height: 18px;
146      min-width: 18px;
147      height: 1em;
148      width: 1em;
149  }
150  /* stylelint-enable declaration-property-unit-whitelist */
151