style.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of Http Console.
  5. *
  6. * Http Console is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Http Console is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Http Console. If not, see <https://www.gnu.org/licenses/>.
  18. *
  19. * style.css
  20. *
  21. * CSS file.
  22. *
  23. * @author Daniele Bonini <my25mb@aol.com>
  24. * @copyrights (c) 2021, 2024, 5 Mode
  25. */
  26. html {
  27. height: 100%;
  28. }
  29. body {
  30. margin: 0px;
  31. padding: 0px;
  32. height:100%;
  33. font-family: helvetica neue,helvetica,arial,sans-serif;
  34. background-color: #000000;
  35. color: #FFFFFF;
  36. }
  37. .emptyfield{
  38. border: 1px solid red;
  39. }
  40. #footerCont {
  41. position: fixed;
  42. top: 2000px;
  43. left:-10px;
  44. width: 102%;
  45. border: 1px solid #C2DBF2;
  46. padding: 7px;
  47. background: #ffedf0;
  48. opacity: 0.0;
  49. color:white;
  50. font-family: Sans;
  51. font-size: 12px;
  52. text-align: center;
  53. z-index: 99990;
  54. }
  55. #footer {
  56. position: fixed;
  57. float: right;
  58. top: 2000px;
  59. left:-10px;
  60. width: 100%;
  61. border: 0px solid #C2DBF2;
  62. padding: 7px;
  63. opacity: 1.0;
  64. color:black;
  65. font-family: Sans;
  66. font-size: 12px;
  67. font-weight: 400;
  68. text-align: right;
  69. z-index: 99991;
  70. }
  71. .header {
  72. height: 65px;
  73. vertical-align: middle;
  74. border-bottom: 1px solid #2c2f34;
  75. padding: 8px;
  76. }