61 lines
896 B
SCSS
61 lines
896 B
SCSS
.war {
|
|
.row {
|
|
justify-content: center;
|
|
}
|
|
|
|
h4 {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.team {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #666;
|
|
line-height: 1.2;
|
|
padding: 2px 8px;
|
|
|
|
&.is--hover {
|
|
outline: 2px solid gold;
|
|
}
|
|
|
|
&__details {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
&__location {
|
|
display: block;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
font-size: 11px;
|
|
color: #0079b3;
|
|
margin-bottom: 2px;
|
|
}
|
|
}
|
|
|
|
.best-team {
|
|
font-weight: 600;
|
|
color: black;
|
|
}
|
|
|
|
img {
|
|
max-width: 32px;
|
|
background: black;
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
margin: 1px;
|
|
border: 1px solid grey;
|
|
display: none;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
margin: 0 6px 0 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
@include mq(xl) {
|
|
img {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
} |