Green theme : improvements
I hope I'm requesting this pull correctly
This commit is contained in:
parent
c45489c709
commit
26d0937dde
@ -1,7 +1,7 @@
|
|||||||
@import url("../../../assets/css/app.css");
|
@import url("../../../assets/css/app.css");
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #f5fec9 ;
|
background-color: #f5fec9;
|
||||||
color: #4c4c4c;
|
color: #4c4c4c;
|
||||||
font-family: 'Verdana', Arial, sans-serif;
|
font-family: 'Verdana', Arial, sans-serif;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
@ -47,7 +47,7 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a.logo {
|
a.logo {
|
||||||
margin-left: 5px;
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.logo:hover {
|
a.logo:hover {
|
||||||
@ -88,7 +88,8 @@ section.page {
|
|||||||
border-right: 1px solid #CACACA;
|
border-right: 1px solid #CACACA;
|
||||||
border-bottom: 1px solid #CACACA;
|
border-bottom: 1px solid #CACACA;
|
||||||
border-radius: 0px 0px 8px 8px;
|
border-radius: 0px 0px 8px 8px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 5px;
|
||||||
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header {
|
.page-header {
|
||||||
@ -99,6 +100,13 @@ section.page {
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page-header li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.page-header h2, .page-section h2 {
|
.page-header h2, .page-section h2 {
|
||||||
border-bottom: 1px dotted #CACACA;
|
border-bottom: 1px dotted #CACACA;
|
||||||
font-family: Georgia, serif;
|
font-family: Georgia, serif;
|
||||||
@ -110,13 +118,26 @@ section.page {
|
|||||||
|
|
||||||
.items article {
|
.items article {
|
||||||
border: none;
|
border: none;
|
||||||
|
border-bottom: 1px dotted #CACACA;
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
|
margin-bottom: 0;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.items article:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.items a:hover {
|
.items a:hover {
|
||||||
color: #336600;
|
color: #336600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#items-paging {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
border: none;
|
border: none;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
@ -127,7 +148,12 @@ form {
|
|||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="email"], input[type="tel"], input[type="password"], input[type="text"], textarea, select {
|
input[type="email"],
|
||||||
|
input[type="tel"],
|
||||||
|
input[type="password"],
|
||||||
|
input[type="text"],
|
||||||
|
textarea,
|
||||||
|
select {
|
||||||
-webkit-border-radius: 4px;
|
-webkit-border-radius: 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
@ -137,7 +163,11 @@ input[type="email"], input[type="tel"], input[type="password"], input[type="text
|
|||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="text"]:focus, textarea:focus {
|
input[type="email"]:focus,
|
||||||
|
input[type="tel"]:focus,
|
||||||
|
input[type="password"]:focus,
|
||||||
|
input[type="text"]:focus,
|
||||||
|
textarea:focus {
|
||||||
border: 1px solid #336600;
|
border: 1px solid #336600;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
@ -153,7 +183,35 @@ input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus
|
|||||||
border-color: #065806;
|
border-color: #065806;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-blue:hover, .btn-blue:focus {
|
.btn-blue:hover,
|
||||||
|
.btn-blue:focus {
|
||||||
background-color: #609C22;
|
background-color: #609C22;
|
||||||
border-color: #0A7C0A;
|
border-color: #0A7C0A;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
body {
|
||||||
|
border-left: 1px solid #CACACA;
|
||||||
|
border-right: 1px solid #CACACA;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
header li {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.page {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user