e62f823940d7e49c971fef1a9a5d4bfe1b7ef00f
[selectricity-live] / vendor / plugins / login_engine / public / stylesheets / login_engine.css
1 /*
2
3   This CSS file is basically the scaffold.css file, and is only
4   included here to demonstrate using CSS files with Engines.
5
6 */
7
8 body { background-color: #fff; color: #333; }
9
10 body, p, ol, ul, td {
11   font-family: verdana, arial, helvetica, sans-serif;
12   font-size:   13px;
13   line-height: 18px;
14 }
15
16 pre {
17   background-color: #eee;
18   padding: 10px;
19   font-size: 11px;
20 }
21
22 a { color: #000; }
23 a:visited { color: #666; }
24 a:hover { color: #fff; background-color:#000; }
25
26 .fieldWithErrors {
27   padding: 2px;
28   background-color: red;
29   display: table;
30 }
31
32 #ErrorExplanation {
33   width: 400px;
34   border: 2px solid red;
35   padding: 7px;
36   padding-bottom: 12px;
37   margin-bottom: 20px;
38   background-color: #f0f0f0;
39 }
40
41 #ErrorExplanation h2 {
42   text-align: left;
43   font-weight: bold;
44   padding: 5px 5px 5px 15px;
45   font-size: 12px;
46   margin: -7px;
47   background-color: #c00;
48   color: #fff;
49 }
50
51 #ErrorExplanation p {
52   color: #333;
53   margin-bottom: 0;
54   padding: 5px;
55 }
56
57 #ErrorExplanation ul li {
58   font-size: 12px;
59   list-style: square;
60 }
61
62 div.uploadStatus {
63   margin: 5px;
64 }
65
66 div.progressBar {
67   margin: 5px;
68 }
69
70 div.progressBar div.border {
71   background-color: #fff;
72   border: 1px solid grey;
73   width: 100%;
74 }
75
76 div.progressBar div.background {
77   background-color: #333;
78   height: 18px;
79   width: 0%;
80 }
81

Benjamin Mako Hill || Want to submit a patch?