Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Merriweather|Open+Sans|Special+Elite|Domine&display=swap');
  2.  
  3. * {
  4. box-sizing: border-box;
  5. }
  6.  
  7. html, body {
  8. height: 3000px;
  9. padding: 0;
  10. margin: 0;
  11. font-family: 'Domine', serif;
  12. background: url('../brooke.jpeg');
  13. background-size: cover;
  14. background-repeat: no-repeat;
  15. background-position: left;
  16. }
  17.  
  18. h1, h2 {
  19. font-family: 'Special Elite', cursive;
  20. }
  21.  
  22. header {
  23. padding: 20px;
  24. }
  25.  
  26. h1 {
  27. float: left;
  28. margin: 16px 0;
  29. }
  30.  
  31. ul {
  32. float: right
  33. }
  34.  
  35. li {
  36. display: inline-block;
  37. margin: 0 10px;
  38. padding: 2px;
  39. }
  40.  
  41. li a {
  42. font-family: 'Open Sans', sans-serif;
  43. text-transform: uppercase;
  44. color: #000000;
  45. text-decoration: none;
  46. font-weight: bold;
  47. padding: 8px;
  48. }
  49.  
  50. li:hover {
  51. background: none;
  52. }
  53.  
  54. li a:hover {
  55. border-bottom: 2px solid #000000;
  56. transition: border-bottom 1s linear;
  57. }
  58.  
  59. .quote {
  60. margin: 100px auto;
  61. text-align: center;
  62. font-family: 'Merriweather', serif;
  63. font-size: 2em;
  64. width: 800px;
  65. }
  66.  
  67. .author_section {
  68. font-family: 'Open Sans', serif;
  69. text-transform: uppercase;
  70. font-size: 15px;
  71. margin: 5px 0;
  72. }
  73.  
  74. .about_brooke {
  75. margin: 1000px auto 0 auto;
  76. width: 800px;
  77. border: 2px solid #000000;
  78. background: #fff;
  79. padding: 15px;
  80. }
  81.  
  82. .about_brooke h1 {
  83. float: none;
  84. }
  85.  
  86. p {
  87. margin: 15px;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement