aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/static/css/base.css
blob: d2bc92a009714a81023688cc37ad7b144cc1ff1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
    background-color: #272727;
    color: #f7f7f7;
    font-family: sans;
    padding:none;
    margin:0px;
}

/* Carter One font */

@font-face {
  font-family: 'Carter One';
  font-style: normal;
  font-weight: normal;
  src: local('CarterOne'), url('http://themes.googleusercontent.com/font?kit=VjW2qt1pkqVtO22ObxgEBRsxEYwM7FgeyaSgU71cLG0') format('woff');
}

/* text styles */

h1 {
    font-family: 'Carter One', arial, serif;
    margin-bottom: 20px;
    margin-top:50px;
}

a {
    color: #86D4B1;
}

label {
  font-weight: normal;
}

/* website structure */

.mediagoblin_header {
    width:100%;
    height:60px;
    background-color:#393939;
    padding-top:40px;
    margin-bottom:80px;
}

.icon {
    vertical-align:middle;
    margin-right:10px;
}

.mediagoblin_container {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.mediagoblin_header_right {
    float:right;
}

.button {
    font-family:'Carter One', arial, serif;
    height:32px;
    min-width:99px;
    background-color:#86d4b1;
    box-shadow:0px 0px 4px #000;
    border-radius:5px;
    border:none;
    color:#272727;
    margin:10px;
    font-size:1em;
    float:left;
    display:block;
    text-align:center;
    padding-left:11px;
    padding-right:11px;
}

/* common website elements */

.dotted_line {
    width:100%;
    height:0px;
    border-bottom: dotted 1px #5f5f5f;
    position:absolute;
    left:0px;
    margin-top:-20px;
}