style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. .container {
  57. background-color:white;
  58. width: 65%;
  59. height: 55%;
  60. margin: 4.4rem auto;
  61. border-radius: 15px;
  62. }
  63. button {
  64. background-color: #ff6737;
  65. color: white;
  66. padding: 15.5px 14px;
  67. border: none;
  68. cursor: pointer;
  69. width: 100%;
  70. margin-top: 3px;
  71. }
  72. span {
  73. display: none;
  74. position: absolute;
  75. margin-left: 167px;
  76. color: red;
  77. }
  78. footer {
  79. display: flex;
  80. justify-content: center;
  81. align-items: center;
  82. position: absolute;
  83. width: 100%;
  84. bottom: 0;
  85. background-color: #004990;
  86. height: 40px;
  87. }
  88. footer p {
  89. color: white;
  90. font-size: 15px;
  91. vertical-align: middle;
  92. }
  93. select:focus{
  94. outline: 0;
  95. border: 0;
  96. overflow:hidden;
  97. }