comparison blog/src/site.css @ 599:50540f0813e2

support default search fields in lucene; add search to blog;
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 16 Sep 2015 20:55:49 -0600
parents 6bb0c83116e9
children
comparison
equal deleted inserted replaced
598:e930f92d0f61 599:50540f0813e2
13 color: #034a87; 13 color: #034a87;
14 } 14 }
15 a[href]:hover { 15 a[href]:hover {
16 text-decoration: underline; 16 text-decoration: underline;
17 } 17 }
18
19
20 input[type="text"], input[type="email"] {
21 font: inherit;
22 padding: .5em .8em;
23 border-radius: 4px;
24 border-style: groove;
25 }
26 input[type="text"]:focus, input[type="email"]:focus {
27 border-color: #66afe9;
28 outline: none;
29 }
30 input[type="submit"] {
31 font: inherit;
32 padding: .5em;
33 border-radius: 4px;
34 background: #eee;
35 border-color: #eee;
36 }
37 input[type="submit"]:hover {
38 background: #ddd !important;
39 }