_simplesearch.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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-wrapper {
  28. .search-submit {
  29. height: 52px;
  30. padding: 0 10px;
  31. img {
  32. width: 30px;
  33. }
  34. }
  35. }
  36. .search-details {
  37. float: right;
  38. margin-top: -2.5rem;
  39. font-weight: bold;
  40. font-size: 1rem;
  41. color: lighten($core-text,20%);
  42. @include breakpoint(mobile-only) {
  43. float: none;
  44. margin-top: -0.2rem;
  45. margin-bottom: 1rem;
  46. }
  47. }
  48. hr {
  49. border-bottom: 1px solid #eee;
  50. }
  51. }