Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Montez');
  2. @import url('https://fonts.googleapis.com/css?family=Raleway');
  3.  
  4. * { box-sizing: border-box; }
  5.  
  6. body {
  7. font-family: 'Raleway', sans-serif;
  8. text-align: center;
  9. }
  10.  
  11. header {
  12. background-image: url('pen-club-header.jpg');
  13. background-size: cover;
  14. color: white;
  15. padding: 50px 80px;
  16. height: 450px;
  17. text-align: left;
  18. }
  19. h1 {
  20. font-family: 'Montez', cursive;
  21. font-size: 64px;
  22. font-weight: normal;
  23. margin: 0;
  24. }
  25. h2 {
  26. font-size: 24px;
  27. font-weight: normal;
  28. margin-top: 5px;
  29. }
  30. img {
  31. width: 100%;
  32. }
  33. .main {
  34. padding: 40px 80px;
  35. }
  36. .main > h1 {
  37. padding-bottom: 20px;
  38. }
  39. .pen-plan {
  40. width: 30%;
  41. display: inline-block;
  42. border: 1px solid lightgray;
  43. margin: 0 10px;
  44. }
  45. .pen-plan > h3 {
  46. font-size: 24px;
  47. margin-top: 15px;
  48. margin-bottom: 0;
  49. }
  50. .pen-plan > p {
  51. padding: 0 5px;
  52. }
  53. footer {
  54. background-color: lightgray;
  55. padding: 40px 40px 40px 40px;
  56. }
  57. footer > a {
  58. color: black;
  59. text-decoration: none;
  60. margin-left: 10px;
  61. }
  62. div > a {
  63. display: block;
  64. background-color: gray;
  65. text-decoration: none;
  66. margin: 10px 50px 10px 50px;
  67. padding: 10px 20px 10px 20px;
  68. border-radius: 20px;
  69. }
  70. .pen-plan > a {
  71. color: rgb(255, 255, 255);
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement