initial commit
[emacs-init.git] / nxhtml / nxhtml / doc / wd / grapes / grapes.css
1 /* Grapes, web template for business or for fun */
2 /* By Dave Reeder, www.davereederdesign.com */
3
4 body {margin: 0; padding: 0; background: #213205}
5
6 * {margin: 0; padding: 0; border: 0; font-family:  Arial, Helvetica, sans-serif}
7
8
9 /*----------------------------------------------Basic styles------------------------------------------------*/
10
11 h1, h2, h3, h4 {font-family: Georgia, Georgia, serif; margin: 15px 0 0 5px; color: #fff; font-weight: normal; text-decoration: none}
12 h1 em, h2 em, h3 em, h4 em {font-family: Georgia, Georgia, serif; font-weight: normal}  /* italic words in titles */
13
14 h1 {position: absolute; right: 0px; top: 30px; font-size: 2.25em; letter-spacing: 0.1em; line-height: 1.00em; padding-right: 10px; border-right: 15px solid #fff}
15 h1:first-letter {font-family: Georgia, Georgia, serif; font-size: 2.25em} /* styles the first letter of the main title to make it large */
16
17 p#tagline {position: absolute; right: 0px; top: 125px; font-style: italic; color: #648D20; font-size: 0.90em}  /* sits under main title */
18
19 h2 {font-size: 1.30em; letter-spacing: 0.05em}
20
21 p, ul, ol {margin: 10px 10px 0 7px; font-size: 0.70em; line-height: 1.60em; color: #000; letter-spacing: 0.05em}
22
23 code {font-family: monospace; font-size: 1.20em; color: #E20000}
24
25 p span {font-size: 1.50em; font-weight: bold} /* shouting words */
26
27 a:link, a:visited {color: #792533; font-weight: bold; text-decoration: none; border-bottom: 1px solid #792533}
28 a:hover, a:active {color: #fff; border-color: #fff}
29
30 ul {list-style: inside square} /* general lists */
31
32 acronym {font-weight: bold; border-bottom: 1px dashed #000; cursor: help}
33
34
35 /*-----------------------------------------------Layout DIVS------------------------------------------------*/
36
37 #container {  /* keeps everything together */
38 position: relative; 
39 margin: 0 auto; 
40 width: 620px; 
41 background: url(images/bkgrnd.gif) 0 0 repeat-y #CCCC33;  /* Important image, do not remove */
42 overflow: hidden
43 }
44
45 #hdr {  /* div containing h1, nav and grapes image */
46 float: left; 
47 width: 620px; 
48 height: 200px; 
49 background: url(images/grapes.jpg) 0 0 no-repeat #CCCC33  /* Image of Grapes */
50 }
51
52 #lftcol {   /* left column */
53 position: absolute;
54 left: 0px;
55 top: 200px;
56 margin-left: 50px;  /* leave this so that background image lines up with edge of this div */
57 width: 200px; 
58 background: transparent;
59 overflow: hidden
60 }
61
62 #rgtcol {float: right; width: 370px; padding-bottom: 30px; background: transparent; overflow: hidden}  /* right column */
63
64 #bttmbar {float: right; text-align: center; font-size: 0.70em; height: 4em; line-height: 4em; width: 570px; background: #CCCC33; border-top: 1px solid #D9D93C}
65
66 #quote {    /* Quote box in left column */
67         float: left;
68         margin: 10px 0 20px 10px;
69         padding: 10px 0;
70         width: 170px;
71         text-align: center;
72         background: url(images/quote.gif) no-repeat 0 0 
73 }
74
75 #quote p {color: #444; font-size: 0.80em; font-weight: bold; line-height: 2.00em}  /* Quote box text */
76
77
78 /*---------------------------------------------Main Navigation-----------------------------------------------*/
79
80 ul#nav {   /* navigation list */
81         margin: 53px 0 20px 0; /* the 53px is where the nav begins (margin top) */
82         padding: 0;
83         list-style: none inside
84 }
85         
86 ul#nav li {float: left; display: block}
87
88 ul#nav li a {
89         width: 170px;
90         margin: 3px 0 0 0;  /* a little top margin */
91         border: 0;
92         border-left: 10px solid #CCCC33;
93         padding: 10px 5px;
94         font-family: Georgia, Georgia, serif;
95         font-weight: normal;
96         text-decoration: none;
97         display: block;
98         color: #450F1F;
99         background: #D9D93C
100 }
101
102 ul#nav li a#current {border-color: #fff}   /* current page, move id in the xhtml when creating a new page */
103
104 ul#nav li a:hover {background: #9EA219; color: #fff}
105
106
107