forked from rebillar/site-accueil-insa
69 lines
991 B
CSS
69 lines
991 B
CSS
#score-counter {
|
|
display: block;
|
|
height: 200px;
|
|
}
|
|
|
|
#score-counter #title-image {
|
|
height: 100px;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
#score-container {
|
|
display: block;
|
|
}
|
|
|
|
|
|
#score-display {
|
|
background-color: #1C1C1C;
|
|
box-shadow: 0 0 20px #1C1C1C;
|
|
border-radius: 10px;
|
|
display: inline-flex;
|
|
vertical-align: center;
|
|
font-family: 'Russo One', sans-serif;
|
|
height: 80px;
|
|
}
|
|
|
|
|
|
#score-display a {
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
align-items: center;
|
|
height: 80px;
|
|
}
|
|
|
|
#score-usa, #score-urss {
|
|
font-size: 50px;
|
|
}
|
|
|
|
#score-usa{
|
|
color: #1a5dad;
|
|
}
|
|
|
|
#score-urss{
|
|
color: #d72229;
|
|
}
|
|
|
|
#score-separator{
|
|
font-size: 70px;
|
|
}
|
|
|
|
.score-logo {
|
|
height: 70px;
|
|
margin: 5px;
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
#score-counter #title-image {
|
|
height: 75px;
|
|
}
|
|
#score-separator{
|
|
font-size: 50px;
|
|
}
|
|
.score-logo{
|
|
height: 50px;
|
|
}
|
|
#score-usa, #score-urss {
|
|
font-size: 40px;
|
|
}
|
|
}
|