Add files via upload
This commit is contained in:
parent
b4e88f8b22
commit
c7159725e2
2 changed files with 14 additions and 9 deletions
|
@ -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>
|
||||
|
|
20
styles.css
20
styles.css
|
@ -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 */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue