Advertisement
xjatr2

no olvidar

Jul 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5.  
  6. html, body {
  7. height: 100%;
  8. width: 100%;
  9. }
  10.  
  11. body {
  12. align-items: center;
  13. background-color: #FFF;
  14. display: flex;
  15. font-family: 'Raleway', sans-serif;
  16. flex-direction: column;
  17. justify-content: center;
  18. overflow: hidden;
  19. }
  20.  
  21. div.container {
  22. align-items: center;
  23. align-self: center;
  24. background: url('https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-1/01/background.jpg') center center;
  25. border-radius: 100%;
  26. display: flex;
  27. flex-direction: column;
  28. min-height: 800px;
  29. justify-content: center;
  30. width: 800px;
  31. }
  32.  
  33. h1 {
  34. color: #fff;
  35. font-family: 'Playfair Display', serif;
  36. font-size: 52px;
  37. font-weight: 900;
  38. line-height: 46px;
  39. margin: 0 0 60px 0;
  40. text-align: center;
  41. text-shadow: 0px 2px 4px rgba(34,62,66,.75);
  42. width: 50%;
  43. }
  44.  
  45. a.btn {
  46. background: linear-gradient(45deg, rgba(255,184,115,0.65) 0%,rgba(255,124,189,0.65) 50%,rgba(108,0,153,0.65) 100%);
  47. border-radius: 2px;
  48. box-shadow: 0px 2px 4px rgba(34,62,66,.25);
  49. color: #fff;
  50. font-size: 18px;
  51. letter-spacing: 1px;
  52. padding: 16px 32px;
  53. text-decoration: none;
  54. text-transform: uppercase;
  55. -webkit-transition: box-shadow 1s ease;
  56. transition: box-shadow 1s ease;
  57. }
  58.  
  59. a.btn:hover {
  60. box-shadow: 0px 4px 4px rgba(34,62,66,.5);
  61. -webkit-transition: box-shadow 1s ease;
  62. transition: box-shadow 1s ease;
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement