]> git.ktnx.net Git - lsl.git/blob - public/css/style.css
first take at a Dancer2 app, some functions work
[lsl.git] / public / css / style.css
1
2 body {
3 margin: 0;
4 margin-bottom: 25px;
5 padding: 0;
6 background-color: #ddd;
7 background-image: url("/images/perldancer-bg.jpg");
8 background-repeat: no-repeat;
9 background-position: top left;
10
11 font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
12 font-size: 13px;
13 color: #333;
14 }
15
16 h1 {
17 font-size: 28px;
18 color: #000;
19 }
20
21 a  {color: #03c}
22 a:hover {
23 background-color: #03c;
24 color: white;
25 text-decoration: none;
26 }
27
28 #page {
29 background-color: #ddd;
30 width: 750px;
31 margin: auto;
32 margin-left: auto;
33 padding-left: 0px;
34 margin-right: auto;
35 }
36
37 #content {
38 background-color: white;
39 border: 3px solid #aaa;
40 border-top: none;
41 padding: 25px;
42 width: 500px;
43 }
44
45 #sidebar {
46 float: right;
47 width: 175px;
48 }
49
50 #header, #about, #getting-started {
51 padding-left: 75px;
52 padding-right: 30px;
53 }
54
55
56 #header {
57 background-image: url("/images/perldancer.jpg");
58 background-repeat: no-repeat;
59 background-position: top left;
60 height: 64px;
61 }
62 #header h1, #header h2 {margin: 0}
63 #header h2 {
64 color: #888;
65 font-weight: normal;
66 font-size: 16px;
67 }
68
69 #about h3 {
70 margin: 0;
71 margin-bottom: 10px;
72 font-size: 14px;
73 }
74
75 #about-content {
76 background-color: #ffd;
77 border: 1px solid #fc0;
78 margin-left: -11px;
79 }
80 #about-content table {
81 margin-top: 10px;
82 margin-bottom: 10px;
83 font-size: 11px;
84 border-collapse: collapse;
85 }
86 #about-content td {
87 padding: 10px;
88 padding-top: 3px;
89 padding-bottom: 3px;
90 }
91 #about-content td.name  {color: #555}
92 #about-content td.value {color: #000}
93
94 #about-content.failure {
95 background-color: #fcc;
96 border: 1px solid #f00;
97 }
98 #about-content.failure p {
99 margin: 0;
100 padding: 10px;
101 }
102
103 #getting-started {
104 border-top: 1px solid #ccc;
105 margin-top: 25px;
106 padding-top: 15px;
107 }
108 #getting-started h1 {
109 margin: 0;
110 font-size: 20px;
111 }
112 #getting-started h2 {
113 margin: 0;
114 font-size: 14px;
115 font-weight: normal;
116 color: #333;
117 margin-bottom: 25px;
118 }
119 #getting-started ol {
120 margin-left: 0;
121 padding-left: 0;
122 }
123 #getting-started li {
124 font-size: 18px;
125 color: #888;
126 margin-bottom: 25px;
127 }
128 #getting-started li h2 {
129 margin: 0;
130 font-weight: normal;
131 font-size: 18px;
132 color: #333;
133 }
134 #getting-started li p {
135 color: #555;
136 font-size: 13px;
137 }
138
139 #search {
140 margin: 0;
141 padding-top: 10px;
142 padding-bottom: 10px;
143 font-size: 11px;
144 }
145 #search input {
146 font-size: 11px;
147 margin: 2px;
148 }
149 #search-text {width: 170px}
150
151 #sidebar ul {
152 margin-left: 0;
153 padding-left: 0;
154 }
155 #sidebar ul h3 {
156 margin-top: 25px;
157 font-size: 16px;
158 padding-bottom: 10px;
159 border-bottom: 1px solid #ccc;
160 }
161 #sidebar li {
162 list-style-type: none;
163 }
164 #sidebar ul.links li {
165 margin-bottom: 5px;
166 }
167
168 h1, h2, h3, h4, h5 {
169 font-family: sans-serif;
170 margin: 1.2em 0 0.6em 0;
171 }
172
173 p {
174 line-height: 1.5em;
175 margin: 1.6em 0;
176 }
177
178 code, .filepath, .app-info {
179     font-family: 'Andale Mono', Monaco, 'Liberation Mono', 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', monospace;
180 }
181
182 #footer {
183 clear: both;
184 padding-top: 2em;
185 text-align: center;
186 padding-right: 160px;
187 font-family: sans-serif;
188 font-size: 10px;
189 }