style.js 893 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import styled from "styled-components";
  2. export const PagWrapper = styled.div`
  3. width: 100%;
  4. padding: 20px 0;
  5. text-align: center;
  6. margin: 40px 0 80px;
  7. display: inline-block;
  8. @media(max-width:768px){
  9. margin: 0;
  10. }
  11. .btn{
  12. display: inline-block;
  13. cursor: url(${require('../../statics/images/ayuda.cur')}),auto;
  14. padding: 13px 35px;
  15. border: 1px solid #d6d6d6;
  16. border-radius: 50px;
  17. color: #adadad;
  18. }
  19. @media(min-width:768px){
  20. .btn:hover{
  21. border: 1px solid orange;
  22. color: #FE9600;
  23. border-color: #FE9600;
  24. box-shadow: 0 0 4px rgba(255,165,0,.85);
  25. }
  26. }
  27. p{
  28. color: #989898;
  29. font-size: 15px;
  30. }
  31. .example{
  32. height:52px;
  33. line-height:52px;
  34. i{
  35. background-color: #FE9600;
  36. }
  37. }
  38. `;