Added actual image
[mediagoblin.git] / mediagoblin / static / css / base.css
CommitLineData
881b6e2c
JS
1body {
2 background-color: #272727;
881b6e2c
JS
3 color: #f7f7f7;
4 font-family: sans;
5 padding:none;
6 margin:0px;
7}
8
cb1e4a3d
JS
9/* Carter One font */
10
11@font-face {
12 font-family: 'Carter One';
13 font-style: normal;
14 font-weight: normal;
15 src: local('CarterOne'), url('http://themes.googleusercontent.com/font?kit=VjW2qt1pkqVtO22ObxgEBRsxEYwM7FgeyaSgU71cLG0') format('woff');
16}
17
18/* text styles */
19
881b6e2c
JS
20h1 {
21 font-family: 'Carter One', arial, serif;
22 margin-bottom: 20px;
23 margin-top:50px;
24}
25
881b6e2c 26a {
7e199c9c 27 color: #86D4B1;
881b6e2c
JS
28}
29
983aa712
JS
30label {
31 font-weight: normal;
32}
33
34/* website structure */
35
4a0f823e 36.mediagoblin_header {
881b6e2c
JS
37 width:100%;
38 height:60px;
265c19ae 39 background-color:#393939;
881b6e2c
JS
40 padding-top:40px;
41 margin-bottom:80px;
42}
43
2f4d0584
JS
44.icon {
45 vertical-align:middle;
46 margin-right:10px;
47}
48
4a0f823e 49.mediagoblin_content {
a7b9c65e 50 width: 960px;
881b6e2c
JS
51 margin-left: auto;
52 margin-right: auto;
53}
54
223b410d 55.button_red, .button_green {
881b6e2c
JS
56 font-family: 'Carter One', arial, serif;
57 height: 28px;
58 min-width: 99px;
59 box-shadow: 0px 0px 5px #000;
60 border-radius: 5px;
61 border: none;
62 color: #272727;
63 margin: 10px;
64 font-size: 1em;
65 float: left;
66 display: block;
67 text-align: center;
68 padding-top: 4px;
69 padding-left:11px;
70 padding-right:11px;
71}
72
983aa712
JS
73/* common website elements */
74
75.dotted_line {
76 width:100%;
77 height:0px;
78 border-bottom: dotted 1px #5f5f5f;
79 position:absolute;
80 left:0px;
81 margin-top:-20px;
82}
83
223b410d
JS
84.button_red {
85 background-image: url('../images/button_red.png');
881b6e2c
JS
86}
87
223b410d
JS
88.button_green {
89 background-image: url('../images/button_green.png');
881b6e2c
JS
90}
91