Commit 4c612eb7 authored by Riccardo Padovani's avatar Riccardo Padovani

Modifiche apportate da Pietro Albini:

      - Il bordo del campo di ricerca ridotto a 1px e arrotondato
      - Arrotondato h1 con id #error (pagine di errore)
      - Arrotondata la classe .message
      - Ai bottoni con classe .submit diminuito il bordo a 1px, tolta la sottolineatura e aggiunto effetto come le schede
parent cc9c435a
...@@ -1382,7 +1382,7 @@ ins { ...@@ -1382,7 +1382,7 @@ ins {
} }
#searchBar .searchInput { #searchBar .searchInput {
border: 3px solid #D7D7D7; border: 1px solid #D7D7D7;
padding: 3px; padding: 3px;
font-size: 13px; font-size: 13px;
height: 18px; height: 18px;
...@@ -1390,7 +1390,7 @@ ins { ...@@ -1390,7 +1390,7 @@ ins {
} }
#searchBar .searchInputGrey { #searchBar .searchInputGrey {
border: 3px solid #D7D7D7; border: 1px solid #D7D7D7;
padding: 3px; padding: 3px;
font-size: 13px; font-size: 13px;
height: 18px; height: 18px;
...@@ -1400,8 +1400,8 @@ ins { ...@@ -1400,8 +1400,8 @@ ins {
} }
#searchBar .searchInput:focus { #searchBar .searchInput:focus {
border: 3px solid #DD4818; outline: medium none;
outline: none; border: 1px solid #DD4818;
} }
#searchBar .searchBtn { #searchBar .searchBtn {
...@@ -1466,6 +1466,10 @@ padding: 6px; ...@@ -1466,6 +1466,10 @@ padding: 6px;
border: 1px solid #DD4814; border: 1px solid #DD4814;
margin: 10px 0; margin: 10px 0;
padding: 5px; padding: 5px;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
} }
.message p { .message p {
...@@ -1481,16 +1485,21 @@ padding: 6px; ...@@ -1481,16 +1485,21 @@ padding: 6px;
.submit { .submit {
background-color: white; background-color: white;
border: 2px solid #DD4814; border: 1px solid rgb(221, 72, 20);
cursor: pointer; cursor: pointer;
font-size: 120%; font-size: 120%;
font-weight: bold; font-weight: bold;
height: 40px; height: 30px;
padding-bottom: 4px; border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
} }
.submit:hover { .submit:hover {
text-decoration: underline; background: none repeat scroll 0% 0% rgb(221, 72, 20);
color: rgb(255, 255, 255);
text-decoration: none;
} }
.ask-body { .ask-body {
...@@ -2244,8 +2253,9 @@ div.wmd-button-bar { ...@@ -2244,8 +2253,9 @@ div.wmd-button-bar {
} }
#error > h1 { #error > h1 {
color: white; color: #ffffff;
background-color: #DD4818; background-color: rgb(221, 72, 24);
border-radius: 4px;
} }
#error { #error {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment