Changed all headers to <h1>
[mediagoblin.git] / mediagoblin / static / css / base.css
CommitLineData
881b6e2c
JS
1body {
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
10h1 {
11 font-family: 'Carter One', arial, serif;
12 margin-bottom: 20px;
13 margin-top:50px;
14}
15
223b410d 16.dotted_line {
881b6e2c
JS
17 width:100%;
18 height:0px;
19 border-bottom: dotted 1px #5f5f5f;
20 position:absolute;
21 left:0px;
22 margin-top:-20px;
23}
24
25a {
26 color: #d12929;
27 border-bottom: 1px dotted;
28 text-decoration: none;
29}
30
31.header {
32 width:100%;
33 height:60px;
34 background-image:url('header_back.png');
35 padding-top:40px;
36 margin-bottom:80px;
37}
38
39.container {
40 width: 800px;
41 margin-left: auto;
42 margin-right: auto;
43}
44
223b410d 45.button_red, .button_green {
881b6e2c
JS
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
223b410d
JS
63.button_red {
64 background-image: url('../images/button_red.png');
881b6e2c
JS
65}
66
223b410d
JS
67.button_green {
68 background-image: url('../images/button_green.png');
881b6e2c
JS
69}
70