This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
93 lines (93 loc) · 3.08 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
<html>
<head>
<title>Brave Collective</title>
<style type="text/css">
body
{
background-image:url("images/light-background.jpg");
background-repeat: no-repeat;
background-color: #cccccc;
background-position: center center fixed;
background-size:cover;
color:#FFFFFF;
}
.button-link {
padding: 10px 15px;
background: #4479BA;
color: #FFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border: solid 1px #20538D;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
transition-duration: 0.2s;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
text-decoration: none;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin-left:auto;
margin-right:auto;
}
.button-link:hover {
background: #356094;
border: solid 1px #2A4E77;
text-decoration: none;
}
.button-link:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
background: #2E5481;
border: solid 1px #203E5F;
}
.centered {
margin-left: auto;
margin-right: auto;
display: block;
}
header {
position: relative;
display: inline-block;
text-align: center;
padding-left: 60px;
margin-bottom: 40px;
font-family: 'Open Sans', sans-serif;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
font-size: 24px;
color: #eee;
-webkit-font-smoothing: antialiased;
height: auto;
line-height: 20px;
font-weight: 900;
text-rendering: optimizelegibility;
text-transform: uppercase;
margin-bottom: 40px;
width:800px;
}
</style>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="mainContent" style="margin-top:100px;">
<!--<div class="centered" style="text-align:center;"><h1><span style="font-weight:bold;">BRAVE</span> COLLECTIVE<br />NEXUS</h1></div>-->
<!-- I don't know what you did to get your font to look the way it does on core services, but I give up. -->
<header class="centered">
<h1>Brave<span style="font-weight:normal;"> Collective</span></h1>
<h2 style="font-weight:lighter;">Nexus</h2>
</header>
<div class="centered" style="width:850px;">
<a href="guide.html" class="button-link">Brave, New, and Lost - The Brave Guide</a>
<a href="bravefaq.html" class="button-link">The Brave FAQ</a>
<a href="https://www.youtube.com/watch?v=S21-FS8b6uI" class="button-link">Brave History</a>
<a href="https://core.braveineve.com/" class="button-link">The Brave Secure Area</a>
</div>
</div>
</body>
</html>