style.css 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. .friend-selected {
  52. background-color: #33aced;
  53. color: #FFFFFF;
  54. }
  55. #footerCont {
  56. position: fixed;
  57. top: 2000px;
  58. left:-10px;
  59. width: 102%;
  60. border: 1px solid #C2DBF2;
  61. padding: 7px;
  62. background: #ffedf0;
  63. opacity: 0.6;
  64. color:white;
  65. font-family: Sans;
  66. font-size: 12px;
  67. text-align: center;
  68. z-index: 99990;
  69. }
  70. #footer {
  71. position: fixed;
  72. float: right;
  73. top: 2000px;
  74. left:-10px;
  75. width: 100%;
  76. border: 0px solid #C2DBF2;
  77. padding: 7px;
  78. opacity: 1.0;
  79. color:black;
  80. font-family: Sans;
  81. font-size: 12px;
  82. font-weight: 400;
  83. text-align: right;
  84. z-index: 99991;
  85. }
  86. .header {
  87. height: 65px;
  88. vertical-align: middle;
  89. border-bottom: 1px solid #2c2f34;
  90. padding: 8px;
  91. }