From 6abbbc9c823d1762ed4abdf0b50f45c729a8af60 Mon Sep 17 00:00:00 2001 From: GregoireAntoine <60960340+GregoireAntoine@users.noreply.github.com> Date: Tue, 21 Apr 2020 10:57:09 +0200 Subject: [PATCH 1/3] Update Page login opticien --- Page login opticien | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Page login opticien b/Page login opticien index 7768e76f..5b5e4c89 100644 --- a/Page login opticien +++ b/Page login opticien @@ -10,7 +10,7 @@
-Projet Dev web +Projet Dev web : opticien

From f85e99c5dfc1f1b52396b3b22fd1b5fed08ee9da Mon Sep 17 00:00:00 2001 From: GregoireAntoine <60960340+GregoireAntoine@users.noreply.github.com> Date: Tue, 21 Apr 2020 11:04:32 +0200 Subject: [PATCH 2/3] Add files via upload --- barre de recherche.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 barre de recherche.html diff --git a/barre de recherche.html b/barre de recherche.html new file mode 100644 index 00000000..38aea4e1 --- /dev/null +++ b/barre de recherche.html @@ -0,0 +1,17 @@ + + + + + + + barre de recherche + + + + + \ No newline at end of file From a125b8482338906dc852c7ba67d16b037686c83e Mon Sep 17 00:00:00 2001 From: GregoireAntoine <60960340+GregoireAntoine@users.noreply.github.com> Date: Tue, 21 Apr 2020 11:05:07 +0200 Subject: [PATCH 3/3] Add files via upload --- style.css | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 00000000..eeb90747 --- /dev/null +++ b/style.css @@ -0,0 +1,95 @@ +body{ +margin: 0; +padding: 0; +} + +.search-box{ + position: absolute; + top:7%; + left: 14%; + transform: translate(-50%,-50%); + background: #2f3640; + height:40px; + border-radius: 40px; + padding: 10px; + } +.search-box:hover > .search-txt{ + width:240px; + padding: 0 6px; + } +.search-box:hover > .search-btn{ + background:white; + } +.search-btn{ + color: #e84118; + float: right; + width: 40px; + height: 40px; + border-radius: 50%; + background: #2f3640; + display: flex; + justify-content: center; + align-items: center; + } +.search-txt{ + border:none; + background:none; + outline: none; + float: left; + padding: 0; + color: white; + font-size:16px; + transition: 0.4s; + line-height: 40px; + width: 0px; + } + + + + + + +.bouton{ + text-align:center; + margin-top:300px; +} +.btn{ + border:1px solid #3498db; + background:none; + padding: 10px 20px; + font-size : 20px; + font-family:"montserrat"; + cursor:pointer; + margin:10px; + transition:0.8s; + position:relative; + overflow:hidden; +} +.btn1{ + color:#3498db; + background-color:white; +} +.btn1:hover{ + color:white; + background-color:#3498db; +} +.btn::before{ + content:""; + position:absolute; + left: 0; + width:100%; + height:0%; + background:#3498db; + z-index:-1; + transition:0,8s; +} + +.btn1::before{ + top:0; + border-radius:0 0 50% 50%; +} +.btn1:hover::before{ + height:180%; +} + + \ No newline at end of file