Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions themes/plugins.jquery.com/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ a {
width: 60%;
margin: 60px auto 0;
font-size: 22px;
background-color: #666;
border: 1px solid #ccc;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
border-radius: 2em;
padding: 0;
}

#banner-secondary .searchform input {
Expand All @@ -58,6 +54,28 @@ a {
border: none;
background: none;
color: #fff;
background-color: #666;
border: 1px solid #ccc;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
border-radius: 2em;
padding: 11px 0 11px 40px;
}

#banner-secondary .searchform input:focus {
border-color: rgba(122, 206, 244, 0.8);
outline: 0;
outline: thin dotted \9;
/* IE6-9 */

-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(122, 206, 244, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(122, 206, 244, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(122, 206, 244, 0.6);
}

/*
Expand Down