style.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of Homomm.
  5. *
  6. * Homomm 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. * Homomm 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 Homomm. 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. overflow-y: hidden;
  37. }
  38. .standardfield{
  39. border: 0px;
  40. border-bottom: 1px dashed #EEEEEE;
  41. }
  42. .emptyfield{
  43. border: 1px solid red;
  44. }
  45. .editemptyfield{
  46. border-bottom: 3px dashed red;
  47. }
  48. .friend:hover {
  49. background-color: #E1E1E1;
  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: #ffedf0;
  59. opacity: 0.6;
  60. color:white;
  61. font-family: Sans;
  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: Sans;
  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. }