/* create wordle screen css */ .create-wordle{ box-shadow: 0 5px 15px rgba(0, 0, 0, 20%); margin-bottom: 150px; padding:8rem 0; } .create-wordle .custom-word{ font-weight: 600; text-transform: uppercase; width: 60%; height: 50px; margin:18px auto; text-align: center; outline: none; border: 1px solid rgba(0, 0, 0, 0.1); background: rgba(255, 255, 255, 0.2); border-radius: 40px; color: #000; font-size: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .create-wordle .generate-word-game-link,.copy-btn{ background-color: #6aaa64; border: #6aaa64; color: #fff; padding: 12px 15px; width: 120px; border-radius: 40px; font-size: 12px; font-weight: 600; } .create-wordle .generate-word-game-link:hover,.copy-btn:hover{ color:#fff !important } ::placeholder{ font-weight: 400; text-transform: capitalize ; } /* modal style */ .close{ background-color: transparent; border:none; outline: none; } .times-icon{ font-size: 25px; } .modal-header .close{ margin: -1rem 0rem -1rem auto !important } .modal-dialog { max-width: 450px !important; margin: 0rem auto !important; top: 60px !important; } /* wordle game play css */ .game .game-container .game-board{ width: 350px; height: auto; margin: 0 auto; margin-top: 3px; display: flex; flex-wrap: wrap; } .game .game-container .game-board .tile{ width: 55px; height: 55px; text-align: center; border:2px solid #d3d6da; border-radius: 5px; color: #363535; font-size: 28px; font-weight: 700; margin: 3px; max-width: 64px; text-transform: uppercase; } .game .game-container .game-keyboard{ display: flex; flex-direction: column; width: 50%; margin:0rem auto } .game .game-container .game-keyboard-row{ display: flex; flex-direction: row; justify-content: center; } .game .game-container .game-keyboard-button { align-items: center; background-color: #edeff1; border: 2px solid transparent; border-radius: 4px; color: inherit; cursor: pointer; display: flex; font-size: 16px; font-weight: 900; justify-content: center; margin: 3px; min-height: 40px; padding: 15px; text-decoration: inherit; }