-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
190 lines (163 loc) · 4.37 KB
/
intro.html
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Crater – UI Library for Meteor.js</title>
<link href="http://fonts.googleapis.com/css?family=Racing+Sans+One:400&subset=latin" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:700,400&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<style type="text/css">
html, body {
margin: 0px auto;
padding: 0px auto;
min-height: 100%;
height: 100%;
}
body {
background-color: #000810;
background-image: url('./pattern.png');
color: #c0c0c0;
font-family: 'Open Sans', sans-serif;
}
.content {
/*background: rgba(0,0,0,0.25);*/
/*box-shadow: 0px 0px 20px rgba(0,0,0,0.5);*/
/*//100px 0px 100px -100px rgba(0,0,0,0.25) inset,*/
/*-100px 0px 100px -100px rgba(0,0,0,0.25) inset;*/
padding: 0px 50px;
width: 700px;
margin: 0px auto;
text-align: center;
min-height: 100%;
}
.promo {
color: #c0c0c0;
text-align: justify;
/*margin-bottom: -128px;*/
font-family: 'Racing Sans One';
text-shadow: 0px 10px 10px rgba(0,0,0,0.5);
}
.huge {
font-size: 128px;
height: 160px;
overflow: hidden;
}
.big {
font-size: 48px;
height: 96px;
border-bottom: 2px solid #c0c0c0;
}
.little {
padding-top: 24px;
font-size: 20px;
line-height: 48px;
text-align: center;
margin-bottom: 96px;
letter-spacing: 0.2ex;
}
.icon-row {
margin-left: -50px;
}
.icon-clear {
height: 50px;
clear: both;
}
.box, .icon, .panel {
display: block;
float: left;
box-shadow: 0px 0px 10px rgba(0,8,16,0.5) inset;
font-family: 'Racing Sans One';
color: #000810;
margin-left: 50px;
font-size: 20px;
border-radius: 5px;
border-top-left-radius: 35px;
border-bottom-right-radius: 35px;
}
.icon {
width: 200px;
height: 50px;
line-height: 50px;
}
.box {
width: 450px;
background: #f0f0f0;
height: 250px;
/*text-align: left;*/
font-size: 12px;
/*font-family: sans-serif;*/
}
.line {
font-size: 16px;
/*padding: 0px 50px;*/
/*text-align: left;*/
line-height: 95px;
}
.code {
font-family: monospace;
/*padding: 0px 100px;*/
/*text-align: left;*/
line-height: 30px;
}
.panel {
width: 200px;
height: 100px;
line-height: 100px;
background: #a0a0a0;
margin-bottom: 50px;
}
.panel:hover {
background: #fffff0;
}
.red {
background: #ffc0c0;
}
.yellow {
background: #ffffc0;
}
.blue {
background: #c0d8ff;
}
</style>
</head>
<body><div class="content">
<div class="huge promo">C R A T E R </div>
<div class="big promo">
L a n d s c a p e o n M e t e o r
</div>
<div class="little promo">
A collection of reusable UI elements for Meteor.js applications<br/>
• Powerful forms • Flexible modals • Handy utilities •
</div>
<!-- <div class="icon-row">
<div class="icon red">Powerful forms</div>
<div class="icon yellow">Flexible modals</div>
<div class="icon blue">Handy UI utilities</div>
<div class="icon-clear"></div>
</div>
-->
<!-- <div class="logo">
Logo
</div> -->
<!-- <div class="box">
<div class="box-head">What?</div>
<p>Crater is a collection of reusable UI elements for Meteor.js applications.</p>
<p>Included ara powerful forms, flexible overlays and several small handy utilities.</p>
</div> -->
<div class="icon-row">
<div class="box">
<div class="line">To add Crater to your Meteor project, simply run</div>
<div class="code">mrt add crater</div>
<div class="code">mrt add crater-style</div>
<div class="line">For advanced installation options, see documentation.</div>
</div>
<a class="panel">Documentation</a>
<a class="panel">GitHub</a>
</div>
<!--
<div class="icon-row">
<div class="icon">Documentation</div>
<div class="icon">Github</div>
</div> -->
</div></body>
</html>