1 | /* Styles for the mockup of a control panel for the Ubuntu Home Server */
|
---|
2 |
|
---|
3 | /* base styles */
|
---|
4 | body {
|
---|
5 | margin: 1%;
|
---|
6 | background-color: #796646;
|
---|
7 | font-family: sans;
|
---|
8 | }
|
---|
9 |
|
---|
10 | p {
|
---|
11 | margin: 0% 0% 0.5% 0%;
|
---|
12 | font-size: 0.9em;
|
---|
13 | }
|
---|
14 |
|
---|
15 | h1 {
|
---|
16 | font-size: 1.3em;
|
---|
17 | }
|
---|
18 |
|
---|
19 | h4 {
|
---|
20 | margin: 3% 0% 1% 0%;
|
---|
21 | border-bottom: solid 1px #000000;
|
---|
22 | }
|
---|
23 |
|
---|
24 | h5 {
|
---|
25 | margin: 1% 0 0 0;
|
---|
26 | }
|
---|
27 |
|
---|
28 | /* header */
|
---|
29 | .header_container{
|
---|
30 | background-color: #BD8453;
|
---|
31 | border-bottom: 0px solid black;
|
---|
32 | padding: 0.5%;
|
---|
33 | margin: 0.5% 0.5% 0.0% 0.5%;
|
---|
34 | border-left: solid 4px #BD8453;
|
---|
35 | border-right: solid 4px #BD8453;
|
---|
36 | border-top: solid 4px #BD8453;
|
---|
37 | }
|
---|
38 |
|
---|
39 | .header_logo_container{
|
---|
40 | float: right;
|
---|
41 | }
|
---|
42 |
|
---|
43 |
|
---|
44 | /* footer */
|
---|
45 | .footer_container {
|
---|
46 | font-size: .7em;
|
---|
47 | margin-top: 4px;
|
---|
48 | }
|
---|
49 |
|
---|
50 |
|
---|
51 | /* main section styles */
|
---|
52 | #main {
|
---|
53 | background-color: #ffffff;
|
---|
54 | margin-left: 0.5%;
|
---|
55 | margin-right: 0.5%;
|
---|
56 | margin-top: 0;
|
---|
57 | padding: 1%;
|
---|
58 | border-left: solid 4px #EAEADA;
|
---|
59 | border-right: solid 4px #EAEADA;
|
---|
60 | border-bottom: solid 4px #EAEADA;
|
---|
61 | }
|
---|
62 |
|
---|
63 | #main table {
|
---|
64 | margin: 0.5% 0 0 0;
|
---|
65 | }
|
---|
66 |
|
---|
67 | #main td {
|
---|
68 | padding: 1%;
|
---|
69 | }
|
---|