site-accueil-insa/assets/css/score.css

82 lines
1.1 KiB
CSS
Raw Normal View History

2018-06-15 11:12:55 +02:00
#mobile-score {
display: none;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
#mobile-score .title-image {
2018-06-05 20:03:33 +02:00
height: 100px;
margin: 0;
}
2018-06-15 11:12:55 +02:00
#mobile-score .score-display {
background: #1c1c1c;
box-shadow: 0 0 5px #000;
}
2018-06-05 20:03:33 +02:00
2018-06-15 11:12:55 +02:00
#top-bar-score {
display: inline-flex;
position: fixed;
right: 0;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
#top-bar-score .title-image {
height: 40px;
margin: 0;
}
2018-06-05 20:03:33 +02:00
#main-score {
display: block;
}
#main-score .title-image {
display: none;
}
2018-06-15 11:12:55 +02:00
.score-display {
background: none;
2018-06-05 20:03:33 +02:00
border-radius: 10px;
display: inline-flex;
vertical-align: center;
font-family: 'Russo One', sans-serif;
2018-06-15 11:12:55 +02:00
height: 40px;
margin: 0;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
.score-display a {
2018-06-05 20:03:33 +02:00
display: inline-flex;
vertical-align: middle;
align-items: center;
2018-06-15 11:12:55 +02:00
height: 40px;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
.score-usa, .score-urss {
font-size: 20px;
line-height: 40px;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
.score-usa{
2018-06-05 20:03:33 +02:00
color: #1a5dad;
}
2018-06-15 11:12:55 +02:00
.score-urss{
2018-06-05 20:03:33 +02:00
color: #d72229;
}
2018-06-15 11:12:55 +02:00
.score-separator{
font-size: 20px;
2018-06-05 20:03:33 +02:00
}
.score-logo {
2018-06-15 11:12:55 +02:00
height: 30px;
margin: 0;
2018-06-05 20:03:33 +02:00
}
@media screen and (max-width: 480px) {
2018-06-15 11:12:55 +02:00
#top-bar-score {
display: none;
}
#mobile-score {
display: block;
2018-06-05 20:03:33 +02:00
}
2018-06-12 11:45:48 +02:00
}