style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. .bbb {
  38. color: #7bca2e;
  39. text-decoration: underline;
  40. }
  41. .emptyfield{
  42. border: 1px solid red;
  43. }
  44. #footerCont {
  45. position: fixed;
  46. top: 2000px;
  47. left:-10px;
  48. width: 102%;
  49. border: 1px solid #C2DBF2;
  50. padding: 7px;
  51. background: #ffffff;
  52. opacity: 0.3;
  53. color:white;
  54. font-family: Arial,Sans,Verdana;
  55. font-size: 12px;
  56. text-align: center;
  57. z-index: 99990;
  58. }
  59. #footer {
  60. position: fixed;
  61. float: right;
  62. top: 2000px;
  63. left:-10px;
  64. width: 100%;
  65. border: 0px solid #C2DBF2;
  66. padding: 7px;
  67. opacity: 1.0;
  68. color:black;
  69. font-family: Arial,Sans,Verdana;
  70. font-size: 12px;
  71. font-weight: 400;
  72. text-align: right;
  73. z-index: 99991;
  74. }
  75. .header {
  76. height: 65px;
  77. vertical-align: middle;
  78. border-bottom: 1px solid #2c2f34;
  79. padding: 8px;
  80. }
  81. #originsDisplay {
  82. float:left;
  83. position:fixed;
  84. top:680px;
  85. left:20px;
  86. width:275px;
  87. height:120px;
  88. font-family: Monospace, Verdana, Serif;
  89. font-size: 14px;
  90. background-color: #020401;
  91. border: 3px solid lightgray;
  92. text-align:left;
  93. color: #FFFFFF;
  94. white-space:nowrap;
  95. font-weight:900;
  96. padding:10px;
  97. padding-top:4px;
  98. z-index:99999;
  99. display:none;
  100. }
  101. .originLabel {
  102. color: #7bca2e;
  103. font-weight:900;
  104. }