Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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

base.css

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 2.05 KiB


001  /* --------------------------------------------------------------
002      $Base
003  -------------------------------------------------------------- */
004   
005  /** {
006      -webkit-box-sizing: border-box;
007      -moz-box-sizing: border-box;
008      box-sizing: border-box;
009  }
010  *:before,
011  *:after {
012      -webkit-box-sizing: border-box;
013      -moz-box-sizing: border-box;
014      box-sizing: border-box;
015  }*/
016   
017  /* Define your base font-size here; most elements will inherit this. _NO__DOTCOMMA__AFTER__*/
018  html {
019      font-size: 1em; /* Assuming 16px... */
020      line-height: 1.5; /* 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) _NO__DOTCOMMA__AFTER__*/
021      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
022  }
023   
024  body {
025      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
026      color: #333333;
027      background-color: #ffffff;
028  }
029   
030  input,
031  button,
032  select,
033  textarea {
034      font-family: inherit;
035      font-size: inherit;
036      line-height: inherit;
037  }
038   
039  figure { margin: 0 }
040  img { vertical-align: middle }
041   
042  hr {
043      margin-top: 20px;
044      margin-bottom: 20px;
045      border: 0;
046      border-top: 1px solid #e5e5e5;
047  }
048   
049  a {
050      color: #428bca;
051      text-decoration: none;
052  }
053   
054  a:hover,
055  a:focus,
056  a:active {
057      color: #2a6496;
058      text-decoration: underline;
059  }
060   
061  blockquote,
062  dl,
063  dd,
064  h1,
065  h2,
066  h3,
067  h4,
068  h5,
069  h6,
070  figure,
071  p,
072  pre { margin: 0 }
073  button {
074      background: transparent;
075      border: 0;
076      padding: 0;
077  }
078   
079  /**
080   * Work around a Firefox/IE bug where the transparent `button` background
081   * results in a loss of the default `button` focus styles.
082   */
083  button:focus {
084      outline: 1px dotted;
085      outline: 5px auto -webkit-focus-ring-color;
086  }
087   
088  fieldset {
089      border: 0;
090      margin: 0;
091      padding: 0;
092  }
093   
094  iframe { border: 0 }
095  ol,
096  ul {
097      list-style: none;
098      margin: 0;
099      padding: 0;
100  }
101   
102  /**
103   * Suppress the focus outline on links that cannot be accessed via keyboard.
104   * This prevents an unwanted focus outline from appearing around elements that
105   * might still respond to pointer events.
106   */
107  [tabindex="-1"]:focus { outline: none !important }
108   
109  /**
110   * Remove double underline from recent version of firefox
111   */
112  abbr[title] {
113      text-decoration: none;
114  }
115   
116