dds-bridge-sys 3.3.0

Generated bindings to DDS, the double dummy solver for bridge
Documentation
/* Copyright 2020-2026 Adam Wildavsky

   Use of this source code is governed by an MIT-style
   license that can be found in the LICENSE file or at
   https://opensource.org/licenses/MIT
*/

.grid-outer {
  background-color: #2196F3;
  padding: 10px;
  max-width: 800px;
}

.grid-container {
  display: grid;
  grid-template-areas:
    "nw north ne"
    "west center east"
    "sw south se";
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #2196F3;
}

.hand-north {
  grid-area: north;
}

.hand-east {
  grid-area: east;
}

.hand-south {
  grid-area: south;
}

.hand-west {
  grid-area: west;
}

.grid-filler-nw {
  grid-area: nw;
}

.grid-filler-ne {
  grid-area: ne;
}

.grid-filler-center {
  grid-area: center;
}

.grid-filler-sw {
  grid-area: sw;
}

.grid-filler-se {
  grid-area: se;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.grid-filler {
  padding: 20px;
}

td {
  text-align: center;
}