-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 3.37 KB
/
index.html
File metadata and controls
78 lines (77 loc) · 3.37 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>BlueBrain | bluebrainc</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<style type="text/css">
*{font-family: 'Varela Round', sans-serif; text-align: center;
text-shadow:
1px 1px 0 rgba(0, 0 , 0, 1.0),
2px 2px 0 rgba(255, 255, 255, 0.999),
3px 3px 0 rgba(0, 0 , 0, 0.966),
4px 4px 0 rgba(255, 255, 255, 0.933),
3px 3px 0 rgba(0, 0 , 0, 0.899),
4px 4px 0 rgba(255, 255, 255, 0.866),
5px 5px 0 rgba(0, 0 , 0, 0.833),
6px 6px 0 rgba(255, 255, 255, 0.799),
7px 7px 0 rgba(0, 0 , 0, 0.766),
8px 8px 0 rgba(255, 255, 255, 0.733),
9px 9px 0 rgba(0, 0 , 0, 0.699),
10px 10px 0 rgba(255, 255, 255, 0.666),
11px 11px 0 rgba(0, 0 , 0, 0.633),
12px 12px 0 rgba(255, 255, 255, 0.599),
13px 13px 0 rgba(0, 0 , 0, 0.566),
14px 14px 0 rgba(255, 255, 255, 0.533),
15px 15px 0 rgba(0, 0 , 0, 0.499),
16px 16px 0 rgba(255, 255, 255, 0.466),
17px 17px 0 rgba(0, 0 , 0, 0.433),
18px 18px 0 rgba(255, 255, 255, 0.399),
19px 19px 0 rgba(0, 0 , 0, 0.366),
20px 20px 0 rgba(255, 255, 255, 0.333),
21px 21px 0 rgba(0, 0 , 0, 0.299),
22px 22px 0 rgba(255, 255, 255, 0.266),
23px 23px 0 rgba(0, 0 , 0, 0.233),
24px 24px 0 rgba(255, 255, 255, 0.199),
25px 25px 0 rgba(0, 0 , 0, 0.166),
26px 26px 0 rgba(255, 255, 255, 0.133),
27px 27px 0 rgba(0, 0 , 0, 0.099),
28px 28px 0 rgba(255, 255, 255, 0.066),
29px 29px 0 rgba(0, 0 , 0, 0.033),
30px 30px 0 rgba(255, 255, 255, 0.0); /*that's totally useless*/
}
html, body{
width:99%;
height:99%;
}
body{
background: #ffffff; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #000000 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#000000)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#000000 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#000000 100%); /* IE10+ */
background: radial-gradient(ellipse at center, #ffffff 0%,#000000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#containter {
height: 100%;
width:100%;
display: flex;
/* flex-direction: column;*/
align-items: center;
/* justify-content: center;*/
}
#content{
width:100%;
}
</style>
</head>
<body>
<div id="containter">
<div id="content">
<h1>BlueBrain | bluebrainc</h1>
<p>Welcome.</p>
</div>
</div>
</body>
</html>