diff --git a/S2/DevWeb/Projet/src/main/webapp/WEB-INF/tags/forms/new-game.tag b/S2/DevWeb/Projet/src/main/webapp/WEB-INF/tags/forms/new-game.tag index 7ea7477..31e81b8 100644 --- a/S2/DevWeb/Projet/src/main/webapp/WEB-INF/tags/forms/new-game.tag +++ b/S2/DevWeb/Projet/src/main/webapp/WEB-INF/tags/forms/new-game.tag @@ -2,71 +2,81 @@ <%@ tag import="uppa.project.database.pojo.Game" %> <%@tag description="form/new-game" pageEncoding="UTF-8" %> -
+<%@attribute name="back_button" fragment="true" %> + +

Paramètres Généraux

-
-
-

Paramètres des Manches

-
-
-
- - +
+ + +
+
+ + +
+
+ +

Paramètres du Deck

+
+
+ +
+ ${Deck.NB_VALUES_PER_COLOR_MIN} + + ${Deck.NB_VALUES_PER_COLOR_MAX}
-
-
- - +
+ +
+ ${Deck.NB_COLORS_MIN} + + ${Deck.NB_COLORS_MAX}
-
- -

Paramètres du Deck

-
+
-
- -
-
<%= Deck.NB_VALUES_PER_COLOR_MIN %>
- -
<%= Deck.NB_VALUES_PER_COLOR_MAX %>
-
-
-
-
-
- -
-
<%= Deck.NB_COLORS_MIN %>
- -
<%= Deck.NB_COLORS_MAX %>
-
-
+
@@ -75,113 +85,73 @@ label.radio.button > input[type="radio"] { display: none; } - - .range-field .value { - - font-size: 18px; - color: #045fa4; - font-weight: 600; - } - .left { - left: 0; - } - .right { - right: 0; - } - .field input { - flex: 1 1 auto; - } - - .sliderValue { - position: relative; - width: 100%; - } - - .sliderValue span { - position: absolute; - height: 45px; - width: 45px; - transform: translateX(-70%) scale(0); - font-weight: 500; - top: -40px; - line-height: 55px; - z-index: 2; - color: #fff; - transform-origin: bottom; - transition: transform 0.3s ease-in-out; - } - - .sliderValue span:after { - position: absolute; - content: ""; - height: 100%; - width: 100%; - background: #045fa4; - border: 3px solid #fff; - z-index: -1; - left: 50%; - transform: translateX(-50%) rotate(45deg); - border-bottom-left-radius: 50%; - box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1); - border-top-left-radius: 50%; - border-top-right-radius: 50%; - } - - .sliderValue span.show { - transform: translateX(-70%) scale(1); - }