forked from rebillar/site-accueil-insa
123 lines
2 KiB
CSS
Executable file
123 lines
2 KiB
CSS
Executable file
|
|
#mobile-score {
|
|
display: none;
|
|
height: auto;
|
|
}
|
|
|
|
#mobile-score .title-image {
|
|
height: 80px;
|
|
margin: 0 auto 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
#mobile-score .score-container {
|
|
margin: 0 auto 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
#top-bar-score {
|
|
display: inline-flex;
|
|
position: fixed;
|
|
right: 0;
|
|
}
|
|
|
|
#top-bar-score .title-image {
|
|
height: 40px;
|
|
margin: 0;
|
|
}
|
|
|
|
#main-score {
|
|
display: block;
|
|
}
|
|
|
|
#main-score .title-image {
|
|
display: none;
|
|
}
|
|
|
|
.score-container {
|
|
background: none;
|
|
border-radius: 10px;
|
|
display: inline-flex;
|
|
vertical-align: center;
|
|
font-family: 'Russo One', sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
.score-container a {
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
align-items: center;
|
|
}
|
|
|
|
.winning {
|
|
font-size: 23px;
|
|
}
|
|
|
|
.score-usa, .score-urss {
|
|
font-size: 20px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
display: flex;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
|
|
.score-usa{
|
|
color: #292952;
|
|
background: url("../images/usa.png") no-repeat right ;
|
|
background-size: auto 100%;
|
|
text-shadow: 0 0 10px #fff;
|
|
}
|
|
|
|
.score-urss{
|
|
color: #fbce15;
|
|
background: url("../images/urss.png") no-repeat left ;
|
|
background-size: auto 100%;
|
|
text-shadow: 0 0 5px #000;
|
|
}
|
|
|
|
|
|
.score-separator{
|
|
font-size: 30px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
color: #fff;
|
|
text-shadow: 0 0 10px #000;
|
|
}
|
|
|
|
#main-score .score-logo {
|
|
height: 60px;
|
|
margin: 0 5px 0 5px;
|
|
}
|
|
|
|
#main-score .score-usa, #main-score .score-urss, #main-score .score-separator {
|
|
font-size: 40px;
|
|
line-height: 80px;
|
|
}
|
|
|
|
#main-score .score-separator {
|
|
font-size: 55px;
|
|
}
|
|
|
|
#main-score .winning {
|
|
font-size: 50px;
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
#top-bar-score {
|
|
display: none;
|
|
}
|
|
#mobile-score {
|
|
display: block;
|
|
}
|
|
|
|
#main-score .score-container a {
|
|
display: block;
|
|
}
|
|
#main-score .score-separator {
|
|
display: none;
|
|
}
|
|
}
|