style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. form {
  31. margin: auto;
  32. display: flex;
  33. justify-content: center;
  34. padding: 15px 0;
  35. }
  36. table {
  37. width: 90%;
  38. }
  39. tr:nth-of-type(1) input:nth-of-type(1) {
  40. width: 100%;
  41. }
  42. .w100 {
  43. width: 100%;
  44. }
  45. input, select {
  46. border: 0px solid black;
  47. width: 95%;
  48. display: inline-block;
  49. padding: 15px;
  50. background-color: #f1f1f1;
  51. margin: 5px 0 22px 0;
  52. -webkit-appearance: none;
  53. -moz-appearance: none;
  54. appearance: none;
  55. }
  56. input:-webkit-autofill {
  57. -webkit-box-shadow: 0 0 0 30px #f1f1f1 inset;
  58. }
  59. .container {
  60. background-color:white;
  61. width: 65%;
  62. height: 55%;
  63. margin: 4.4rem auto;
  64. border-radius: 15px;
  65. }
  66. button {
  67. background-color: #ff6737;
  68. color: white;
  69. padding: 15.5px 14px;
  70. border: none;
  71. cursor: pointer;
  72. width: 100%;
  73. margin-top: 3px;
  74. }
  75. span {
  76. display: none;
  77. position: relative;
  78. color: red;
  79. }
  80. footer {
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. position: absolute;
  85. width: 100%;
  86. bottom: 0;
  87. background-color: #004990;
  88. height: 40px;
  89. }
  90. footer p {
  91. color: white;
  92. font-size: 15px;
  93. vertical-align: middle;
  94. }
  95. select:focus{
  96. outline: 0;
  97. border: 0;
  98. overflow:hidden;
  99. }
  100. [data-slots] { font-family: 'signika', sans-serif }
  101. @media only screen and (max-width: 700px) {
  102. table, thead, tbody, th, td, tr {
  103. display: block;
  104. }
  105. input,select{
  106. width: 100%;
  107. }
  108. .container{
  109. width: 85%;
  110. }
  111. }