style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of Actitude.
  5. *
  6. * Actitude 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. * Actitude 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 Actitude. 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. .friend:hover {
  48. background-color: #E1E1E1;
  49. }
  50. .friend-selected {
  51. background-color: #33aced;
  52. color: #FFFFFF;
  53. font-weight:900;
  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. }
  92. .friend-header-ve {
  93. background: #FFFFFF;
  94. }
  95. .friend-header-ve:hover {
  96. background: #E1E1E1;
  97. }
  98. .friend-header-ve-selected {
  99. background: #73b3f2;
  100. color: #FFFFFF;
  101. font-weight: 900;
  102. }
  103. .friend-header-ve-selected a{
  104. color: #FFFFFF;
  105. }