-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #547 from irihitech/browser
Update Browser project
- Loading branch information
Showing
12 changed files
with
84 additions
and
159 deletions.
There are no files selected for viewing
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
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 @@ | ||
[assembly: System.Runtime.Versioning.SupportedOSPlatform("browser")] |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
{ | ||
"wasmHostProperties": { | ||
"perHostConfig": [ | ||
{ | ||
"name": "browser", | ||
"html-path": "index.html", | ||
"Host": "browser" | ||
} | ||
] | ||
} | ||
"wasmHostProperties": { | ||
"perHostConfig": [ | ||
{ | ||
"name": "browser", | ||
"host": "browser" | ||
} | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,74 +1,58 @@ | ||
:root { | ||
--sat: env(safe-area-inset-top); | ||
--sar: env(safe-area-inset-right); | ||
--sab: env(safe-area-inset-bottom); | ||
--sal: env(safe-area-inset-left); | ||
/* HTML styles for the splash screen */ | ||
.avalonia-splash { | ||
position: absolute; | ||
height: 100%; | ||
width: 100%; | ||
background: white; | ||
font-family: 'Outfit', sans-serif; | ||
justify-content: center; | ||
align-items: center; | ||
display: flex; | ||
pointer-events: none; | ||
} | ||
|
||
/* HTML styles for the splash screen */ | ||
/* Light theme styles */ | ||
@media (prefers-color-scheme: light) { | ||
.avalonia-splash { | ||
background: white; | ||
} | ||
|
||
.highlight { | ||
color: white; | ||
font-size: 2.5rem; | ||
display: block; | ||
} | ||
.avalonia-splash h2 { | ||
color: #1b2a4e; | ||
} | ||
|
||
.purple { | ||
color: #8b44ac; | ||
.avalonia-splash a { | ||
color: #0D6EFD; | ||
} | ||
} | ||
|
||
.icon { | ||
opacity: 0.05; | ||
height: 35%; | ||
width: 35%; | ||
position: absolute; | ||
background-repeat: no-repeat; | ||
right: 0px; | ||
bottom: 0px; | ||
margin-right: 3%; | ||
margin-bottom: 5%; | ||
z-index: 5000; | ||
background-position: right bottom; | ||
pointer-events: none; | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
.avalonia-splash { | ||
background: #1b2a4e; | ||
} | ||
|
||
#avalonia-splash a { | ||
color: whitesmoke; | ||
text-decoration: none; | ||
} | ||
.avalonia-splash h2 { | ||
color: white; | ||
} | ||
|
||
.center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
.avalonia-splash a { | ||
color: white; | ||
} | ||
} | ||
|
||
#avalonia-splash { | ||
position: relative; | ||
height: 100%; | ||
width: 100%; | ||
color: whitesmoke; | ||
background: #1b2a4e; | ||
font-family: 'Nunito', sans-serif; | ||
background-position: center; | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
justify-content: center; | ||
align-items: center; | ||
.avalonia-splash h2 { | ||
font-weight: 400; | ||
font-size: 1.5rem; | ||
} | ||
|
||
.splash-close { | ||
animation: fadeout 0.25s linear forwards; | ||
.avalonia-splash a { | ||
text-decoration: none; | ||
font-size: 2.5rem; | ||
display: block; | ||
} | ||
|
||
@keyframes fadeout { | ||
0% { | ||
opacity: 100%; | ||
} | ||
|
||
100% { | ||
opacity: 0; | ||
visibility: collapse; | ||
} | ||
.avalonia-splash.splash-close { | ||
transition: opacity 200ms, display 200ms; | ||
display: none; | ||
opacity: 0; | ||
} |
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