@charset "utf-8"; body { background-color: #eeb; } .hand { display: flex; flex-direction: row; } .hand .card { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } .card:hover { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5); } .card { min-width: 30px; min-height: 50px; border-radius: 5px; border: 2px solid #444; transition: 0.1s; font-family: Arial, sans-serif; font-size: 25px; padding: 4px; background-color: #fcfcf0; color: #000; line-height: 85%; } .card div { display: flex; flex-direction: column; text-align: center; } .card .suit-spade { color: #000; } .card .suit-heart { color: #d00; } .card .suit-diamond { color: #d00; } .card .suit-club { color: #000; } .card .suit-spade:after { content: "♠" } .card .suit-heart:after { content: "♥" } .card .suit-diamond:after { content: "♦" } .card .suit-club:after { content: "♣" } .bidding-table { max-width: 250px; min-height: 50px; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: min-content; border: 2px solid #000; border-radius: 10px; background-color: #eee; padding: 3px; } .bidding-table .header { font-weight: bold; border-bottom: 2px solid #000; } .bidding-table .bid { display: flex; } .bidding-table .suit-spade { color: #000; } .bidding-table .suit-heart { color: #d00; } .bidding-table .suit-diamond { color: #d00; } .bidding-table .suit-club { color: #000; } .bidding-table .suit-notrump { background-color: #dde; border-radius: 4px; display: flex; align-items: center; } .bidding-table .suit-spade:after { content: "♠" } .bidding-table .suit-heart:after { content: "♥" } .bidding-table .suit-diamond:after { content: "♦" } .bidding-table .suit-club:after { content: "♣" } .bidding-table .suit-notrump:after { content: "NT" } .bidding-box { max-width: 250px; display: grid; grid-template-columns: repeat(5, 1fr); } .bidding-box div { border: 1px solid #000; background-color: #eee; border-radius: 5px; min-width: 30px; padding: 2px; text-align: center; } .bidding-box div.enabled:hover { background-color: #fcc; } .bidding-box div.disabled { background-color: #aaa; } .bidding-box .suit-spade { color: #000; } .bidding-box .suit-heart { color: #d00; } .bidding-box .suit-diamond { color: #d00; } .bidding-box .suit-club { color: #000; } .bidding-box .suit-notrump { background-color: #dde; } .bidding-box .suit-spade:after { content: "♠" } .bidding-box .suit-heart:after { content: "♥" } .bidding-box .suit-diamond:after { content: "♦" } .bidding-box .suit-club:after { content: "♣" } .bidding-box .suit-notrump:after { content: "NT" }