]> arthur.barton.de Git - ngircd-web.git/blob - common/styles.css
ngIRCd release 19
[ngircd-web.git] / common / styles.css
1 html {
2         overflow-y: scroll;
3 }
4 body {
5         background-color: rgb(0,95,95);
6         font-family: "Trebuchet MS", sans-serif;
7 }
8
9 /* @group General */
10
11 div#bodyBox {
12         min-width: 25em;
13         max-width: 55em;
14         margin: 3em auto;
15         border: 1px solid gray;
16         background-color: white;
17 }
18
19 /* @end */
20
21 /* @group Header */
22
23 div#sloganhead {
24         text-align: center;
25 }
26 div#sloganhead p {
27         margin: 0.2em 0 1em 0;
28         color: rgb(150,150,150);
29 }
30
31 h1.titel {
32         font-size: 1.8em;
33         color: rgb(150,150,150);
34         margin-bottom:0;
35 }
36
37 h1.titel span {
38         color: #005555;
39 }
40
41 /* @end */
42
43 /* @group Navigation */
44
45 ul.nav {
46         margin: 0 auto;
47         padding: 0;
48         width: 51em;
49         text-indent: 0;
50 }
51
52 ul.nav li {
53         margin: 0;
54         padding: 0;
55         text-indent: 0;
56         background-image: url(bevel.gif);
57         background-repeat: repeat-x;
58         background-position: center;
59         width: 8em;
60         text-align: center;
61         list-style-type: none;
62         border: 1px solid #005555;
63         margin: 0.1em 0.1em;
64         float:left;
65 }
66
67 ul.nav li a {
68         font-family: sans-serif;
69         color: rgb(230,230,230);
70         display: block;
71         padding: 0.1em;
72         text-decoration: none;
73 }
74
75 ul.nav li a:link {
76 }
77
78 ul.nav li a:visited {
79 }
80
81 ul.nav li a:hover {
82         color: white;
83 }
84
85 /* @end */
86
87 /* @group Content */
88
89 h2,h3,h4 {
90         margin: 1.5em 0 0.2em 0;
91 }
92
93 div#content {
94         margin: 0.2em 3em;
95 }
96
97 a:link, a:visited {
98         text-decoration: underline;
99         color: #005555;
100 }
101
102 div#vertical_slide {
103         border: 1px solid gray;
104         padding: 1em;
105 }
106 div#preview samp {
107         font-family: Monaco,"Courier New", Courier, mono;
108         font-size: 0.9em;
109         color: rgb(65,65,65);
110         white-space: pre;
111 }
112
113 .btw {
114         border: 1px dotted silver;
115         padding: 1px 2px;
116 }
117
118 .security {
119         border: 1px solid silver;
120         padding: 1px 2px;
121         background-color: #fee;
122 }
123
124 /* @end */
125
126 /* @group Footer */
127
128 p#footer {
129         font-size: xx-small;
130         text-align: center;
131         margin-top: 5em;
132 }
133
134 /* @end */
135