This commit is contained in:
Fraham 2017-11-06 20:33:02 +00:00
parent a6a8abd0e3
commit 2782d67e85
6 changed files with 9 additions and 7 deletions

View file

@ -41,7 +41,7 @@
border: 2px solid @primary;
}
.border-white {
border-color: #FFF;
border-color: @white;
}
.border-dotted {
border-style: dotted;

View file

@ -8,7 +8,7 @@ code {
kbd {
padding: 2px 4px;
font-size: 80%;
color: #fff;
color: @white;
background-color: @primary;
border-radius: 3px;
}

View file

@ -13,7 +13,9 @@
@danger-light: lighten(@danger, 45%);
@muted-light: lighten(@muted, 35%);
@white-dark: rgba(0, 0, 0, .03);
@white-dark: rgba(0, 0, 0, 0.3);
@white: rgba(255, 255, 255, 1);
@main-background: rgba(255, 255, 255, 1);
@colors: primary, secondary, success, warning, danger, muted;

View file

@ -39,7 +39,7 @@ hr:after {
}
.paper {
border: 1px solid @primary-light;
background-color: #FFF;
background-color: @main-background;
padding: 2rem;
margin-top: 1rem;
margin-bottom: 1rem;

View file

@ -1,7 +1,7 @@
input, select {
display: block;
background:transparent;
color:#41403E;
color:@primary;
outline:none;
border-top-left-radius: 255px 15px;
border-top-right-radius: 15px 225px;

View file

@ -23,8 +23,8 @@
min-width: 80px;
font-size: 0.7em;
text-align: center;
color: #fff;
background: rgba(0,0,0,0.7);
color: @white;
background: @white-dark;
transition: opacity .25s ease-out;
transform: translateX(-50%) translateY(-100%);
.border;