_simplesearch.scss 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .simplesearch {
  2. h1 {
  3. margin-bottom: 0;
  4. }
  5. .center {
  6. text-align: center;
  7. }
  8. input {
  9. display: inline-block;
  10. max-width: 30rem;
  11. font-size: 2rem;
  12. }
  13. .search-image {
  14. margin-top: 1rem;
  15. img {
  16. border-radius: 4px;
  17. @include breakpoint(mobile-only) {
  18. display: none;
  19. }
  20. }
  21. }
  22. .search-item {
  23. @include breakpoint(mobile-only) {
  24. margin-left: 0;
  25. }
  26. }
  27. .search-details {
  28. float: right;
  29. margin-top: -2.5rem;
  30. font-weight: bold;
  31. font-size: 1rem;
  32. color: lighten($core-text,20%);
  33. @include breakpoint(mobile-only) {
  34. float: none;
  35. margin-top: -0.2rem;
  36. margin-bottom: 1rem;
  37. }
  38. }
  39. hr {
  40. border-bottom: 1px solid #eee;
  41. }
  42. }