Advertisement
Guest User

swagboy

a guest
Apr 29th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. @CHARSET "UTF-8";
  2. body {
  3.     margin: auto;             /* Centrera sidan */
  4.     width: 860px;
  5.     font-family: sans-serif;
  6.     font-size: 100%;
  7. }
  8. section, header, footer {
  9.   outline: 1px solid red;
  10. }
  11. .startpage > header {
  12.   text-align: center;
  13. }
  14. .startpage > header > h1 {
  15.     font-size: 500%;           /* Massiv rubrik */
  16. }
  17. .startpage > header > p.tagline {
  18.     font-size: 120%;
  19.     padding: 0.5em;   /* Avstånd till kantlinje */
  20.     border-top: 3px double #00AF64;
  21.     border-bottom: 3px double #00AF64;
  22.     margin: 4em 0;
  23. }
  24. .startpage > section {
  25.   display: inline-block;
  26.   width: 20%;
  27.   margin-right: 6%;
  28.   vertical-align: top;
  29. }
  30. .startpage > section:last-of-type {
  31.   margin-right: 0;
  32. }
  33. .startpage > section > h2 {
  34.   margin: 0 0 1em;
  35.   padding: 2em 0;
  36.   background-color: #F5F5F5;
  37.   text-align: center;
  38. }
  39. footer {
  40.   display: block;
  41.   margin-top: 3em;
  42.   text-align: center;
  43.   color: #999;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement