forked from rebillar/site-accueil-insa
78 lines
No EOL
1.1 KiB
CSS
78 lines
No EOL
1.1 KiB
CSS
#stats-container {
|
|
display: inline-flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.stats-table {
|
|
width: 48%;
|
|
border: none;
|
|
margin: 1% 1% 1% 1%;
|
|
}
|
|
|
|
.stats-table th{
|
|
border-radius: 10px 10px 0 0;
|
|
font-family: 'Russo One', sans-serif;
|
|
}
|
|
|
|
|
|
.stats-table .stat-log, .stats-table .stat-points {
|
|
color: #1c1c1c;
|
|
border-radius: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#stats-usa th {
|
|
background-color: #1a5dad;
|
|
border-color: #1a5dad;
|
|
}
|
|
|
|
#stats-usa .stat-log, #stats-usa .stat-points {
|
|
background-color: #639fad;
|
|
border-color: #639fad;
|
|
}
|
|
|
|
#stats-usa td {
|
|
border-color: #639fad;
|
|
}
|
|
|
|
#stats-urss th {
|
|
background-color: #d72229;
|
|
border-color: #d72229;
|
|
}
|
|
|
|
#stats-urss .stat-log, #stats-urss .stat-points {
|
|
background-color: #d75556;
|
|
border-color: #d75556;
|
|
}
|
|
|
|
#stats-urss td {
|
|
border-color: #d75556;
|
|
}
|
|
|
|
.stat-log {
|
|
width: 80%;
|
|
}
|
|
|
|
.stat-points {
|
|
width: 20%;
|
|
}
|
|
|
|
#positive{
|
|
color: #e9b600;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#negative{
|
|
color: #cea380;
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
#stats-container {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.stats-table {
|
|
width: 100%;
|
|
}
|
|
} |