replaced lua pages by html pages
[psensor.git] / www / style.css
1 body {
2     font-family: Ubuntu, 'Bitstream Ver Sans', 'DejaVu Sans', 'Tahoma', sans-serif;
3     color: #333333;
4     font-size: 12px;
5     font-height: 16px;
6     margin: 0;
7     padding: 0;
8
9     background-color: #f0f0f0;
10 }
11
12 .page {
13     background-color: #ffffff;
14     margin-top: 20px;
15     margin-left: 20px;
16     margin-right: 20px;
17     color: #333333;
18     border-radius: 8px 8px 0px 0px;
19     border: 3px #aea79f solid;
20     box-shadow: 2px 2px 2px #333333; 
21 }
22
23 .page-header {
24     padding-left: 20px;
25     padding-right: 20px;
26     margin-top: 20px;
27     margin-bottom: 20px;
28 }
29
30 .page-content {
31     margin-left: 20px;
32     margin-right: 20px;
33     margin-top: 20px;
34     margin-bottom: 40px;
35     padding-top: 20px;
36     padding-bottom: 20px;
37     padding-left: 60px;
38     padding-right: 60px;
39     background-color: #f7f7f7;
40     border-radius: 4px 4px 4px 4px;
41 }
42
43 .page-footer {
44     margin-left: 20px;
45     margin-right: 20px;
46     margin-bottom: 20px;
47     margin-top: 2px;
48     padding-left: 20px;
49     padding-top: 8px;
50     padding-bottom: 8px;
51     background-color: #aea79f;
52     border-radius: 0px 0px 4px 4px;
53     font-size: 10px;
54     line-height: 14px;
55     color: #333333;
56 }
57
58 h1 {
59     font-size: 36px;
60     line-height: 40px;
61     font-weight: normal;
62     color: #333333;
63     margin: 0;
64 }
65
66 h2 {
67     font-size: 24px;
68     line-height: 28px;
69     font-weight: normal;
70     color: #333333;
71     margin-top: 16px;
72     margin-bottom: 8px;
73 }
74
75 p {
76     font-size: 12px;
77     line-height: 16px;
78     color: #333333;
79     margin-bottom: 8px;
80 }
81
82 table {
83         text-align: left;
84         width: 100%;
85         padding-left: 8px;
86         padding-right: 8px;
87 }
88
89 thead {
90     background-color: #aea79f;
91     font-size: 12px;
92     line-height: 16px;
93     color: #ffffff;
94     font-weight: bold;
95     padding-top: 4px;
96     padding-bottom: 4px;
97 }
98
99 tbody {
100     font-size: 12px;
101     line-height: 16px;
102     color: #333333;
103     padding-top: 4px;
104     padding-bottom: 4px;
105 }
106
107 th, td {
108     padding: 4px 4px 4px 4px;
109 }
110
111 .page-footer a:link , .page-footer a:visited, .page-footer a:active {
112     text-decoration: none;
113     color: #333333;
114 }
115
116 .page-footer a:hover {
117     text-decoration: underline;
118     color: #333333;
119 }
120
121 tr {
122     padding-left: 30px;
123 }