Added a website
[jamaendo] / www / css / site.css
1 @charset "utf-8";
2
3 input.button { cursor: pointer; }
4
5 img {
6     border: none;
7 }
8
9 body {
10     font-family: "Linux Libertine", "Palatino Linotype", "Book Antiqua", Palatino, serif;
11     background: #F5F7EE;
12     color: #222;
13 }
14
15 a {
16     text-decoration:none;
17     /*border-bottom:1px dotted;*/
18     color: #CC0000;
19 }
20
21 a:hover {
22     color: #ff0000;
23     background: #f0fff0;
24     /*border-bottom:2px solid;*/
25 }
26
27 h1 {
28     color: #333;
29     line-height: 2em;
30 }
31
32 #header {
33     width: 800px;
34     margin: 0 auto;
35     padding: 16px;
36     color: #555;
37     font-size: 4em;
38 }
39
40 #header img {
41     float:right;
42 }
43
44 #content {
45     max-width: 800px;
46     margin: 0 auto;
47 }
48
49 #footer {
50     max-width: 800px;
51     margin: 0 auto;
52     margin-top: 128px;
53     font-size: 0.5em;
54     font-weight: bold;
55     color: #aaa;
56     padding: 8;
57 }
58
59 #footer a {
60     color: #999;
61 }
62
63
64 code, pre {
65     color: #204a87;
66     font-family: "Droid Sans Mono", "Liberation Mono", "Consolas", "DejaVu Sans Mono", monospace;
67 }
68