This commit is contained in:
ntr
2019-08-08 16:27:23 +10:00
parent 0e23c890ef
commit 4906eb3e39
6 changed files with 126 additions and 23 deletions
+2 -2
View File
@@ -303,12 +303,12 @@
border-top: 1px solid purple;
}
.game .img {
.game .img, .faceoff .img {
position: relative;
height: 100%;
}
.game .avatar {
.game .avatar, .faceoff .avatar {
grid-area: avatar;
width: 100%;
height: 100%;
+31
View File
@@ -379,6 +379,37 @@
opacity: 0.5;
}
.faceoff {
overflow: hidden;
display: grid;
grid-template-rows: min-content 1fr 1fr min-content ;
grid-template-areas:
"oppname"
"opponent"
"player"
"playername";
.ready {
background: black;
color: @green;
}
h1 {
text-align: center;
}
.opponent-name {
margin-bottom: 1em;
grid-area: oppname;
}
.player-name {
margin-top: 1em;
grid-area: playername;
}
}
/* Mobile Nav*/
.instance-nav { display: none; }