forked from rebillar/site-accueil-insa
73 lines
1 KiB
CSS
73 lines
1 KiB
CSS
|
|
#mobile-score {
|
|
display: none;
|
|
}
|
|
|
|
#mobile-score .title-image {
|
|
height: 100px;
|
|
margin: 0;
|
|
}
|
|
|
|
#mobile-score .score-display {
|
|
background: #1c1c1c;
|
|
box-shadow: 0 0 5px #000;
|
|
}
|
|
|
|
#top-bar-score {
|
|
display: inline-flex;
|
|
position: fixed;
|
|
right: 0;
|
|
}
|
|
|
|
#top-bar-score .title-image {
|
|
height: 40px;
|
|
margin: 0;
|
|
}
|
|
|
|
.score-display {
|
|
background: none;
|
|
border-radius: 10px;
|
|
display: inline-flex;
|
|
vertical-align: center;
|
|
font-family: 'Russo One', sans-serif;
|
|
height: 40px;
|
|
margin: 0;
|
|
}
|
|
|
|
.score-display a {
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
align-items: center;
|
|
height: 40px;
|
|
}
|
|
|
|
.score-usa, .score-urss {
|
|
font-size: 20px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.score-usa{
|
|
color: #1a5dad;
|
|
}
|
|
|
|
.score-urss{
|
|
color: #d72229;
|
|
}
|
|
|
|
.score-separator{
|
|
font-size: 20px;
|
|
}
|
|
|
|
.score-logo {
|
|
height: 30px;
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
#top-bar-score {
|
|
display: none;
|
|
}
|
|
#mobile-score {
|
|
display: block;
|
|
}
|
|
}
|