Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. body {
  6. margin: 0;
  7. font-family: 'Bebas Neue', cursive;
  8. font-weight: 100;
  9. background-color: #fff8ec
  10.  
  11. }
  12. article {
  13. padding: 40px;
  14. background-color: #ffd28f;
  15. border-radius: 15px;
  16. position: relative;
  17.  
  18. }
  19.  
  20. article + article {
  21. margin-top: 40px;
  22. }
  23. h1 {
  24. font-size: 2.5rem;
  25. }
  26. h2 {
  27. font-size: 2rem;
  28. }
  29. h3 {
  30. font-size: 1.5rem;
  31. }
  32.  
  33. main {
  34. max-width: 60%;
  35. margin: auto;
  36. padding: 20px;
  37. margin-top: 50px;
  38. }
  39. a {
  40. text-decoration: none;
  41. color: rgb(50, 50, 50)
  42. }
  43. a:hover {
  44. color: deeppink;
  45. }
  46. nav {
  47. position: fixed;
  48. padding: 20px;
  49. top: 0;
  50. left: 0;
  51. right: 0;
  52. background: rgb(218, 158, 27);
  53. z-index: 1
  54. }
  55.  
  56. nav ul {
  57. list-style: none;
  58. padding: 0;
  59. margin: 0;
  60. padding: 0;
  61. }
  62.  
  63.  
  64. nav ul li {
  65. display: inline;
  66. }
  67. footer {
  68. padding: 20px;
  69. font-size: 11px;
  70. }
  71.  
  72. img {
  73. display: block;
  74. max-width: 100%;
  75. width: 100%;
  76. height: 300px;
  77. object-fit: cover;
  78. }
  79.  
  80. .box {
  81. width: 100px;
  82. height: 100px;
  83. background-color: deeppink;
  84. border: 5px solid black;
  85. position: absolute;
  86. right: 0;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement