Angular web app for entering Techblox commands
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
463B

  1. /* You can add global styles to this file, and also import other style files */
  2. html, body {
  3. height: 100%;
  4. }
  5. body {
  6. margin: 0;
  7. font-family: Roboto, "Helvetica Neue", sans-serif;
  8. color: white;
  9. background-color: #232323;
  10. }
  11. .wrapper {
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. min-height: 100vh;
  16. }
  17. mat-card {
  18. border: 1px solid black;
  19. background-color: #343434;
  20. margin: 15px;
  21. }
  22. mat-card-title {
  23. text-align: center;
  24. }