-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathmarketing.css
121 lines (103 loc) · 2.1 KB
/
marketing.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0 auto;
line-height: 1.7em;
}
.l-box {
padding: 1em;
}
.header {
margin: 0 0;
}
.header .pure-menu {
padding: 0.5em;
}
.header .pure-menu li a:hover,
.header .pure-menu li a:focus {
background: none;
border: none;
color: #aaa;
}
body .primary-button {
background: #02a6eb;
color: #fff;
}
.splash {
margin: 2em auto 0;
padding: 3em 0.5em;
background: #eee;
}
.splash .splash-head {
font-size: 300%;
margin: 0em 0;
line-height: 1.2em;
}
.splash .splash-subhead {
color: #999;
font-weight: 300;
line-height: 1.4em;
}
.splash .primary-button {
font-size: 150%;
}
.content .content-subhead {
color: #999;
padding-bottom: 0.3em;
text-transform: uppercase;
margin: 0;
border-bottom: 2px solid #eee;
display: inline-block;
}
.content .content-ribbon {
margin: 3em;
border-bottom: 1px solid #eee;
}
.ribbon {
background: #eee;
text-align: center;
padding: 2em;
color: #999;
}
.ribbon h2 {
display: inline;
font-weight: normal;
}
.footer {
background: #111;
color: #666;
text-align: center;
padding: 1em;
font-size: 80%;
}
.pure-button-success,
.pure-button-error,
.pure-button-warning,
.pure-button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.pure-button-success {
background: rgb(28, 184, 65); /* this is a green */
}
.pure-button-error {
background: rgb(202, 60, 60); /* this is a maroon */
}
.pure-button-warning {
background: rgb(223, 117, 20); /* this is an orange */
}
.pure-button-secondary {
background: rgb(66, 184, 221); /* this is a light blue */
}
.content .content-quote {
font-family: "Georgia", serif;
color: #666;
font-style: italic;
line-height: 1.8em;
border-left: 5px solid #ddd;
padding-left: 1.5em;
}