Browse Source

Merge pull request #469 from LN-Zap/style/improve-submit-channel-style

style(submit-channel): improve submit channel design
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
0089cc5568
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 42
      app/components/Contacts/SubmitChannelForm.scss

42
app/components/Contacts/SubmitChannelForm.scss

@ -2,17 +2,21 @@
.content { .content {
padding: 0 40px; padding: 0 40px;
font-family: Roboto; font-family: Roboto, sans-serif;
color: $white; color: $white;
margin: 0 auto; margin: 0 auto;
width: 500px; width: 500px;
.header { .header {
padding: 20px; padding: 20px 0;
text-align: center;
border-bottom: 1px solid $spaceborder;
h1 { h1 {
margin-bottom: 15px; margin: 10px 0 15px 0;
font-size: 20px; font-size: 22px;
font-weight: 100;
letter-spacing: 1.5px;
} }
p { p {
@ -23,19 +27,6 @@
} }
} }
.header {
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid $spaceborder;
h1 {
font-size: 22px;
font-weight: 100;
margin-top: 10px;
letter-spacing: 1.5px;
}
}
.title { .title {
margin: 20px 0; margin: 20px 0;
line-height: 32px; line-height: 32px;
@ -43,8 +34,8 @@
h2 { h2 {
font-size: 14px; font-size: 14px;
background: $spaceblue; background: $spaceblue;
padding: 5px; padding: 10px;
border-radius: 0px; border-radius: 17.5px;
display: inline; display: inline;
} }
} }
@ -55,12 +46,8 @@
align-items: center; align-items: center;
input { input {
font-size: 20px; font-size: 40px;
max-width: 110px; max-width: 110px;
}
}
.input input {
background: transparent; background: transparent;
outline: none; outline: none;
border: 1px solid #404040; border: 1px solid #404040;
@ -71,8 +58,10 @@
width: 100%; width: 100%;
font-weight: 200; font-weight: 200;
} }
}
.input input::-webkit-input-placeholder, ::-webkit-input-placeholder { .input input::-webkit-input-placeholder,
::-webkit-input-placeholder {
text-shadow: none; text-shadow: none;
-webkit-text-fill-color: initial; -webkit-text-fill-color: initial;
} }
@ -99,7 +88,6 @@
font-weight: bold; font-weight: bold;
} }
} }
} }
ul { ul {
@ -145,7 +133,7 @@
&.active { &.active {
background: $gold; background: $gold;
opacity: 1.0; opacity: 1;
&:hover { &:hover {
background: darken($gold, 5%); background: darken($gold, 5%);

Loading…
Cancel
Save