Changeset 3a783f2 for styles/globals.css


Ignore:
Timestamp:
07/05/22 16:36:24 (2 years ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
189cd8f
Parents:
b13f93b
Message:

Finished poker and added ball to roulette

File:
1 edited

Legend:

Unmodified
Added
Removed
  • styles/globals.css

    rb13f93b r3a783f2  
    785785}
    786786
     787#rouletteBall {
     788  position: absolute;
     789  top: 87.5%;
     790  left: 17.5%;
     791  width: 1rem;
     792}
     793
    787794#rouletteBetsImg {
    788795  position: absolute;
     
    893900}
    894901
     902.pokerRaiseModal {
     903  z-index: 20;
     904  -webkit-box-orient: vertical;
     905  -webkit-box-direction: normal;
     906      -ms-flex-direction: column;
     907          flex-direction: column;
     908  -webkit-box-pack: center;
     909      -ms-flex-pack: center;
     910          justify-content: center;
     911  -webkit-box-align: center;
     912      -ms-flex-align: center;
     913          align-items: center;
     914  position: fixed;
     915  left: 0;
     916  top: 0;
     917  width: 100vw;
     918  height: 100vh;
     919  background: #000000c0;
     920}
     921
     922.pokerRaiseModal p {
     923  margin-bottom: 1rem;
     924  padding: 10px 20px;
     925  border-radius: 5px;
     926  -webkit-transition: all .25s linear;
     927  transition: all .25s linear;
     928}
     929
     930.pokerRaiseModal p span {
     931  font-size: 1.2rem;
     932  color: #ead24d;
     933}
     934
    895935/**
    896936  * Spin effect on the roulette wheel
     
    10931133}
    10941134
     1135.pokerMainContainer .pokerChairsContainer .pokerChair.onTurn {
     1136  border: 5px dotted #ead24d;
     1137  background-color: #ead24d55;
     1138}
     1139
     1140.pokerMainContainer .pokerChairsContainer .pokerChair.folded {
     1141  border: 5px solid rgba(59, 59, 59, 0.667);
     1142  background-color: rgba(59, 59, 59, 0.667);
     1143}
     1144
    10951145.pokerMainContainer .pokerChairsContainer .pokerChair > div p {
    10961146  margin-block: 2px;
     
    11271177}
    11281178
     1179.pokerMainContainer .pokerPotContainer {
     1180  position: absolute;
     1181  top: 57vh;
     1182  left: 50vw;
     1183  -webkit-transform: translate(-50%, -50%);
     1184          transform: translate(-50%, -50%);
     1185}
     1186
    11291187.pokerMainContainer .pokerPlayButtonsContainer {
    11301188  position: absolute;
    1131   top: 59vh;
     1189  top: 62vh;
    11321190  left: 50vw;
    11331191  -webkit-transform: translate(-50%, -50%);
Note: See TracChangeset for help on using the changeset viewer.