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 0.52 KB | None | 0 0
  1. import styled from 'styled-components'
  2.  
  3. export const SubmitButton = styled.button`
  4. cursor: pointer;
  5. margin-top: 20px;
  6. width: 310px;
  7. height: 50px;
  8. font-size: 20px;
  9. border: none;
  10. background-color: rgba(0, 0, 0, 0.6);
  11. border-radius: 2px;
  12. color: white;
  13. font-weight: bold;
  14. letter-spacing: 3px;
  15.  
  16. transition: background-color 0.4s ease-out;
  17.  
  18. &:hover {
  19. background-color: rgba(24, 67, 71, 0.7);
  20. }
  21.  
  22. &:focus {
  23. outline: none;
  24. background-color: rgba(24, 67, 71, 0.7);
  25. }
  26. `
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement