1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .page {
- width: 100%;
- height: 100%;
- flex: 1;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: flex-start;
- }
- .info {
- flex: 3;
- align-self: center;
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-around;
- align-items: center;
- height: 100%;
- }
- .form {
- flex: 1;
- display: flex;
- flex-flow: column nowrap;
- justify-content: center;
- align-items: center;
- }
- .label {
- padding: 1em;
- text-align: center;
- }
- .players {
- flex: 1;
-
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-start;
- align-items: flex-start;
- border-left: 2px solid #777;
- height: 100%;
- padding-left: 1rem;
- }
- .join {
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 1em;
- }
- @media only screen and (min-width: 600px) and (min-height: 600px) {
- .join {
- flex-flow: row nowrap;
- }
- }
- .name {
- border-radius: 0px;
- border: #666 solid 1px;
- background-color: #181a1b;
- color: #eee;
- padding: 0px 0.5em 0px 0.5em;
- margin-left: 2em;
- margin-right: 2em;
- height: 100%;
- }
- .error {
- height: 1em;
- text-align: center;
- }
|