style.css 2.3 KB

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