LeagueStats/public/style.css

53 lines
699 B
CSS
Raw Normal View History

2018-12-01 16:51:26 +00:00
.search {
background: #ebebeb;
}
.search .container {
display: flex;
align-items: center;
justify-content: center;
padding: 32px 0;
}
.player {
text-align: center;
margin: 16px auto;
width: 400px;
border: 1px solid #ebebeb;
padding: 16px;
}
.player__pp {
width: 75px;
height: 75px;
background: #ebebeb;
margin: 0 auto;
}
.player__rank-img {
width: 75px;
height: 75px;
background: #ebebeb;
margin: 0 auto;
}
2018-12-03 21:11:52 +00:00
.list-matches {
list-style-type: none;
padding: 0;
}
.list-matches li {
padding: 10px 0;
background: #F1F5F8;
}
.list-matches li:nth-child(2n) {
background: #DAE1E7;
}
2018-12-01 16:51:26 +00:00
.champion-icon {
width: 48px;
height: 48px;
2018-12-03 21:11:52 +00:00
margin-left: 5px;
2018-12-01 16:51:26 +00:00
}