style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. .burger-header-ve {
  38. background: #FFFFFF;
  39. }
  40. .burger-header-ve:hover {
  41. background: #E1E1E1;
  42. }
  43. .burger-header-ve-selected {
  44. background: #73b3f2;
  45. color: #FFFFFF;
  46. font-weight: 900;
  47. }
  48. .burger-header-ve-selected a{
  49. color: #FFFFFF;
  50. }
  51. .standardfield{
  52. border: 0px;
  53. border-bottom: 1px dashed #EEEEEE;
  54. }
  55. .emptyfield{
  56. border: 1px solid red;
  57. }
  58. .editemptyfield{
  59. border-bottom: 3px dashed red;
  60. }
  61. #footerCont {
  62. position: fixed;
  63. top: 2000px;
  64. left:-10px;
  65. width: 102%;
  66. border: 1px solid #C2DBF2;
  67. padding: 7px;
  68. background: #ffedf0;
  69. opacity: 0.5;
  70. color:white;
  71. font-family: Sans;
  72. font-size: 12px;
  73. text-align: center;
  74. z-index: 99990;
  75. height: 23px;
  76. }
  77. #footer {
  78. position: fixed;
  79. float: right;
  80. top: 2000px;
  81. left:-10px;
  82. width: 100%;
  83. border: 0px solid #C2DBF2;
  84. padding: 7px;
  85. opacity: 1.0;
  86. color:black;
  87. font-family: Sans;
  88. font-size: 12px;
  89. font-weight: 400;
  90. text-align: right;
  91. z-index: 99991;
  92. }
  93. .header {
  94. height: 65px;
  95. vertical-align: middle;
  96. border-bottom: 1px solid #2c2f34;
  97. padding: 8px;
  98. }