all repos — gemini-redirect @ 4e76ffb372acbefd1eed19ac74caf7f564084240

css/style.css (view raw)

 1::-moz-selection { 
 2    background-color: #FFAA00;
 3    color: #000000;
 4}
 5
 6::selection {
 7    background-color: #FFAA00;
 8    color: #000000;
 9}
10
11body {
12    background-color: #FFFFF0;
13}
14
15div {
16    max-width: 720px;
17    margin: 0 auto;
18}
19
20.body {
21    padding: 10px 20px;
22    border-radius: 4px;
23    background-color: #FFFFFF;
24    box-shadow: 5px 5px 10px #CCCCCC;
25}
26
27h1 {
28    text-align: center;
29    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
30    font-size: 2.5em;
31    font-weight: lighter;
32}
33
34p, li {
35    font-family: Tahoma, Geneva, sans-serif;
36    font-size: 1.1em;
37}
38
39a {
40    text-decoration: none;
41    transition: color 300ms, border-bottom 300ms;
42    color: #00AAFF;
43}
44
45a:hover {
46    color: #44CCFF;
47}
48
49.menu {
50    margin-top: 40px;
51}
52
53.menu ul {
54    list-style-type: none;
55    margin: 0;
56    padding: 0;
57    margin-bottom: 8px;
58}
59
60.menu li {
61    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
62    display: inline;
63    margin: 0 -4px;
64    font-size: 1.3em;
65}
66
67.menu a {
68    color: #787878;
69    border-bottom: solid 2px #A8A8A8;
70    padding: 0 8px;
71}
72
73.menu a.selected, .menu a:hover {
74    color: #000000;
75    border-bottom: solid 2px #444444;
76}
77
78dl img {
79    margin-bottom: -0.4em;
80    margin-right: 0.6em;
81}
82
83dd {
84    margin-bottom: 1em;
85}