diff options
| author | polo <ordipolo@gmx.fr> | 2025-08-11 06:25:39 +0200 |
|---|---|---|
| committer | polo <ordipolo@gmx.fr> | 2025-08-11 06:25:39 +0200 |
| commit | d7468fc363b5d028db84373d4abfa6d7d19bacb9 (patch) | |
| tree | 0235e6c7520bb16b939f3e753ccd45c94bfaef28 /public/css | |
| parent | 90673ef19133e037cf401773f4262ba3d7d050bf (diff) | |
| download | cms-d7468fc363b5d028db84373d4abfa6d7d19bacb9.tar.gz cms-d7468fc363b5d028db84373d4abfa6d7d19bacb9.tar.bz2 cms-d7468fc363b5d028db84373d4abfa6d7d19bacb9.zip | |
nouveau routeur! et contrôleurs et vues pour la connexion et la gestion du compte, début d'utilisation de Request et Response
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/body.css | 52 | ||||
| -rw-r--r-- | public/css/form.css | 14 |
2 files changed, 50 insertions, 16 deletions
diff --git a/public/css/body.css b/public/css/body.css index a03510f..274627c 100644 --- a/public/css/body.css +++ b/public/css/body.css | |||
| @@ -55,6 +55,13 @@ section > h3 | |||
| 55 | margin: 0; | 55 | margin: 0; |
| 56 | text-align: center; | 56 | text-align: center; |
| 57 | } | 57 | } |
| 58 | .login_form | ||
| 59 | { | ||
| 60 | background-color: white; | ||
| 61 | margin: 15px; | ||
| 62 | padding: 15px; | ||
| 63 | } | ||
| 64 | |||
| 58 | .grid_columns | 65 | .grid_columns |
| 59 | { | 66 | { |
| 60 | display: grid; | 67 | display: grid; |
| @@ -181,7 +188,7 @@ button .action_icon:hover | |||
| 181 | display: flex; | 188 | display: flex; |
| 182 | justify-content: end; | 189 | justify-content: end; |
| 183 | } | 190 | } |
| 184 | section button | 191 | section button, section input[type=submit] |
| 185 | { | 192 | { |
| 186 | color: #ff1d04; | 193 | color: #ff1d04; |
| 187 | font-size: medium; | 194 | font-size: medium; |
| @@ -189,7 +196,7 @@ section button | |||
| 189 | background-color: white; | 196 | background-color: white; |
| 190 | border: lightgrey 2px outset; /* rend identiques les boutons firefox et chromium */ | 197 | border: lightgrey 2px outset; /* rend identiques les boutons firefox et chromium */ |
| 191 | } | 198 | } |
| 192 | section button:hover | 199 | section button:hover, section input[type=submit]:hover |
| 193 | { | 200 | { |
| 194 | background-color: yellow; | 201 | background-color: yellow; |
| 195 | border-radius: 4px; | 202 | border-radius: 4px; |
| @@ -199,4 +206,45 @@ section button:hover | |||
| 199 | article a:hover | 206 | article a:hover |
| 200 | { | 207 | { |
| 201 | cursor: pointer; | 208 | cursor: pointer; |
| 209 | } | ||
| 210 | |||
| 211 | .user_edit_header | ||
| 212 | { | ||
| 213 | /*display: flex; | ||
| 214 | justify-content: space-evenly; | ||
| 215 | align-items: center;*/ | ||
| 216 | display: grid; | ||
| 217 | grid-template-columns: repeat(3, 1fr); | ||
| 218 | text-align: center; | ||
| 219 | padding: 15px; | ||
| 220 | } | ||
| 221 | .user_icon | ||
| 222 | { | ||
| 223 | height: 36px; | ||
| 224 | } | ||
| 225 | .user_edit_flex | ||
| 226 | { | ||
| 227 | /*display: flex; | ||
| 228 | flex-wrap: wrap; | ||
| 229 | justify-content: space-between;*/ | ||
| 230 | display: grid; | ||
| 231 | grid-template-columns: repeat(2, 1fr); | ||
| 232 | } | ||
| 233 | @media screen and (max-width: 900px) | ||
| 234 | { | ||
| 235 | .user_edit_flex | ||
| 236 | { | ||
| 237 | display: block; | ||
| 238 | } | ||
| 239 | } | ||
| 240 | @media screen and (max-width: 500px) | ||
| 241 | { | ||
| 242 | .empty_column | ||
| 243 | { | ||
| 244 | display: none; | ||
| 245 | } | ||
| 246 | .user_edit_header | ||
| 247 | { | ||
| 248 | grid-template-columns: repeat(2, 1fr); | ||
| 249 | } | ||
| 202 | } \ No newline at end of file | 250 | } \ No newline at end of file |
diff --git a/public/css/form.css b/public/css/form.css index 84c73ac..5bfa768 100644 --- a/public/css/form.css +++ b/public/css/form.css | |||
| @@ -14,20 +14,6 @@ | |||
| 14 | .form .full_width_column{ | 14 | .form .full_width_column{ |
| 15 | grid-column: 1 / span 2; | 15 | grid-column: 1 / span 2; |
| 16 | } | 16 | } |
| 17 | .form_inputs input[type=submit] | ||
| 18 | { | ||
| 19 | color: #ff1d04; | ||
| 20 | font-size: medium; | ||
| 21 | border-radius: 4px; | ||
| 22 | background-color: white; | ||
| 23 | border: lightgrey 2px outset; | ||
| 24 | } | ||
| 25 | .form_inputs input[type=submit]:hover | ||
| 26 | { | ||
| 27 | background-color: yellow; | ||
| 28 | border-radius: 4px; | ||
| 29 | cursor: pointer; | ||
| 30 | } | ||
| 31 | 17 | ||
| 32 | .no_recipient_warning{ | 18 | .no_recipient_warning{ |
| 33 | color: red; | 19 | color: red; |
