Make text inputs dark insets
This commit is contained in:
parent
3a52840111
commit
2bd438f6a7
|
@ -31,6 +31,8 @@ body {
|
|||
border-right: 1px solid #121212;
|
||||
}
|
||||
|
||||
|
||||
|
||||
input#sendMessage {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
|
@ -92,7 +94,6 @@ input#sendMessage {
|
|||
max-width: 300px;
|
||||
}
|
||||
input[type=text], input[type=password] {
|
||||
color: black;
|
||||
border: 0;
|
||||
-webkit-box-shadow:
|
||||
inset 0 0 8px rgba(0,0,0,0.4),
|
||||
|
@ -103,8 +104,10 @@ input[type=text], input[type=password] {
|
|||
box-shadow:
|
||||
inset 0 0 8px rgba(0,0,0,0.4),
|
||||
0 0 16px rgba(0,0,0,0.4);
|
||||
background: rgba(255,255,255,0.5);
|
||||
border-radius: 0;
|
||||
color: #6e6e6e;
|
||||
box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1), 0px 1px 7px 0px rgba(0, 0, 0, 0.8) inset;
|
||||
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
#topbar {
|
||||
position: fixed;
|
||||
|
|
Loading…
Reference in New Issue