style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. body{
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. height: 100vh;
  7. background: rgb(201, 201, 201);
  8. }
  9. form{
  10. display: flex;
  11. flex-direction: column;
  12. border: 1px solid black;
  13. padding: 25px;
  14. background: white;
  15. max-width: 500px;
  16. }
  17. form > *{
  18. margin: 15px;
  19. }
  20. form p{
  21. font-size: 12px;
  22. color: rgb(85, 85, 85);
  23. }
  24. input[type=submit]{
  25. background: rgb(0, 27, 45);
  26. border: none;
  27. text-decoration: none;
  28. padding: 10px 25px;
  29. color: white;
  30. cursor: pointer;
  31. text-align: center;
  32. font-size: 15px;
  33. min-width: 100px;
  34. margin: 5px;
  35. max-height: 52px;
  36. }
  37. input[type=submit]:hover{
  38. background: rgb(179, 191, 209);
  39. color:black;
  40. }
  41. input[type=submit]:active{
  42. background: rgb(240, 252, 255);
  43. }
  44. a{
  45. display: initial;
  46. background: rgb(255, 99, 107);
  47. border: none;
  48. text-decoration: none;
  49. padding: 10px 25px;
  50. color: black;
  51. cursor: pointer;
  52. text-align: center;
  53. font-size: 15px;
  54. min-width: 100px;
  55. margin: 5px;
  56. max-height: 52px;
  57. }
  58. a:hover{
  59. background: rgb(255, 129, 137);
  60. }
  61. a:active{
  62. background: rgb(240, 252, 255);
  63. }
  64. #bannerContainer{
  65. display: flex;
  66. flex-direction: column;
  67. align-items: center;
  68. width: 100%;
  69. position: absolute;
  70. margin-top: 15px;
  71. pointer-events: none;
  72. z-index: 100;
  73. }
  74. .banner{
  75. display: flex;
  76. width: 75%;
  77. height: 65px;
  78. margin: 10px auto;
  79. box-shadow: 0 0 10px black;
  80. border: 2px solid black;
  81. background: white;
  82. }
  83. .banner > div{
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. width: 25%;
  88. color: white;
  89. }
  90. .banner > p{
  91. display: flex;
  92. align-items: center;
  93. font-size: 20px;
  94. font-weight: bold;
  95. width: 75%;
  96. padding-left: 10px;
  97. }
  98. .banner > button{
  99. background: none;
  100. border: none;
  101. height: 20px;
  102. position: relative;
  103. top: -10px;
  104. right: -10px;
  105. cursor: pointer;
  106. color: white;
  107. pointer-events: all;
  108. }