all.scss 482 B

1234567891011121314151617181920212223242526272829303132
  1. html, body{
  2. overflow: hidden;
  3. }
  4. .blog{
  5. width: 100%;
  6. height: 100%;
  7. &.down{
  8. height: 5rem;
  9. }
  10. }
  11. #start{
  12. width: 100%;
  13. }
  14. .card{
  15. width: calc((100% / 3));
  16. line-height: 0.8rem!important;
  17. .card-header{
  18. margin-top: 5px;
  19. display: -webkit-inline-box;
  20. display: -ms-inline-flexbox;
  21. display: inline-flex;
  22. -webkit-box-align: baseline;
  23. -ms-flex-align: baseline;
  24. align-items: baseline;
  25. & > div{
  26. margin-right: 5px;
  27. }
  28. }
  29. }