@@ -197,7 +185,7 @@ description: pages.contact.description
diff --git a/src/scss/_forms.scss b/src/scss/_forms.scss
index cca95ae..c321557 100644
--- a/src/scss/_forms.scss
+++ b/src/scss/_forms.scss
@@ -6,29 +6,37 @@ form {
box-sizing: border-box;
appearance: none;
}
+ select {
+ border: 2px solid $color-black;
+ border-radius: 0px;
+ -webkit-appearance: none;
+ }
+ textarea {
+ border: 2px solid $color-black;
+ font-size: 15px;
+ }
.input-block {
width: 100%;
margin-bottom: 12px;
}
-
.form-control {
display: block;
width: 100%;
- height: 34px;
+ height: 41px;
padding: 6px 12px;
- font-size: 14px;
+ font-size: 15px;
line-height: 1.42857143;
- color: #555;
+ color: #999;
background-color: #fff;
background-image: none;
- border: 1px solid #ccc;
- border-radius: 4px;
+ border: 2px solid $color-black;
+ border-radius: 2px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
-}
+ }
.username {
background-image: url(../images/icon-username.png);
background-repeat: no-repeat;
@@ -45,4 +53,11 @@ form {
padding-left: 40px;
color: #ccc;
}
+
+ .submit {
+ color: #ffffff;
+ background-color: $color-red;
+ border-radius: 2px;
+ padding: 1.5% 2%;
+ }
}
diff --git a/src/scss/_social_icons.scss b/src/scss/_social_icons.scss
index 14a062b..396c448 100644
--- a/src/scss/_social_icons.scss
+++ b/src/scss/_social_icons.scss
@@ -1,3 +1,7 @@
.social-image {
width: 44%;
}
+
+.large-social-image {
+ width: 20%;
+}