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

119 lines
1.7 KiB
CSS
Raw Normal View History

2018-06-15 11:12:55 +02:00
#mobile-score {
display: none;
2018-08-27 09:48:39 +02:00
height: auto;
2018-06-05 20:03:33 +02:00
}
2018-06-15 11:12:55 +02:00
#mobile-score .title-image {
2018-08-27 09:48:39 +02:00
height: 80px;
margin: 0 auto 0 auto;
display: block;
2019-06-13 14:36:42 +02:00
position: relative;
bottom: -100px;
2018-06-05 20:03:33 +02:00
}
2018-08-27 09:48:39 +02:00
#mobile-score .score-container {
margin: 0 auto 0 auto;
display: block;
2019-06-13 14:36:42 +02:00
bottom: -85px;
position: relative;
2018-06-15 11:12:55 +02:00
}
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-08-27 09:36:01 +02:00
.score-container {
2018-06-15 11:12:55 +02:00
background: none;
2018-06-05 20:03:33 +02:00
border-radius: 10px;
display: inline-flex;
vertical-align: center;
2019-05-18 17:58:23 +02:00
font-family: Harry-P, sans-serif;
2019-05-18 19:41:24 +02:00
font-size: 50px;
2018-06-15 11:12:55 +02:00
margin: 0;
2018-06-05 20:03:33 +02:00
}
2018-08-27 09:36:01 +02:00
.score-container a {
2018-06-05 20:03:33 +02:00
display: inline-flex;
vertical-align: middle;
align-items: center;
text-shadow: -1px 1px 2px #000,
1px 1px 2px #000,
1px -1px 0 #000,
-1px -1px 0 #000;
}
.score-container a:hover {
text-shadow: 0 0 10px #bd8a39;
2018-08-27 09:36:01 +02:00
}
.winning {
font-size: 23px;
2018-06-05 20:03:33 +02:00
}
.score-gli {
2019-06-08 13:00:46 +02:00
color: #ff5f5f;
2018-08-27 09:36:01 +02:00
background-size: auto 100%;
2019-05-18 17:58:23 +02:00
margin: 0 10px;
2018-06-05 20:03:33 +02:00
}
.score-pek {
2019-06-08 13:00:46 +02:00
color: #7ffd78;
2018-08-27 09:36:01 +02:00
background-size: auto 100%;
2019-05-18 17:58:23 +02:00
margin: 0 10px;
2018-06-05 20:03:33 +02:00
}
.score-boo {
2019-06-08 13:00:46 +02:00
color: #fafd78;
background-size: auto 100%;
2019-05-18 17:58:23 +02:00
margin: 0 10px;
}
.score-ver {
2019-06-08 13:00:46 +02:00
color: #60bdff;
background-size: auto 100%;
2019-05-18 17:58:23 +02:00
margin: 0 10px;
}
2018-06-05 20:03:33 +02:00
.score-separator {
2019-05-18 17:58:23 +02:00
background-color: #d9d9d9;
width: 5px;
height: 5px;
}
2018-06-05 20:03:33 +02:00
2018-07-06 19:34:49 +02:00
#main-score .score-logo {
height: 60px;
margin: 0 5px 0 5px;
}
2018-08-03 21:18:46 +02:00
2019-07-16 16:28:57 +02:00
@media screen and (max-width: 768px) {
2018-06-15 11:12:55 +02:00
#top-bar-score {
display: none;
}
2018-06-15 11:12:55 +02:00
#mobile-score {
display: block;
2018-06-05 20:03:33 +02:00
}
2018-08-27 09:48:39 +02:00
2019-07-16 16:28:57 +02:00
#main-score .score-container {
2018-08-27 09:36:01 +02:00
display: block;
}
2018-06-12 11:45:48 +02:00
}