index.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. background-color: white;
  7. background: url("LogoV3.jpg");
  8. background-position: center center;
  9. background-repeat: no-repeat;
  10. }
  11. .container {
  12. width: calc(100% - 50px);
  13. display: flex;
  14. flex-wrap: wrap;
  15. justify-content: center;
  16. align-items: center;
  17. background: rgba(255, 255, 255, 0.6);
  18. margin: auto;
  19. margin-top: 10px;
  20. margin-bottom: 10px;
  21. outline: 2px solid black;
  22. max-width: 1000px;
  23. }
  24. .containerTitle {
  25. width:100%;
  26. order: 1;
  27. display: flex;
  28. background-color: rgba(0, 0, 0, 0.8);
  29. height: 50px;
  30. }
  31. .title {
  32. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  33. font-size: 40px;
  34. color: white;
  35. text-align: center;
  36. margin-left: 20px;
  37. order: 1;
  38. }
  39. .result {
  40. color:green;
  41. font-size: 30px;
  42. order: 2;
  43. text-align: center;
  44. margin-top: 5px;
  45. margin-left: 20px;
  46. }
  47. .result.failed {
  48. color:red;
  49. }
  50. .waitRing {
  51. order: 3;
  52. height: 40px;
  53. margin-top: 5px;
  54. margin-bottom: 5px;
  55. }
  56. .waitRing.hidden {
  57. display: none;
  58. }
  59. .renderCanvas {
  60. position:absolute;
  61. transform: translateX(-600px);
  62. width: 600px;
  63. height: 400px;
  64. }
  65. .renderImage {
  66. order: 1;
  67. flex-basis: 50%;
  68. width: 50%;
  69. }
  70. .resultImage {
  71. width: 50%;
  72. flex-basis: 50%;
  73. order: 2;
  74. }