comparison examples/blog/src/site.css @ 779:c38f6619feb9

move blog into examples
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 28 Aug 2016 14:50:47 -0600
parents blog/src/site.css@50540f0813e2
children
comparison
equal deleted inserted replaced
778:305ffb00ebc1 779:c38f6619feb9
1
2 body {
3 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4 font-size: 14px;
5 margin: 1em 5%;
6 }
7
8 a[href] {
9 text-decoration: inherit;
10 color: #337ab7;
11 }
12 a[href]:visited {
13 color: #034a87;
14 }
15 a[href]:hover {
16 text-decoration: underline;
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 }