Skip to content

Commit e3158d2

Browse files
committed
Create website
0 parents  commit e3158d2

File tree

6 files changed

+337
-0
lines changed

6 files changed

+337
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
firebase-debug.log*
8+
9+
# Firebase cache
10+
.firebase/
11+
12+
# Firebase config
13+
14+
# Uncomment this if you'd like others to create their own Firebase project.
15+
# For a team working on the same Firebase project(s), it is recommended to leave
16+
# it commented so all members can deploy to the same project(s) in .firebaserc.
17+
# .firebaserc
18+
19+
# Runtime data
20+
pids
21+
*.pid
22+
*.seed
23+
*.pid.lock
24+
25+
# Directory for instrumented libs generated by jscoverage/JSCover
26+
lib-cov
27+
28+
# Coverage directory used by tools like istanbul
29+
coverage
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (http://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
49+
# Optional npm cache directory
50+
.npm
51+
52+
# Optional eslint cache
53+
.eslintcache
54+
55+
# Optional REPL history
56+
.node_repl_history
57+
58+
# Output of 'npm pack'
59+
*.tgz
60+
61+
# Yarn Integrity file
62+
.yarn-integrity
63+
64+
# dotenv environment variables file
65+
.env

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Website for ScoreFall.com

html/404.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>ScoreFall</title>
7+
<link rel="icon" href="icon.png">
8+
<style>
9+
html {
10+
background: #FFF;
11+
border-image-width: 0px;
12+
}
13+
body {
14+
display: flex;
15+
flex-flow: column;
16+
height: 100vh;
17+
}
18+
body, h1, h2, h3, h4, h5, h6, p {
19+
margin: 0px;
20+
padding: 0px;
21+
border: 0px;
22+
}
23+
p {
24+
margin-top: 14px;
25+
min-height: 0px;
26+
}
27+
body .header {
28+
background: #BDCFDD;
29+
margin: 0px;
30+
padding: 0px;
31+
border: 0px;
32+
border-image-width: 0px;
33+
flex: 0 1 auto;
34+
height: 54px;
35+
display:flex;
36+
}
37+
img {
38+
margin: 0px;
39+
padding: 0px;
40+
border: 0px;
41+
display: block;
42+
}
43+
body .page {
44+
margin: 10px auto;
45+
padding: 24px;
46+
border-radius: 24px;
47+
width: auto;
48+
max-width: 1200px;
49+
border: 3px solid #0002;
50+
background: #edffdd;
51+
}
52+
body .content {
53+
overflow-y: scroll;
54+
flex: 1 1 auto;
55+
display: flex;
56+
flex-flow: column;
57+
}
58+
input {
59+
-moz-box-sizing: content-box;
60+
-webkit-box-sizing: content-box;
61+
box-sizing: content-box;
62+
}
63+
</style>
64+
</head>
65+
<body>
66+
<div class="header"><a href="https://scorefall.com"><img src="icon.png" height="100%" width="54px" style="margin-left:4px;margin-right:4px"/></a><input type="search" placeholder="Search..." style="margin-top:13.5px;width:230px;height:27px;border:0px solid black;border-radius:5px;border-left:5px solid white;border-right:5px solid white"/>
67+
<div style="flex: 1 1 auto;"></div>
68+
<button style="width:108px;background:#0000;font-weight:bold;font-size:1.4em;border:0">Sign In</button>
69+
</div>
70+
<div class="content">
71+
<div>
72+
<div class="page">
73+
<h2 style="text-align:center">404</h2>
74+
<h1>Page Not Found</h1>
75+
<p>The specified file was not found on this website. Please check the URL for mistakes and try again.</p>
76+
<br/>
77+
<a href="https://scorefall.com/"><img style="margin:auto" src="icon.png" width="108px"/></a>
78+
</div>
79+
</div>
80+
<div style="flex: 1 1 auto;"></div>
81+
<div>
82+
<div class="page" style="font-size:10pt;display:flex;border:0px;border-radius:0px;border-top:1px solid #ffb4c8;background:#0000">
83+
<div style="flex: 0 0 85%">© 2019-2025 <a href="https://scorefall.com">ScoreFall™</a>.</div>
84+
<div style="flex:1;text-align:right"><a href="about">About</a></div>
85+
</div>
86+
</div>
87+
</div>
88+
</body>
89+
</html>

html/about/index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>ScoreFall</title>
7+
<base href="../">
8+
<link rel="icon" href="icon.png">
9+
<style>
10+
html {
11+
background: #FFF;
12+
border-image-width: 0px;
13+
}
14+
body {
15+
display: flex;
16+
flex-flow: column;
17+
height: 100vh;
18+
}
19+
body, h1, h2, h3, h4, h5, h6, p {
20+
margin: 0px;
21+
padding: 0px;
22+
border: 0px;
23+
}
24+
p {
25+
margin-top: 14px;
26+
min-height: 0px;
27+
}
28+
body .header {
29+
background: #BDCFDD;
30+
margin: 0px;
31+
padding: 0px;
32+
border: 0px;
33+
border-image-width: 0px;
34+
flex: 0 1 auto;
35+
height: 54px;
36+
display:flex;
37+
}
38+
img {
39+
margin: 0px;
40+
padding: 0px;
41+
border: 0px;
42+
display: block;
43+
}
44+
body .page {
45+
margin: 10px auto;
46+
padding: 24px;
47+
border-radius: 24px;
48+
width: auto;
49+
max-width: 1200px;
50+
border: 3px solid #0002;
51+
background: #edffdd;
52+
}
53+
body .content {
54+
overflow-y: scroll;
55+
flex: 1 1 auto;
56+
display: flex;
57+
flex-flow: column;
58+
}
59+
input {
60+
-moz-box-sizing: content-box;
61+
-webkit-box-sizing: content-box;
62+
box-sizing: content-box;
63+
}
64+
</style>
65+
</head>
66+
<body>
67+
<div class="header"><a href="https://scorefall.com"><img src="icon.png" height="100%" width="54px" style="margin-left:4px;margin-right:4px"/></a><input type="search" placeholder="Search..." style="margin-top:13.5px;width:230px;height:27px;border:0px solid black;border-radius:5px;border-left:5px solid white;border-right:5px solid white"/>
68+
<div style="flex: 1 1 auto;"></div>
69+
<button style="width:108px;background:#0000;font-weight:bold;font-size:1.4em;border:0">Sign In</button>
70+
</div>
71+
<div class="content">
72+
<div>
73+
<div class="page">
74+
<h1>About ScoreFall™</h1>
75+
<p>
76+
Coming soon! <a href="https://studio.scorefall.com">Try out ScoreFall Studio!</a>
77+
</p>
78+
</div>
79+
</div>
80+
<div style="flex: 1 1 auto;"></div>
81+
<div>
82+
<div class="page" style="font-size:10pt;display:flex;border:0px;border-radius:0px;border-top:1px solid #ffb4c8;background:#0000">
83+
<div style="flex: 0 0 85%">© 2019-2025 <a href="https://scorefall.com">ScoreFall™</a>.</div>
84+
<div style="flex:1;text-align:right"><a href="about">About</a></div>
85+
</div>
86+
</div>
87+
</div>
88+
</body>
89+
</html>

html/icon.png

1.31 KB
Loading

html/index.html

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>ScoreFall</title>
7+
<link rel="icon" href="icon.png">
8+
<style>
9+
html {
10+
background: #FFF;
11+
border-image-width: 0px;
12+
}
13+
body {
14+
display: flex;
15+
flex-flow: column;
16+
height: 100vh;
17+
}
18+
body, h1, h2, h3, h4, h5, h6, p {
19+
margin: 0px;
20+
padding: 0px;
21+
border: 0px;
22+
}
23+
p {
24+
margin-top: 14px;
25+
min-height: 0px;
26+
}
27+
body .header {
28+
background: #BDCFDD;
29+
margin: 0px;
30+
padding: 0px;
31+
border: 0px;
32+
border-image-width: 0px;
33+
flex: 0 1 auto;
34+
height: 54px;
35+
display:flex;
36+
}
37+
img {
38+
margin: 0px;
39+
padding: 0px;
40+
border: 0px;
41+
display: block;
42+
}
43+
body .page {
44+
margin: 10px auto;
45+
padding: 24px;
46+
border-radius: 24px;
47+
width: auto;
48+
max-width: 1200px;
49+
border: 3px solid #0002;
50+
background: #edffdd;
51+
}
52+
body .content {
53+
overflow-y: scroll;
54+
flex: 1 1 auto;
55+
display: flex;
56+
flex-flow: column;
57+
}
58+
input {
59+
-moz-box-sizing: content-box;
60+
-webkit-box-sizing: content-box;
61+
box-sizing: content-box;
62+
}
63+
a {
64+
padding: 0;
65+
margin: 0;
66+
border: 0;
67+
}
68+
</style>
69+
</head>
70+
<body>
71+
<div class="header"><a href="https://scorefall.com"><img src="icon.png" height="100%" width="54px" style="margin-left:4px;margin-right:4px"/></a><input type="search" placeholder="Search..." style="margin-top:13.5px;width:230px;height:27px;border:0px solid black;border-radius:5px;border-left:5px solid white;border-right:5px solid white"/>
72+
<div style="flex: 1 1 auto;"></div>
73+
<button style="width:108px;background:#0000;font-weight:bold;font-size:1.4em;border:0">Sign In</button>
74+
</div>
75+
<div class="content">
76+
<div>
77+
<div class="page">
78+
<h1>ScoreFall™</h1>
79+
<p>
80+
Coming soon! <a href="https://studio.scorefall.com">Try out ScoreFall Studio!</a>
81+
</p>
82+
</div>
83+
</div>
84+
<div style="flex: 1 1 auto;"></div>
85+
<div>
86+
<div class="page" style="font-size:10pt;display:flex;border:0px;border-radius:0px;border-top:1px solid #ffb4c8;background:#0000">
87+
<div style="flex: 0 0 85%">© 2019-2025 <a href="https://scorefall.com">ScoreFall™</a>.</div>
88+
<div style="flex:1;text-align:right"><a href="about">About</a></div>
89+
</div>
90+
</div>
91+
</div>
92+
</body>
93+
</html>

0 commit comments

Comments
 (0)