style.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of 5 Cube.
  5. *
  6. * 5 Cube 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. * 5 Cube 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 5 Cube. If not, see <https://www.gnu.org/licenses/>.
  18. *
  19. * style.css
  20. *
  21. * Style sheet.
  22. *
  23. * @author Daniele Bonini <my25mb@aol.com>
  24. * @copyrights (c) 2016, 2024, 5 Mode
  25. */
  26. @import url('https://fonts.googleapis.com/css2?family=Bungee+Hairline&display=swap');
  27. body {
  28. background:#0d0d0d;
  29. /*background-image:url('../res/bg.jpg');*/
  30. }
  31. .bbb {
  32. color: #7bca2e;
  33. text-decoration: underline;
  34. }
  35. .cube {
  36. float:left;
  37. background:url(../res/1cube.png);
  38. background-size:cover;
  39. width:130px;
  40. height:159px;
  41. margin:50px;
  42. cursor:pointer;
  43. }
  44. .cubename {
  45. position:relative;
  46. top:+170px;
  47. text-align:center;
  48. font-family:'Bungee Hairline';
  49. font-weight:900;
  50. font-size:34px;
  51. }
  52. .emptyfield{
  53. border: 1px solid red;
  54. }
  55. .editemptyfield{
  56. border-bottom: 3px dashed red;
  57. }
  58. #facelet1:hover {
  59. text-decoration: underline;
  60. }
  61. #facelet2:hover {
  62. text-decoration: underline;
  63. }
  64. #facelet3:hover {
  65. text-decoration: underline;
  66. }
  67. #footerCont {
  68. position: fixed;
  69. top: 2000px;
  70. left:-10px;
  71. width: 102%;
  72. border: 1px solid #C2DBF2;
  73. padding: 7px;
  74. background: #ffffff;
  75. opacity: 0.3;
  76. color:white;
  77. font-family: Arial,Sans,Verdana;
  78. font-size: 12px;
  79. text-align: center;
  80. z-index: 99990;
  81. height: 23px;
  82. }
  83. #footer {
  84. position: fixed;
  85. float: right;
  86. top: 2000px;
  87. left:-10px;
  88. width: 100%;
  89. border: 0px solid #C2DBF2;
  90. padding: 7px;
  91. opacity: 1.0;
  92. color:black;
  93. font-family: Arial,Sans,Verdana;
  94. font-size: 12px;
  95. font-weight: 400;
  96. text-align: right;
  97. z-index: 99991;
  98. }
  99. input {
  100. border:1px solid #d4b0dc;
  101. background: transparent;
  102. height: 30px;
  103. }
  104. #originsDisplay {
  105. float:left;
  106. position:fixed;
  107. top:680px;
  108. left:20px;
  109. width:275px;
  110. height:120px;
  111. font-family: Monospace, Verdana, Serif;
  112. font-size: 14px;
  113. background-color: #020401;
  114. border: 3px solid lightgray;
  115. text-align:left;
  116. color: #FFFFFF;
  117. white-space:nowrap;
  118. font-weight:900;
  119. padding:10px;
  120. padding-top:4px;
  121. z-index:99999;
  122. display:none;
  123. }
  124. .originLabel {
  125. color: #7bca2e;
  126. font-weight:900;
  127. }