-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.html
34 lines (34 loc) · 1019 Bytes
/
browser.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<!-- Keep the styling in sync with ./window.html -->
<meta charset="UTF-8" />
<title>Vivaldi</title>
<link rel="stylesheet" href="style/common.css" />
<link rel="stylesheet" href="chrome://vivaldi-data/css-mods/css" />
<style>
body {
background-color: #d2d2d2;
background-image: url('resources/vivaldi-splash-icon.svg');
background-size: 16%;
background-position: center;
background-repeat: no-repeat;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #2d2d2d;
}
}
</style>
</head>
<body>
<div id="app" />
<script src="background-common-bundle.js"></script>
<script src="vendor-bundle.js"></script>
<script src="settings-bundle.js"></script>
<script src="urlbar-bundle.js"></script>
<script src="components-bundle.js"></script>
<script src="bundle.js"></script>
<script src="vivaldi_ui.js"></script>
</body>
</html>