style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. *{
  2. margin:0;
  3. padding:0px;
  4. font-family: 'Signika', sans-serif;
  5. box-sizing: border-box;
  6. color:#1a2b40;
  7. }
  8. body {
  9. background-image: linear-gradient(180deg, #ff9051, #ff6737);
  10. background-color:#ff6737;
  11. background-repeat: no-repeat;
  12. padding: 0;
  13. position: relative;
  14. min-height: 100vh;
  15. display: flex;
  16. flex-direction: column;
  17. }
  18. header {
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. text-align: center;
  23. background-color: #004990;
  24. height: 50px;
  25. }
  26. header p {
  27. color: #ffe512;
  28. font-size: 34px;
  29. }
  30. h1{
  31. text-align: center;
  32. padding-top:15px;
  33. }
  34. form {
  35. margin: auto;
  36. display: flex;
  37. justify-content: center;
  38. padding: 15px 0;
  39. }
  40. table {
  41. width: 90%;
  42. }
  43. tr:nth-of-type(1) input:nth-of-type(1) {
  44. width: 100%;
  45. }
  46. .w100 {
  47. width: 100%;
  48. }
  49. input, select {
  50. border: 0px solid black;
  51. width: 95%;
  52. display: inline-block;
  53. padding: 15px;
  54. background-color: #f1f1f1;
  55. margin: 5px 0 22px 0;
  56. -webkit-appearance: none;
  57. -moz-appearance: none;
  58. appearance: none;
  59. }
  60. input:-webkit-autofill {
  61. -webkit-box-shadow: 0 0 0 30px #f1f1f1 inset;
  62. }
  63. .container {
  64. background-color:white;
  65. width: 65%;
  66. height: 55%;
  67. margin: 4.4rem auto;
  68. border-radius: 15px;
  69. }
  70. button {
  71. background-color: #ff6737;
  72. color: white;
  73. padding: 15.5px 14px;
  74. border: none;
  75. cursor: pointer;
  76. width: 100%;
  77. margin-top: 3px;
  78. }
  79. span {
  80. display: none;
  81. position: relative;
  82. color: red;
  83. }
  84. footer {
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. position: absolute;
  89. width: 100%;
  90. bottom: 0;
  91. background-color: #004990;
  92. height: 40px;
  93. }
  94. footer p {
  95. color: white;
  96. font-size: 15px;
  97. vertical-align: middle;
  98. }
  99. select:focus{
  100. outline: 0;
  101. border: 0;
  102. overflow:hidden;
  103. }
  104. [data-slots] { font-family: 'signika', sans-serif }
  105. @media only screen and (max-width: 700px) {
  106. table, thead, tbody, th, td, tr {
  107. display: block;
  108. }
  109. input,select{
  110. width: 100%;
  111. }
  112. .container{
  113. width: 85%;
  114. }
  115. }