diff options
| author | polo <ordipolo@gmx.fr> | 2025-04-21 20:36:10 +0200 |
|---|---|---|
| committer | polo <ordipolo@gmx.fr> | 2025-04-21 20:36:10 +0200 |
| commit | eb3e1eb8c8365d3b3d1d39f24314ba420255afc2 (patch) | |
| tree | 5e3d747b0e4d5e747052e9afed76f3a0f0986379 /public/css/menu.css | |
| parent | ca3949aca0c7c1af476c8eec93b4920d5aff21ec (diff) | |
| download | cms-eb3e1eb8c8365d3b3d1d39f24314ba420255afc2.tar.gz cms-eb3e1eb8c8365d3b3d1d39f24314ba420255afc2.tar.bz2 cms-eb3e1eb8c8365d3b3d1d39f24314ba420255afc2.zip | |
page menu et chemin, partie1
Diffstat (limited to 'public/css/menu.css')
| -rw-r--r-- | public/css/menu.css | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/public/css/menu.css b/public/css/menu.css new file mode 100644 index 0000000..cce1d43 --- /dev/null +++ b/public/css/menu.css | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | /* page "Menu et chemins" uniquement */ | ||
| 2 | |||
| 3 | .menu | ||
| 4 | { | ||
| 5 | padding: 0 20px; | ||
| 6 | } | ||
| 7 | .menu img | ||
| 8 | { | ||
| 9 | width: 20px; | ||
| 10 | vertical-align: middle; | ||
| 11 | } | ||
| 12 | |||
| 13 | /* explications pour l'utiisateur */ | ||
| 14 | .menu aside | ||
| 15 | { | ||
| 16 | display: flex; | ||
| 17 | flex-wrap: wrap; | ||
| 18 | background-color: white; | ||
| 19 | padding: 10px; | ||
| 20 | } | ||
| 21 | .menu aside p | ||
| 22 | { | ||
| 23 | margin: 5px; | ||
| 24 | font-size: smaller; | ||
| 25 | } | ||
| 26 | .menu aside input | ||
| 27 | { | ||
| 28 | pointer-events: none; /* case non clicable, sauf action au clavier... */ | ||
| 29 | } | ||
| 30 | |||
| 31 | .menu button | ||
| 32 | { | ||
| 33 | margin: 5px; | ||
| 34 | } | ||
| 35 | input | ||
| 36 | { | ||
| 37 | vertical-align: middle; | ||
| 38 | } | ||
| 39 | .menu_entry_checkbox | ||
| 40 | { | ||
| 41 | margin-left: 2px; | ||
| 42 | } | ||
| 43 | .move_entry_icon | ||
| 44 | { | ||
| 45 | width: 20px; | ||
| 46 | vertical-align: middle; | ||
| 47 | border: 2px #e3f3ff solid; | ||
| 48 | } | ||
| 49 | .move_entry_icon:hover | ||
| 50 | { | ||
| 51 | background-color: #ffff00; | ||
| 52 | border-radius: 4px; | ||
| 53 | border: lightgrey 2px outset; | ||
| 54 | cursor: pointer; | ||
| 55 | } | ||
| 56 | |||
| 57 | .menu .new_entry_buttons | ||
| 58 | { | ||
| 59 | background-color: white; | ||
| 60 | padding: 10px; | ||
| 61 | } | ||
| 62 | .menu .new_entry_buttons p | ||
| 63 | { | ||
| 64 | margin: 5px; | ||
| 65 | } | ||
| 66 | |||
| 67 | @media screen and (min-width: 80rem) { | ||
| 68 | i | ||
| 69 | { | ||
| 70 | /*display: none;*/ | ||
| 71 | } | ||
| 72 | } \ No newline at end of file | ||
