Advertisement
Guest User

Untitled

a guest
May 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.22 KB | None | 0 0
  1. /* ====================================================
  2.  
  3.    Stylesheet mit Reset und Restaurierung der Abstände
  4.    
  5.    Datei: css/reset.css
  6.    Datum: ...
  7.    Autor: ...
  8.  
  9. ========================================================== */
  10.  
  11. @media all {
  12.  
  13.   /* ==============================================
  14.   TEIL I – Reset
  15.   ============================================== */
  16.  
  17.   html { overflow-y: scroll; }
  18.  
  19.   body, div,
  20.   h1, h2, h3, h4, h5, h6,
  21.   p, blockquote, pre, code,
  22.   ul, ol, li,
  23.   table, th, td,
  24.   form, fieldset, legend, input, textarea {
  25.     padding: 0;
  26.     margin: 0;
  27.   }
  28.  
  29.   article, aside, details, figcaption, figure, footer,
  30.   header, hgroup, main, nav, section, summary {
  31.     display: block;
  32.   }
  33.  
  34.   /* ==============================================
  35.   TEIL II – Abstände restaurieren
  36.   ============================================== */
  37.   h2, h3, h4, h5, h6,
  38.   p, blockquote, pre,
  39.   ul, ol {
  40.     margin-bottom: 1em;
  41.   }
  42.   ul, ol { margin-left: 2em; }
  43.   ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; }
  44.   blockquote { margin: 1em 2em; }
  45.  
  46.  
  47. } /* Ende @media – nicht löschen! */
  48.  
  49. /* ======================================
  50.    E N D E
  51.    =================================== */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement