Guest User

Untitled

a guest
Apr 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. html {
  2. box-sizing: border-box;
  3. }
  4. *,
  5. *:before,
  6. *:after {
  7. box-sizing: inherit;
  8. }
  9. body,
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. h6,
  16. p,
  17. ul {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. body {
  22. background-color: #FFA500;
  23. }
  24.  
  25. /* Orange sida*/
  26.  
  27. .container {
  28. background-color: #FF8000;
  29. width: 630px;
  30. margin: 30px auto;
  31. border-radius: 20px;
  32. padding: 40px;
  33. box-shadow: 0 0 5px #FFF;
  34. }
  35.  
  36. /* Rubriken */
  37.  
  38. h1 {
  39. color: #FF1400;
  40. font-family: 'Rammetto One', cursive;
  41. font-size: 70px;
  42. text-align: center;
  43. text-shadow: 1px 1px 2px #FFF;
  44. }
  45.  
  46. /* En Replik*/
  47.  
  48. img {
  49. border: 10px solid white;
  50. margin-bottom: 20px;
  51. }
  52. p {
  53. color: #FFFFFF;
  54. font-family: 'Lato', sans-serif;
  55. margin-top: 20px;
  56. font-weight: bold;
  57.  
  58. }
  59.  
  60. /*Bilderna omlott vänster & höger */
  61.  
  62. .left {
  63. float: left;
  64. margin-right: 10px;
  65. }
  66. .right {
  67. float: right;
  68. margin-left: 10px;
  69. }
  70. hr {
  71. clear: both;
  72. visibility: hidden;
  73. }
  74. .text-left {
  75. text-align: left;
  76. margin-right: 50px;
  77. }
  78. .text-right {
  79. text-align: right;
  80. margin-left: 50px;
  81. }
Add Comment
Please, Sign In to add comment