Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. import styled from 'styled-components'
  2. import bgImage from '../../../assets/k1.jpg'
  3.  
  4. export const Wrapper = styled.main`
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: center;
  8. min-height: 100vh;
  9. height: 100%;
  10. width: 100%;
  11. background: url(${bgImage});
  12. background-repeat: no-repeat;
  13. background-size: cover;
  14. background-position: 60% 30%;
  15. background-attachment: fixed;
  16. font-family: 'quicksand';
  17.  
  18. hr {
  19. border: 0;
  20. height: 1px;
  21. opacity: 0.3;
  22. background-image: linear-gradient(
  23. to right,
  24. rgba(255, 255, 255, 0.2),
  25. rgba(255, 255, 255, 1),
  26. rgba(255, 255, 255, 0.2)
  27. );
  28. }
  29.  
  30. .in-out {
  31. font-size: 12px;
  32. margin-top: 30px;
  33. padding-right: 5px;
  34. padding-left: 5px;
  35.  
  36. a {
  37. color: rgba(0, 0, 0, 0.7);
  38. text-decoration: none;
  39. margin-left: 17px;
  40. border: 1px solid rgba(0, 0, 0, 0.7);
  41. border-radius: 2px;
  42. padding: 2px;
  43. transition: all 0.4s ease-out;
  44.  
  45. &:hover {
  46. color: rgba(255, 255, 255, 1);
  47. border: 1px solid rgba(255, 255, 255, 1);
  48. }
  49. }
  50. }
  51. `
  52.  
  53. export const Content = styled.section`
  54. opacity: 1;
  55. margin: 0 auto;
  56. padding-top: 20px;
  57. padding-bottom: 20px;
  58. background-color: rgba(67, 185, 198, 0.9);
  59. width: 400px;
  60. color: white;
  61. text-align: center;
  62. border-radius: 2px;
  63. box-shadow: 10px 10px 15px -6px rgba(0, 0, 0, 0.25);
  64. transition: opacity 0.3s ease-in 0.3s, visibility 0.3s ease-in 0.3s;
  65. transform: scale(0.9);
  66. `
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement