diff options
Diffstat (limited to 'public/css/modif_page.css')
| -rw-r--r-- | public/css/modif_page.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/public/css/modif_page.css b/public/css/modif_page.css new file mode 100644 index 0000000..c494221 --- /dev/null +++ b/public/css/modif_page.css | |||
| @@ -0,0 +1,74 @@ | |||
| 1 | /* -- mode modification d'une page -- */ | ||
| 2 | .page_modification | ||
| 3 | { | ||
| 4 | background-color: white; | ||
| 5 | padding: 10px; | ||
| 6 | margin: 10px 15px; | ||
| 7 | } | ||
| 8 | .page_modification form select, .page_modification form input[type=submit] | ||
| 9 | { | ||
| 10 | color: #ff1d04; | ||
| 11 | font-size: medium; | ||
| 12 | border-radius: 4px; | ||
| 13 | background-color: white; | ||
| 14 | border: lightgrey 2px outset; | ||
| 15 | } | ||
| 16 | .page_modificationselect:hover | ||
| 17 | { | ||
| 18 | cursor: pointer; | ||
| 19 | } | ||
| 20 | .page_modification form input[type=submit]:hover | ||
| 21 | { | ||
| 22 | background-color: #ffff00; | ||
| 23 | border-radius: 4px; | ||
| 24 | cursor: pointer; | ||
| 25 | } | ||
| 26 | .edit_page_title_zone | ||
| 27 | { | ||
| 28 | display: flex; | ||
| 29 | flex-wrap: wrap; | ||
| 30 | justify-content: space-evenly; | ||
| 31 | } | ||
| 32 | .edit_page_zone, .edit_bloc_zone | ||
| 33 | { | ||
| 34 | background-color: #f0f0f0f0; | ||
| 35 | margin: 5px; | ||
| 36 | padding: 10px; | ||
| 37 | } | ||
| 38 | #edit_description | ||
| 39 | { | ||
| 40 | margin: 5px; | ||
| 41 | display: flex; | ||
| 42 | flex-wrap: wrap; | ||
| 43 | justify-content: center; | ||
| 44 | gap: 5px; | ||
| 45 | } | ||
| 46 | #edit_description button | ||
| 47 | { | ||
| 48 | vertical-align: top; | ||
| 49 | } | ||
| 50 | .edit_bloc_zone | ||
| 51 | { | ||
| 52 | display: flex; | ||
| 53 | justify-content: space-evenly; | ||
| 54 | flex-wrap: wrap; | ||
| 55 | } | ||
| 56 | .edit_page_zone p, .edit_bloc_zone p, .edit_page_zone form | ||
| 57 | { | ||
| 58 | margin: 5px; | ||
| 59 | } | ||
| 60 | |||
| 61 | .new_bloc #bloc_title | ||
| 62 | { | ||
| 63 | width: 70%; | ||
| 64 | max-width: 300px; | ||
| 65 | } | ||
| 66 | .modify_bloc > div | ||
| 67 | { | ||
| 68 | display: flex; | ||
| 69 | align-items: baseline; | ||
| 70 | } | ||
| 71 | .modify_bloc img | ||
| 72 | { | ||
| 73 | vertical-align: middle; | ||
| 74 | } \ No newline at end of file | ||
