all repos — gemini-redirect @ a8f0cda188a693776bdf30cd4b72bfcdf721e0ad

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, h2 {
28    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
29    font-size: 200%;
30    font-weight: lighter;
31    text-transform: capitalize;
32}
33
34h1 {
35    text-align: center;
36}
37
38p, li, dl {
39    font-family: Tahoma, Geneva, sans-serif;
40    font-size: 1.1em;
41}
42
43a {
44    text-decoration: none;
45    transition: color 300ms, border-bottom 300ms;
46    color: #00AAFF;
47}
48
49a:hover {
50    color: #44CCFF;
51}
52
53.menu {
54    margin-top: 40px;
55}
56
57.menu ul {
58    list-style-type: none;
59    margin: 0;
60    padding: 0;
61    margin-bottom: 8px;
62}
63
64.menu li {
65    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
66    display: inline;
67    margin: 0 -4px;
68    font-size: 1.3em;
69}
70
71.menu a {
72    color: #787878;
73    border-bottom: solid 2px #A8A8A8;
74    padding: 0 8px;
75}
76
77.menu a.selected, .menu a:hover {
78    color: #000000;
79    border-bottom: solid 2px #444444;
80}
81
82dl img {
83    margin-bottom: -0.4em;
84    margin-right: 0.6em;
85}
86
87dd {
88    margin-bottom: 1em;
89}