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.scss

    rb13f93b r3a783f2  
    772772}
    773773
     774#rouletteBall {
     775  position: absolute;
     776  top: 87.5%;
     777  left: 17.5%;
     778
     779  width: 1rem;
     780}
     781
    774782#rouletteBetsImg {
    775783  position: absolute;
     
    850858
    851859.rouletteBetModal {
     860  z-index: 20;
     861
     862  flex-direction: column;
     863  justify-content: center;
     864  align-items: center;
     865
     866  position: fixed;
     867  left: 0;
     868  top: 0;
     869
     870  width: 100vw;
     871  height: 100vh;
     872
     873  background: #000000c0;
     874
     875  p {
     876    margin-bottom: 1rem;
     877
     878    padding: 10px 20px;
     879    border-radius: 5px;
     880
     881    transition: all .25s linear;
     882
     883    span {
     884      font-size: 1.2rem;
     885      color: #ead24d;
     886    }
     887  }
     888}
     889
     890.pokerRaiseModal {
    852891  z-index: 20;
    853892
     
    10211060
    10221061      &.onTurn {
    1023         border: 5px solid #ead24d;
     1062        border: 5px dotted #ead24d;
     1063        background-color: #ead24d55;
    10241064      }
    10251065
    10261066      &.folded {
    1027         border: 5px solid rgba(71, 64, 24, 0.667);
     1067        border: 5px solid rgba(59, 59, 59, 0.667);
     1068        background-color: rgba(59, 59, 59, 0.667);
    10281069      }
    10291070
     
    10651106  }
    10661107
     1108  .pokerPotContainer {
     1109    position: absolute;
     1110    top: 57vh;
     1111    left: 50vw;
     1112
     1113    transform: translate(-50%, -50%);
     1114  }
     1115
    10671116  .pokerPlayButtonsContainer {
    10681117    position: absolute;
    1069     top: 59vh;
     1118    top: 62vh;
    10701119    left: 50vw;
    10711120
Note: See TracChangeset for help on using the changeset viewer.