style.css 2.6 KB

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