Spaces:
Runtime error
Runtime error
Jon Solow commited on
Commit ·
eebf50a
1
Parent(s): 3b6a23b
Add grid-container-6
Browse files- src/style.css +49 -2
src/style.css
CHANGED
|
@@ -45,6 +45,52 @@
|
|
| 45 |
border-right: 1px solid white;
|
| 46 |
}
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
.grid-container-7 {
|
| 49 |
display: grid;
|
| 50 |
grid-template-columns: repeat(7, 1fr);
|
|
@@ -52,7 +98,6 @@
|
|
| 52 |
grid-column-gap: 0px;
|
| 53 |
grid-row-gap: 10px;
|
| 54 |
color: white;
|
| 55 |
-
}
|
| 56 |
|
| 57 |
.timeslot1 { grid-area: 1 / 1 / 2 / 2; }
|
| 58 |
.timeslot2 { grid-area: 1 / 2 / 2 / 3; }
|
|
@@ -92,4 +137,6 @@
|
|
| 92 |
.playerslot25 { grid-area: 9 / 4 / 10 / 5; }
|
| 93 |
.playerslot26 { grid-area: 9 / 5 / 10 / 6; }
|
| 94 |
.playerslot27 { grid-area: 9 / 6 / 10 / 7; }
|
| 95 |
-
.playerslot28 { grid-area: 9 / 7 / 10 / 8; }
|
|
|
|
|
|
|
|
|
| 45 |
border-right: 1px solid white;
|
| 46 |
}
|
| 47 |
|
| 48 |
+
|
| 49 |
+
.grid-container-6 {
|
| 50 |
+
display: grid;
|
| 51 |
+
grid-template-columns: repeat(6, 1fr);
|
| 52 |
+
grid-template-rows: repeat(9, auto);
|
| 53 |
+
grid-column-gap: 0px;
|
| 54 |
+
grid-row-gap: 10px;
|
| 55 |
+
color: white;
|
| 56 |
+
|
| 57 |
+
.timeslot1 { grid-area: 1 / 1 / 2 / 2; }
|
| 58 |
+
.timeslot2 { grid-area: 1 / 2 / 2 / 3; }
|
| 59 |
+
.timeslot3 { grid-area: 1 / 3 / 2 / 4; }
|
| 60 |
+
.timeslot4 { grid-area: 1 / 4 / 2 / 5; }
|
| 61 |
+
.timeslot5 { grid-area: 1 / 5 / 2 / 6; }
|
| 62 |
+
.timeslot6 { grid-area: 1 / 6 / 2 / 7; }
|
| 63 |
+
.tier1 { grid-area: 2 / 1 / 3 / 7; }
|
| 64 |
+
.playerslot1 { grid-area: 3 / 1 / 4 / 2; }
|
| 65 |
+
.playerslot2 { grid-area: 3 / 2 / 4 / 3; }
|
| 66 |
+
.playerslot3 { grid-area: 3 / 3 / 4 / 4; }
|
| 67 |
+
.playerslot4 { grid-area: 3 / 4 / 4 / 5; }
|
| 68 |
+
.playerslot5 { grid-area: 3 / 5 / 4 / 6; }
|
| 69 |
+
.playerslot6 { grid-area: 3 / 6 / 4 / 7; }
|
| 70 |
+
.tier2 { grid-area: 4 / 1 / 5 / 7; }
|
| 71 |
+
.playerslot7 { grid-area: 5 / 1 / 6 / 2; }
|
| 72 |
+
.playerslot8 { grid-area: 5 / 2 / 6 / 3; }
|
| 73 |
+
.playerslot9 { grid-area: 5 / 3 / 6 / 4; }
|
| 74 |
+
.playerslot10 { grid-area: 5 / 4 / 6 / 5; }
|
| 75 |
+
.playerslot11 { grid-area: 5 / 5 / 6 / 6; }
|
| 76 |
+
.playerslot12 { grid-area: 5 / 6 / 6 / 7; }
|
| 77 |
+
.tier3 { grid-area: 6 / 1 / 7 / 7; }
|
| 78 |
+
.playerslot13 { grid-area: 7 / 1 / 8 / 2; }
|
| 79 |
+
.playerslot14 { grid-area: 7 / 2 / 8 / 3; }
|
| 80 |
+
.playerslot15 { grid-area: 7 / 3 / 8 / 4; }
|
| 81 |
+
.playerslot16 { grid-area: 7 / 4 / 8 / 5; }
|
| 82 |
+
.playerslot17 { grid-area: 7 / 5 / 8 / 6; }
|
| 83 |
+
.playerslot18 { grid-area: 7 / 6 / 8 / 7; }
|
| 84 |
+
.tier4 { grid-area: 8 / 1 / 9 / 7; }
|
| 85 |
+
.playerslot19 { grid-area: 9 / 1 / 10 / 2; }
|
| 86 |
+
.playerslot20 { grid-area: 9 / 2 / 10 / 3; }
|
| 87 |
+
.playerslot21 { grid-area: 9 / 3 / 10 / 4; }
|
| 88 |
+
.playerslot22 { grid-area: 9 / 4 / 10 / 5; }
|
| 89 |
+
.playerslot23 { grid-area: 9 / 5 / 10 / 6; }
|
| 90 |
+
.playerslot24 { grid-area: 9 / 6 / 10 / 7; }
|
| 91 |
+
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
.grid-container-7 {
|
| 95 |
display: grid;
|
| 96 |
grid-template-columns: repeat(7, 1fr);
|
|
|
|
| 98 |
grid-column-gap: 0px;
|
| 99 |
grid-row-gap: 10px;
|
| 100 |
color: white;
|
|
|
|
| 101 |
|
| 102 |
.timeslot1 { grid-area: 1 / 1 / 2 / 2; }
|
| 103 |
.timeslot2 { grid-area: 1 / 2 / 2 / 3; }
|
|
|
|
| 137 |
.playerslot25 { grid-area: 9 / 4 / 10 / 5; }
|
| 138 |
.playerslot26 { grid-area: 9 / 5 / 10 / 6; }
|
| 139 |
.playerslot27 { grid-area: 9 / 6 / 10 / 7; }
|
| 140 |
+
.playerslot28 { grid-area: 9 / 7 / 10 / 8; }
|
| 141 |
+
|
| 142 |
+
}
|