+
- 0%
+
+
+
+ 100%
+
+
+
diff --git a/Les competitions/progressions/style.css b/Les competitions/progressions/style.css
index ac94529..c223e61 100644
--- a/Les competitions/progressions/style.css
+++ b/Les competitions/progressions/style.css
@@ -1,3 +1,44 @@
+@keyframes loader {
+ 0% {
+ transform: translateX(-600px);
+ }
+
+ 100% {
+ transform: translateX(0px);
+ }
+}
+
+main {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: calc(100vh - (95px + 220px));
+}
+
+.loaderDiv {
+ display: flex;
+ justify-content: center;
+}
+
+.loaderDiv p {
+ margin: 0 10px;
+}
+
+.container {
+ width: 600px;
+ border: 2px solid black;
+ height: 25px;
+ overflow: hidden;
+}
+
+.loader {
+ width: 600px;
+ height: 21px;
+ background-color: green;
+ transform: translateX(-600px);
+ animation: loader 15s linear infinite;
+}
+
.joueurs-table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
@@ -22,6 +63,11 @@
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
- background-color: #0E9BF7;
+ background-color: #0e9bf7;
color: white;
}
+
+footer {
+ position: relative;
+ bottom: 0;
+}