style-dark.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. :root {
  2. --inputColor: black;
  3. --accent-color:#12e8b9;
  4. --fg-color: white;
  5. }
  6. body {
  7. background-color: #2a2b2b;
  8. color: var(--fg-color);
  9. font-family: verdana, arial, sans-serif;
  10. overflow-x: hidden;
  11. padding: 0;
  12. margin: 0;
  13. font-size: 16px;
  14. }
  15. input:focus {
  16. border: 1px solid rgb(97, 97, 97);
  17. }
  18. .centered {
  19. position: absolute;
  20. top: 40%;
  21. left: 50%;
  22. margin-right: -50%;
  23. transform: translate(-50%, -50%);
  24. }
  25. .hide{
  26. display: none;
  27. }
  28. span {
  29. color: #f218ee;
  30. }
  31. #bodyHeader {
  32. margin: 0;
  33. }
  34. .mainContainer p {
  35. margin-bottom:30px;
  36. margin-top: 5px;
  37. }
  38. .mainContainer h1 {
  39. font-size: 50px;
  40. }
  41. .bodyText {
  42. text-align: center;
  43. }
  44. .container {
  45. text-align: center;
  46. align-items: center;
  47. justify-content: center;
  48. }
  49. footer {
  50. display: flex;
  51. align-items: center;
  52. flex-wrap: wrap;
  53. justify-content: center;
  54. width: 100vw;
  55. padding: 10px;
  56. color: white;
  57. background-color: #1f2120;
  58. position: fixed;
  59. bottom: 0;
  60. }
  61. footer a{
  62. margin-right: 30px;
  63. }
  64. #footerText {
  65. margin: 10px;
  66. padding: 10px;
  67. }
  68. .sep:before {
  69. content: "\f004 ";
  70. }
  71. a {
  72. text-decoration: none;
  73. color: var(--fg-color);
  74. }
  75. footer a:hover{
  76. color: var(--accent-color);
  77. }
  78. #inputWrapper {
  79. display: flex;
  80. align-items: center;
  81. text-align: center;
  82. justify-content: center;
  83. }
  84. input {
  85. width: 500px;
  86. outline: none;
  87. color: white;
  88. background-color: #1f2120;
  89. border: 1px solid #1f2120;
  90. border-radius: 10px 0px 0px 10px;
  91. padding: 15px;
  92. font-size: inherit;
  93. }
  94. button {
  95. padding: 15px;
  96. background: #1f2120;
  97. border: 1px solid #1f2120;
  98. color: black;
  99. background-color: var(--accent-color);
  100. border: 0;
  101. border-radius: 0px 10px 10px 0px;
  102. cursor: pointer;
  103. font-size: 15px;
  104. font-weight: bold;
  105. }
  106. /* button:hover{
  107. background-color: var(--accent-color);
  108. color:white;
  109. } */
  110. img {
  111. max-width: 25vw;
  112. max-height: 25vw;
  113. height: auto;
  114. width: auto;
  115. border-radius: 10px;
  116. box-shadow: 5px 5px 5px black;
  117. }
  118. @media only screen and (max-width: 750px) {
  119. body{
  120. font-size: 14px;
  121. }
  122. .mainContainer h1 {
  123. font-size: 35px;
  124. }
  125. input{
  126. width: 100%;
  127. }
  128. .centered {
  129. width: 95%;
  130. }
  131. }