-
Notifications
You must be signed in to change notification settings - Fork 1
/
newindex.html
94 lines (86 loc) · 2.22 KB
/
newindex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
@font-face{
font-family: FontinSans;
src: url("font/Fontin_Sans_R_45b.otf") format("opentype");
}
html, body {
height: 100%;
padding: 0;
margin: 0;
}
body {
background: url(img/bridge.jpg);
background-size: cover;
}
img {
position: absolute;
top: 10%;
left: 0;
}
#nav {
/*display: inline-block;*/
float: right;
padding: 24px 24px;
/*background-color: rgba(0, 51, 90, 0.8);*/
/*font-family: "Calibri Light";*/
font-family: "FontinSans";
font-size: 2rem;
margin-top: 10%;
margin-right: 30px;
border-radius: 10px;
}
#nav span {
padding: 24px 24px;
}
#nav span:hover {
cursor: pointer;
/*background-color: #ccb79a;*/
}
#nav span:hover a{
color: black;
}
#notb{
position: relative;
top: 65%;
width: 60rem;
margin: 0 auto;
color: #de3d11;
font-size: 5rem;
/*font-family: "Calibri";*/
font-style: italic;
font-weight: bold;
background-color: rgba(29,39,49, 0.75);
text-align: center;
border-radius: 10px;
}
div.overlay{
height: 100%;
/*background-color: #dcc7aa;*/
/*opacity: 0.7;*/
background-color: rgba(220, 199, 170, 0.7);
z-index: 12;
}
#nav>span>a{
text-decoration: none;
color: #de3d11;
}
</style>
</head>
<body>
<div class="overlay">
<img src="img/notb.png">
<div id="nav">
<span><a href="intro.html">intro</a></span>
<span><a href="vision.html">vision</a></span>
<span><a href="about.html">about us</a></span>
<span><a href="stat.html">statement of faith</a></span>
</div>
<!--<div id="notb">North of the Border</div>-->
</div>
</body>
</html>