-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/matthunz/blitz into accesskit
- Loading branch information
Showing
24 changed files
with
940 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style> | ||
body { | ||
color: #ffffff; | ||
background-color: #121212; | ||
font-family: "Arial", sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.layout { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
text-align: center; | ||
} | ||
h1 { | ||
font-size: 6em; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
blockquote { | ||
font-size: 1.5em; | ||
margin-top: 0; | ||
padding-top: 20px; | ||
} | ||
p { | ||
font-size: 1.2em; | ||
} | ||
#quote { | ||
font-size: 1.5em; | ||
padding-bottom: 20px; | ||
} | ||
|
||
.links { | ||
list-style-type: none; | ||
} | ||
.links li { | ||
padding: 5px; | ||
} | ||
|
||
a { | ||
color: cyan; | ||
text-decoration: none; | ||
border-bottom: 2px solid #6e40c9; | ||
transition: border-bottom 0.3s ease-in-out; | ||
} | ||
|
||
a:link { | ||
text-decoration: none; | ||
} | ||
|
||
a:visited { | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
a:active { | ||
text-decoration: none; | ||
} | ||
|
||
.logo { | ||
width: 25%; | ||
min-width: 200px; | ||
max-width: 400px; | ||
} | ||
|
||
h1 { | ||
font-size: 72px; | ||
background: rgb(96,243,236); | ||
background: linear-gradient(180deg, rgba(96,243,236,1) 40%, rgba(30,84,231,1) 100%); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
} | ||
|
||
.small { | ||
font-size: 10px; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
<link rel="manifest" href="/site.webmanifest"> | ||
|
||
<title>Gosub - The gateway to optimized searching and browsing</title> | ||
</head> | ||
|
||
<body> | ||
<div class="layout"> | ||
<h1>Gosub</h1> | ||
<p id="quote">The gateway to optimized searching and browsing</p> | ||
|
||
<img class="logo" src="gosub-logo.svg" alt="Gosub Logo"> | ||
<blockquote> | ||
Join us on the journey to a new web browser | ||
</blockquote> | ||
|
||
<ul class="links"> | ||
<li><a id="link1" href="https://github.com/gosub-browser"><i class="fa-brands fa-github"></i> GitHub <i class="small fa-solid fa-arrow-up-right-from-square"></i></a> | ||
<li><a id="link2" href="https://chat.gosub.io"><i class="fa-brands fa-discord"></i> Global Discord <i class="small fa-solid fa-arrow-up-right-from-square"></i></a> | ||
<li><a id="link3" href="https://chat.developer.gosub.io"><i class="fa-solid fa-comments"></i> Developer chat - Zulip <i class="small fa-solid fa-arrow-up-right-from-square"></i></a> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<body style="color: #ffffff;background-color: #121212;"> | ||
<div style="display: flex;flex-direction: column;align-items: center;text-align: center;"> | ||
<div> | ||
<div>GitHub</div> | ||
<div>Global Discord</div> | ||
<div>Developer chat - Zudivp</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.