You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
394 B
29 lines
394 B
#content {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: flex-end;
|
|
|
|
}
|
|
.team {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
|
|
}
|
|
.points {
|
|
font-size: 32pt;
|
|
}
|
|
|
|
|
|
.bar {
|
|
float: left;
|
|
width: 100px;
|
|
margin: 5px;
|
|
border: 1px solid rgba(0, 0, 0, .2);
|
|
background-color: blue;
|
|
}
|
|
|
|
|