RyanEarnshaw

Untitled

Apr 20th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. .newsletter {
  2. position: fixed;
  3. display: inline-block;
  4. top: -100px;
  5. left: 50%;
  6. transform: translate(-50%, -50%);
  7. width: 100%;
  8. max-width: 600px;
  9. box-sizing: border-box;
  10. z-index: 9999;
  11. transition: top 1s ease;
  12. background-color: #ffffff;
  13. text-align: center;
  14. padding: 10px 5px;
  15. border: 1px solid #bfbfbf;
  16. }
  17. .newsletter h1 {
  18. position: relative;
  19. display: inline-block;
  20. font-family: sans-serif;
  21. font-weight: bold;
  22. font-size: 32px;
  23. color: #646464;
  24. margin: 20px;
  25. width: 100%;
  26. text-align: center;
  27. }
  28. .newsletter .input-email {
  29. position: relative;
  30. display: inline-block;
  31. color: #8ec640;
  32. background-color: transparent;
  33. border: 1px solid #bbbbbb;
  34. border-radius: 5px;
  35. padding: 10px;
  36. font-family: sans-serif;
  37. font-weight: 100;
  38. font-size: 16px;
  39. }
  40. .newsletter .input-submit {
  41. position: relative;
  42. display: inline-block;
  43. color: #ffffff;
  44. background-color: #8ec640;
  45. padding: 10px;
  46. width: 100%;
  47. max-width: 200px;
  48. text-align: center;
  49. }
  50. .newsletter input:focus,
  51. .newsletter input:valid {
  52. box-shadow: none;
  53. outline: none;
  54. background-position: 0 0;
  55. }
  56. .newsletter.show {
  57. top: 50vh;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment