Add files via upload

This commit is contained in:
The Ghost of FOSS' Future 2024-09-08 16:00:22 -05:00 committed by GitHub
parent b4e88f8b22
commit c7159725e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 9 deletions

View file

@ -11,6 +11,7 @@
<img src="logo.png" align="right" width="20%"/>
<h1>Welcome to Sneedium!</h1>
<p>Put a list of URLs to userscripts in ./userscript/userscripts.js. It uses a standard JS array format and uses URLs. Config is located at: ./config.js.</p>
<p>Welcome to the Sneedium Browser! We provide versions for macOS, Windows, and Linux as of the time of writing this. We hope you enjoy this browser as much as we did making it.</br></br>From all of us at Sneed Group.
</p>
</body>
</html>

View file

@ -106,20 +106,24 @@ html, body {
align-items: center; /* Center vertically */
}
html, body {
height: 100%;
margin: 0;
}
#whProtection {
position: absolute;
top: 50%;
left: 50%;
bottom: 5%;
transform: translate(-50%, -46%); /* Offset by half the width and 46% height */
width: 90%; /* % of viewport width */
height: 86%; /* % of viewport height */
border: 1vw solid green; /* Border color and thickness */
width: 100%; /* % of viewport width */
height: 100%; /* % of viewport height */
border: 2vw solid rgb(70, 70, 70); /* Border color and thickness */
box-sizing: border-box;
display: block;
overflow: scroll;
}
webview {
width: 100%;
height: 100%;
border: none;
box-sizing: border-box; /* Ensures any padding or border inside the webview is included in the total size */
display: block; /* Ensure it behaves as a block element */
}