This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
110 lines (100 loc) · 2.14 KB
/
index.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
<!doctype html>
<head>
<title>Ubilabs Project Template</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:300,100,700' rel='stylesheet' type='text/css'>
<style media="screen">
/**
* Resets
*/
*, :before, :after {
margin: 0;
padding: 0;
position: relative;
box-sizing: border-box;
}
/**
* Base
*/
html {
font: 112.5%/1.2 "Roboto", Arial, sans-serif;
color: #3d464d;
background-color: #fff;
font-weight: 300;
-webkit-font-smoothing: antialiased;
width: 100%;
height: 100%;
overflow: hidden-x;
text-align: center;
}
body {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%;
height: 100%;
}
.container {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 48rem;
max-width: 100%;
}
a {
color: #3d464d;
-webkit-transition: color 0.2s;
transition: color 0.2s;
}
a:hover, a:focus {
color: #267dc0;
}
h1 {
font-size: 72px;
font-size: 4rem;
font-weight: 100;
margin-bottom: .5em;
color: #267dc0;
}
.subheader {
font-weight: 300;
margin-bottom: 1.5em;
}
.footer {
font-weight: 300;
padding-top: 2em;
margin-top: 2em;
border-top: 1px solid #ccc;
}
.ubilabs {
vertical-align: middle;
}
.hint {
display: inline-block;
padding: 5px 10px;
border-radius: 3px;
background-color: #eee;
border: 1px solid #ccc
}
</style>
</head>
<body>
<div class="container">
<h1>Ubilabs Project Template</h1>
<div class="hint">
curl http://ubilabs.github.io/project-template/setup.sh | sh
</div>
<div class="footer">
<a href="https://github.com/ubilabs/project-template">View project on GitHub</a>. Made by <a href="http://www.ubilabs.net/en" title="Ubilabs"><img src="ubilabs.svg" alt="Ubilabs" class="ubilabs" width="100"></a>
</div>
</div>
</body>