style.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. body {
  2. /* background-color: #000; */
  3. min-height: 100vh;
  4. width: 100%;
  5. display: grid;
  6. place-items: center;
  7. }
  8. * {
  9. -webkit-user-select: none;
  10. -ms-user-select: none;
  11. user-select: none;
  12. }
  13. main {
  14. /* margin: auto; */
  15. display: grid;
  16. place-items: center;
  17. width: 98vw;
  18. min-height: 90vh;
  19. border-radius: 100px;
  20. outline: 5px dashed #053b47;
  21. border: 5px dashed #053b47;
  22. background: rgb(44,156,181);
  23. background: -moz-radial-gradient(circle, rgba(44,156,181,1) 0%, #096478 100%);
  24. background: -webkit-radial-gradient(circle, rgba(44,156,181,1) 0%, rgba(9,100,120,1) 100%);
  25. background: radial-gradient(circle, rgba(44,156,181,1) 0%, rgba(9,100,120,1) 100%);
  26. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2c9cb5",endColorstr="#096478",GradientType=1);
  27. }
  28. .title {
  29. font-size: 60px;
  30. text-align: center;
  31. color: #fff;
  32. margin-bottom: 40px;
  33. }
  34. .rotate {
  35. writing-mode:vertical-rl;
  36. }
  37. .table-responsive {
  38. text-align: center;
  39. text-transform: uppercase;
  40. }
  41. .coin {
  42. height: 40px;
  43. width: 40px;
  44. margin-top: -5px;
  45. margin-bottom: 10px;
  46. border-radius: 100%;
  47. background-color: #000;
  48. color: #fff;
  49. text-transform: uppercase;
  50. z-index: 1;
  51. display: grid;
  52. place-items: center;
  53. }
  54. .coin.active {
  55. background-color: #ffffff;
  56. color: #000000;
  57. }
  58. .coin-4 {
  59. margin-left: 285px;
  60. }
  61. .coin-5 {
  62. margin-left: 385px;
  63. }
  64. .coin-6 {
  65. margin-left: 485px;
  66. }
  67. .coin-8 {
  68. margin-left: 585px;
  69. }
  70. .coin-9 {
  71. margin-left: 685px;
  72. }
  73. .coin-10 {
  74. margin-left: 785px;
  75. }
  76. td {
  77. height: 50px;
  78. }
  79. td:is(.disabled) {
  80. background-color: #096478;
  81. color: rgba(255, 255, 255, 0.7);
  82. }
  83. td:not(.disabled) {
  84. color: rgba(255, 255, 255, 1);
  85. transition: .5s;
  86. cursor: pointer;
  87. }
  88. td:not(.disabled):hover {
  89. background-color:#09b6db;
  90. transition: .5s;
  91. }
  92. .fx-box {
  93. position: relative;
  94. width: 80px !important;
  95. }
  96. .fx-box h2 {
  97. height: 70px;
  98. font-size: 50px;
  99. display: grid;
  100. place-items: center;
  101. }
  102. .tilt {
  103. transform: rotate(-30deg);
  104. font-size: 25px !important;
  105. font-style: italic;
  106. }
  107. .crn {
  108. height: 108px;
  109. width: 108px;
  110. }
  111. /* .crn span:hover {
  112. color: rgba(255, 255, 255, 0.65);
  113. } */
  114. .crn .six{
  115. position: absolute;
  116. text-decoration: none;
  117. transform: rotate(37deg);
  118. font-size: 60px;
  119. right: 60px;
  120. top: -16px;
  121. }
  122. .crn .eight{
  123. position: absolute;
  124. text-decoration: none;
  125. transform: rotate(37deg);
  126. font-size: 60px;
  127. right: -16px;
  128. bottom: -18px;
  129. }
  130. .crn .line {
  131. width: 198px;
  132. left: -29px;
  133. bottom: 53px;
  134. transform: rotate(-37deg);
  135. margin-top: 40px;
  136. border-top: 1px solid #fff;
  137. position: absolute;
  138. box-sizing: border-box;
  139. }
  140. .crn .line:before {
  141. content: "BIG";
  142. position: absolute;
  143. top: -15px;
  144. left: 30%;
  145. font-size: 30px;
  146. background-color: #096478;
  147. border-radius: 50%;
  148. padding-inline:20px;
  149. line-height: 30px;
  150. }
  151. .big {
  152. transform: rotate(-50deg);
  153. position: absolute;
  154. text-decoration: line-through;
  155. height: 40px;
  156. width: 40px;
  157. }
  158. .circle {
  159. border: 2px solid #f9f258;
  160. height: 60px;
  161. width: 60px;
  162. display: grid;
  163. place-items: center;
  164. text-align: center;
  165. border-radius: 100%;
  166. position: relative;
  167. }
  168. .circle::before {
  169. content: 'DOUBLE';
  170. position: absolute;
  171. color: #f9f258;
  172. font-size: 14px;
  173. top: -22px;
  174. z-index: 2;
  175. }
  176. .nums {
  177. width: 100%;
  178. /* height: 100%; */
  179. margin-bottom: -10px;
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. gap: 20px;
  184. }
  185. .nums span{
  186. font-size: 30px;
  187. }
  188. td.odds {
  189. background: none;
  190. }
  191. .dices-box {
  192. display: flex;
  193. align-items: center;
  194. justify-content: space-around;
  195. gap: 10px;
  196. font-size: 130px;
  197. color: #fff;
  198. }
  199. .chips {
  200. display: flex;
  201. align-items: center;
  202. gap: 20px;
  203. }
  204. .chip {
  205. height: 40px;
  206. width: 40px;
  207. padding: 0;
  208. display: grid;
  209. place-items:center;
  210. color: #fff;
  211. border: 5px dashed rgba(255,255,255,.9);
  212. transition: .5s;
  213. margin-top: 0;
  214. }
  215. .chips .chip:hover, .chips .chip.active {
  216. color: #fff;
  217. margin-top: -20px;
  218. transition: .5s;
  219. box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
  220. }
  221. .btn-1 {
  222. background-color: #dba603;
  223. }
  224. .btn-5 {
  225. background-color: #ab2f2a;
  226. }
  227. .btn-10 {
  228. background-color: #1b50a4;
  229. }
  230. .btn-25 {
  231. background-color: #28752b;
  232. }
  233. .btn-50 {
  234. background-color: #661212;
  235. }
  236. .btn-100 {
  237. background-color: #1d201d;
  238. }
  239. .pass, .come, .odds {
  240. position: relative;
  241. }
  242. .playchips{
  243. position: absolute;
  244. top: 10px;
  245. display: flex;
  246. gap: 5px;
  247. }
  248. .odds .playchips {
  249. top: 5px;
  250. }
  251. .chip .badge {
  252. position: absolute;
  253. right: -50px;
  254. bottom: 0;
  255. height: 20px;
  256. min-width: 40px;
  257. font-size: 10px;
  258. border-radius: 10%;
  259. display: grid;
  260. place-items:center;
  261. }