Added header to base.html
[mediagoblin.git] / mediagoblin / static / css / base.css
1 body {
2 background-color: #272727;
3 background-image: url('back.png');
4 color: #f7f7f7;
5 font-family: sans;
6 padding:none;
7 margin:0px;
8 }
9
10 h1 {
11 font-family: 'Carter One', arial, serif;
12 margin-bottom: 20px;
13 margin-top:50px;
14 }
15
16 .dotted_line {
17 width:100%;
18 height:0px;
19 border-bottom: dotted 1px #5f5f5f;
20 position:absolute;
21 left:0px;
22 margin-top:-20px;
23 }
24
25 a {
26 color: #d12929;
27 border-bottom: 1px dotted;
28 text-decoration: none;
29 }
30
31 .mediagoblin_header {
32 width:100%;
33 height:60px;
34 background-image:url('../images/header_back.png');
35 padding-top:40px;
36 margin-bottom:80px;
37 }
38
39 .mediagoblin_content {
40 width: 800px;
41 margin-left: auto;
42 margin-right: auto;
43 }
44
45 .button_red, .button_green {
46 font-family: 'Carter One', arial, serif;
47 height: 28px;
48 min-width: 99px;
49 box-shadow: 0px 0px 5px #000;
50 border-radius: 5px;
51 border: none;
52 color: #272727;
53 margin: 10px;
54 font-size: 1em;
55 float: left;
56 display: block;
57 text-align: center;
58 padding-top: 4px;
59 padding-left:11px;
60 padding-right:11px;
61 }
62
63 .button_red {
64 background-image: url('../images/button_red.png');
65 }
66
67 .button_green {
68 background-image: url('../images/button_green.png');
69 }
70