]> git.sur5r.net Git - cc65/blob - cc65.css
Merge pull request #13 from greg-king5/gh-lightpen
[cc65] / cc65.css
1 body {
2     font-family:        arial, helvetica, sans-serif;
3     font-size:          100%;
4     text-align:         justify;
5     margin-left:        110px;
6     margin-top:         10px;
7     margin-right:       30px;
8     margin-bottom:      10px;
9     color:              #000000;
10     background-image:   url(image/cc65-bg.png);
11     background-repeat:  repeat-y;
12     background-color:   #FFFFFF;
13 }
14 a:active {
15     color:              #FF0000;
16     text-decoration:    underline;
17 }
18 a:link {
19     color:              #0000FF;
20     text-decoration:    underline;
21 }
22 a:visited {
23     color:              #000080;
24     text-decoration:    underline;
25 }
26
27 /* title menu */
28 div#menu {
29     clear:              both;
30     width:              100%;
31     padding:            0px;
32     border-top:         1px solid #808080;
33     border-bottom:      1px solid #808080;
34 }
35 div#innermenu {
36     display:            table;
37     margin-left:        auto;
38     margin-right:       auto;
39     padding:            0px;
40 }
41 div#menu ul {
42     margin:             0px;
43     padding:            4px;
44     list-style-type:    none;
45     white-space:        nowrap;
46 }
47 div#menu li {
48     display:            inline;
49 }
50 div#menu a {
51     margin:             0px 3px 0px 3px;
52     padding:            1px 1em 1px 1em;
53     border:             1px solid #303030;
54     text-decoration:    none;
55     width:              160px;
56 }
57 div#menu a:link, div#menu a:visited, div#menu a:active {
58     background-color:   #909090;
59     color:              #000000;
60 }
61 div#menu a:hover {
62     color:              #DB3232;
63     background-color:   #FFFFFF;
64 }
65 li#here a:link, li#here a:visited, li#here a:active {
66     background-color:   #909090;
67     color:              #DB3232;
68 }
69 li#here a:hover {
70     background-color:   #909090;
71     color:              #DB3232;
72 }
73
74 h1 {
75     text-align:         left;
76     font-size:          250%;
77     font-weight:        bold;
78     font-style:         italic;
79     text-shadow:        2px 2px 6px #505050;
80     letter-spacing:     2px;
81     color:              #DB3232;
82     padding-top:        40px;
83 }
84
85 h2 {
86     text-align:         left;
87     font-size:          160%;
88     font-weight:        bold;
89     font-style:         italic;
90     text-shadow:        2px 2px 6px #303030;
91     letter-spacing:     1px;
92     color:              #DB3232;
93     margin-top:         2em;
94     margin-bottom:      1em;
95 }
96
97 p {
98     clear:              both;
99 }
100
101 pre {
102     font-family:        monospace;
103 }
104
105 a img {
106     border:             0px;
107 }
108
109 ul.bullet {
110     margin-left:        2%;
111     list-style-image:   url(image/dot.png);
112 }
113
114 ul.down {
115     margin-left:        2%;
116     list-style-image:   url(image/downtria.png);
117 }
118
119 ul.right {
120     margin-left:        2%;
121     list-style-image:   url(image/triangle.png);
122 }
123
124 ul ul {
125     list-style-image:   none;
126 }
127
128 /* box made like a banner */
129 div.banner {
130     border:             2px solid #808080;
131     width:              80%;
132     clear:              both;
133     padding-left:       2em;
134     padding-right:      2em;
135     padding-top:        1em;
136     padding-bottom:     1em;
137     margin-left:        auto;
138     margin-right:       auto;
139     margin-top:         1em;
140     margin-bottom:      1em;
141 }