Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

68 řádky
965 B

  1. #flex-objects {
  2. .text-center {
  3. text-align: center;
  4. }
  5. .search {
  6. display: inline-block;
  7. width: 50%;
  8. padding: 0.7rem;
  9. }
  10. button.sort {
  11. vertical-align: top;
  12. &:after {
  13. font-family: FontAwesome;
  14. }
  15. &.asc:after {
  16. content: "\2191";
  17. }
  18. &.desc:after {
  19. content: "\2193";
  20. }
  21. }
  22. ul {
  23. margin: 3rem 0;
  24. li {
  25. display: inline-block;
  26. width: 33%;
  27. margin: 1rem 0;
  28. .entry-details {
  29. .name {
  30. font-weight: bold;
  31. font-size: 120%;
  32. }
  33. p {
  34. margin: 0;
  35. }
  36. }
  37. .entry-extra {
  38. span {
  39. background: #eee;
  40. border-radius: 4px;
  41. padding: 3px 5px;
  42. font-size: 85%;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. @media only screen and (max-width: 800px) {
  49. #flex-objects ul li {
  50. width: 50%;
  51. }
  52. }
  53. @media only screen and (max-width: 500px) {
  54. #flex-objects ul li {
  55. width: 100%;
  56. }
  57. }