ESPTrainer built with Meteor and React

Info.scss 876B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "compat";
  2. .Info {
  3. max-width: 440px;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. color: #fff;
  8. padding: 20px 50px;
  9. @include box-sizing(border-box);
  10. text-align: center;
  11. blockquote {
  12. border-left: 3px solid grey;
  13. padding-left: 10px;
  14. text-align: justify;
  15. margin: 20px 0;
  16. &:before {
  17. content: '“';
  18. float: left;
  19. font-size: 2em;
  20. margin-right: 20px;
  21. }
  22. &:after {
  23. content: '”';
  24. float: right;
  25. font-size: 2em;
  26. margin-top: -25px;
  27. }
  28. }
  29. * {
  30. margin-bottom: 10px;
  31. }
  32. .apple-link {
  33. display: inline-block;
  34. overflow: hidden;
  35. margin-top: 20px;
  36. background: url(//linkmaker.itunes.apple.com/assets/shared/badges/fr-fr/appstore-lrg.svg) no-repeat;
  37. width: 135px;
  38. height: 40px;
  39. background-size: contain;
  40. cursor: pointer;
  41. }
  42. }