ESPTrainer built with Meteor and React

App.css 1020B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #app-container {
  2. display: flex;
  3. min-height: 100vh;
  4. flex-direction: column;
  5. background: #343b59; /* Old browsers */
  6. background: -moz-linear-gradient(top, #343b59 0%, #3f487f 100%); /* FF3.6-15 */
  7. background: -webkit-linear-gradient(top, #343b59 0%,#3f487f 100%); /* Chrome10-25,Safari5.1-6 */
  8. background: linear-gradient(to bottom, #343b59 0%,#3f487f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  9. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#343b59', endColorstr='#3f487f',GradientType=0 ); /* IE6-9 */
  10. }
  11. #app-container #content {
  12. flex: 1;
  13. display: flex;
  14. justify-content: center;
  15. }
  16. header {
  17. height: 64px;
  18. background: #23273c;
  19. color: white;
  20. line-height: 64px;
  21. padding-left: 10px;
  22. }
  23. .test {
  24. min-width: 50%;
  25. width: 500px;
  26. margin: 30px 15px;
  27. padding: 20px;
  28. display: flex;
  29. flex-direction: column;
  30. }
  31. footer {
  32. background: #23273c;
  33. text-align: center;
  34. color: white;
  35. padding: 10px;
  36. }