Go live.
[readifood.git] / www / style.css
1 body {
2   font-family: Helvetica, Arial;
3   margin: 0px;
4 }
5
6 #header {
7   top: 0px;
8   left: 0px;
9   width: 100%;
10   background-image: url(logo.png);
11   background-color: #007d00;
12   background-repeat: no-repeat;
13   padding: 0.5em;
14   padding-left: 56px;
15   margin: 0px;
16   font-size: 16pt;
17   box-shadow: 0px 4px 8px 2px black;
18 }
19
20 #header > a {
21   color: white;
22 }
23
24 #main {
25   margin: 0.5em;
26 }
27
28 .button {
29   background-color: #2040cc;
30   border-radius: 32px;
31   padding-top: 16px;
32   padding-bottom: 16px;
33   padding-left: 32px;
34   padding-right: 32px;
35   margin: 32px;
36   box-shadow: 4px 4px 8px 2px black;
37 }
38
39 .button > a {
40   color: white;
41 }
42
43 a {
44   text-decoration: none;
45 }
46
47 a:hover {
48   text-decoration: underline;
49 }
50
51 a.delete {
52   color: darkred;
53 }
54
55 .strong {
56   font-weight: bold;
57 }
58
59 .small {
60   font-size: 75%;
61 }