elementary / Reddit-CSS

Creative Commons Attribution Share Alike 4.0 International
5 stars 3 forks source link

Fix entry style #2

Closed danirabbit closed 9 years ago

danirabbit commented 9 years ago

The entry style right now is a little too contrasty. To fit better on the white background, it should be more like:

input[type="text"] { background-color: #fff; background-image: linear-gradient(to bottom,

fafafa,

                              #fdfdfd
                              );
border: 1px solid rgba(0, 0, 0, 0.22);
border-radius: 2.5px;

box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.04),
            inset 0 0 0 1px rgba(0, 0, 0, 0.02),
            0 1px 0 rgba(255, 255, 255, 0.30);

color: #323232;
text-shadow: 0 1px rgba(255, 255, 255, 0.4);

transition: all 200ms ease-out;
background-clip: padding-box;
box-sizing: border-box;

padding-left: 8px;
height: 36px;
outline: 0;

}

roryjs commented 9 years ago

Fixed input background.