diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-04-13 22:46:13 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-04-13 22:46:13 +0200 |
commit | 899a4bd60570ff9b77fabe89dd4902f09bbdeb47 (patch) | |
tree | d1aba3f501dc633a9e154adfb2b122502975a3c1 /public | |
parent | 1b6f5e650fa774cda77d511bf4cbdc638a2b42f6 (diff) | |
download | wcms-899a4bd60570ff9b77fabe89dd4902f09bbdeb47.tar.gz wcms-899a4bd60570ff9b77fabe89dd4902f09bbdeb47.zip |
V2 feat nico search lien confirm background100%
Diffstat (limited to 'public')
-rw-r--r-- | public/css/style.css | 14 | ||||
-rw-r--r-- | public/index.php | 1 | ||||
-rw-r--r-- | public/rsc/js/app.js | 5 |
3 files changed, 16 insertions, 4 deletions
diff --git a/public/css/style.css b/public/css/style.css index 5cdb822..325a0ae 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -1,7 +1,11 @@ +html { +} + body { background-color: #dcdcdceb; font-family: helvetica, arial, sans-serif; margin: 0px; + } h1 { @@ -44,7 +48,7 @@ img { max-width: 1000px; } -article { +section { text-align: justify; padding: 3%; line-height: 1.2em; @@ -60,7 +64,7 @@ article { } -article input, textarea, select { +section input, textarea, select { width: 90%; padding-left: 15px; padding-right: 15px; @@ -89,9 +93,11 @@ aside { right: -300px; padding: 7px; z-index: 5; - background: #6c7d8a; + background: #bfbfbf; opacity: 0.3; - width: 350px; + width: 350px; + overflow-y: scroll; + max-height: 70%; } aside:hover { diff --git a/public/index.php b/public/index.php index 2409769..f935eed 100644 --- a/public/index.php +++ b/public/index.php @@ -1,3 +1,4 @@ <html> <a href="/w/">w</a> + </html>
\ No newline at end of file diff --git a/public/rsc/js/app.js b/public/rsc/js/app.js new file mode 100644 index 0000000..d1b9f55 --- /dev/null +++ b/public/rsc/js/app.js @@ -0,0 +1,5 @@ +function confirmSubmit(event, element) { + if (window.confirm('Confirmer ? ' + element) === false) { + event.preventDefault(); + } +}
\ No newline at end of file |