style.css 1.8 KB

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