style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. .bbb {
  38. color: #7bca2e;
  39. text-decoration: underline;
  40. }
  41. .standardfield{
  42. border: 0px;
  43. border-bottom: 1px dashed #EEEEEE;
  44. }
  45. .emptyfield{
  46. border: 1px solid red;
  47. }
  48. .editemptyfield{
  49. border-bottom: 3px dashed red;
  50. }
  51. .friend:hover {
  52. background-color: #E1E1E1;
  53. }
  54. .friend-selected {
  55. background-color: #33aced;
  56. color: #FFFFFF;
  57. font-weight:900;
  58. }
  59. #footerCont {
  60. position: fixed;
  61. top: 2000px;
  62. left:-10px;
  63. width: 102%;
  64. border: 1px solid #C2DBF2;
  65. padding: 7px;
  66. background: #ffffff;
  67. opacity: 0.3;
  68. color:white;
  69. font-family: Arial,Sans,Verdana;
  70. font-size: 12px;
  71. text-align: center;
  72. z-index: 99990;
  73. }
  74. #footer {
  75. position: fixed;
  76. float: right;
  77. top: 2000px;
  78. left:-10px;
  79. width: 100%;
  80. border: 0px solid #C2DBF2;
  81. padding: 7px;
  82. opacity: 1.0;
  83. color:black;
  84. font-family: Arial,Sans,Verdana;
  85. font-size: 12px;
  86. font-weight: 400;
  87. text-align: right;
  88. z-index: 99991;
  89. }
  90. .header {
  91. height: 65px;
  92. vertical-align: middle;
  93. border-bottom: 0px solid #2c2f34;
  94. padding: 8px;
  95. }
  96. .friend-header-ve {
  97. background: #FFFFFF;
  98. }
  99. .friend-header-ve:hover {
  100. background: #E1E1E1;
  101. }
  102. .friend-header-ve-selected {
  103. background: #73b3f2;
  104. color: #FFFFFF;
  105. font-weight: 900;
  106. }
  107. .friend-header-ve-selected a{
  108. color: #FFFFFF;
  109. }
  110. #originsDisplay {
  111. float:left;
  112. position:fixed;
  113. top:680px;
  114. left:20px;
  115. width:275px;
  116. height:120px;
  117. font-family: Monospace, Verdana, Serif;
  118. font-size: 14px;
  119. background-color: #020401;
  120. border: 3px solid lightgray;
  121. text-align:left;
  122. color: #FFFFFF;
  123. white-space:nowrap;
  124. font-weight:900;
  125. padding:10px;
  126. padding-top:4px;
  127. z-index:99999;
  128. display:none;
  129. }
  130. .originLabel {
  131. color: #7bca2e;
  132. font-weight:900;
  133. }