|
5 | 5 | <meta charset="UTF-8"> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 | 7 | <link rel="stylesheet" type="text/css" href="vendor/font-awesome.min.css"> |
8 | | - <style> |
9 | | - html, body { |
10 | | - margin: 0; |
11 | | - height: 100%; |
12 | | - background-color: #f8f8f8; |
13 | | - overflow: hidden; |
14 | | - font-family: Arial, Helvetica, sans-serif; |
15 | | - } |
16 | | - |
17 | | - body { |
18 | | - display: flex; |
19 | | - flex-direction: column; |
20 | | - } |
21 | | - |
22 | | - webview { |
23 | | - flex: 1; |
24 | | - } |
25 | | - |
26 | | - #title-bar { |
27 | | - -webkit-app-region: drag; |
28 | | - padding: 0.3em 0.7em; |
29 | | - display: flex; |
30 | | - flex-direction: row; |
31 | | - justify-content: space-between; |
32 | | - |
33 | | - background-color: #f8f8f8; |
34 | | - color: #484848; |
35 | | - |
36 | | - transition: color 0.5s, background-color 0.5s; |
37 | | - } |
38 | | - |
39 | | - #title-bar.dark { |
40 | | - background-color: #333333; |
41 | | - color: white; |
42 | | - } |
43 | | - |
44 | | - #title-bar .window-control { |
45 | | - float: right; |
46 | | - -webkit-app-region: no-drag; |
47 | | - } |
48 | | - |
49 | | - navbar { |
50 | | - height: 23px; |
51 | | - align-items: center; |
52 | | - width: 100%; |
53 | | - display: flex; |
54 | | - -webkit-app-region: drag; |
55 | | - background-color: #f8f8f8; |
56 | | - color: #484848; |
57 | | - |
58 | | - transition: color 0.5s, background-color 0.5s; |
59 | | - } |
60 | | - |
61 | | - #navbar-container { |
62 | | - font-size: 0.9em; |
63 | | - font-family: "Courier New", Courier, monospace; |
64 | | - display: flex; |
65 | | - flex: 1; |
66 | | - justify-content: space-between; |
67 | | - -webkit-user-select: none; |
68 | | - user-select: none; |
69 | | - } |
70 | | - |
71 | | - navbar.dark { |
72 | | - background-color: #333333; |
73 | | - color: white; |
74 | | - } |
75 | | - |
76 | | - navbar.dark .control-buttons > *:hover { |
77 | | - color: white; |
78 | | - } |
79 | | - |
80 | | - #navbar-container .control-buttons { |
81 | | - flex: 1; |
82 | | - display: flex; |
83 | | - } |
84 | | - |
85 | | - #navbar-container .control-buttons > * { |
86 | | - margin: 0 .3em; |
87 | | - cursor: pointer; |
88 | | - -webkit-user-select: none; |
89 | | - -webkit-app-region: no-drag; |
90 | | - height: 23px; |
91 | | - display: flex; |
92 | | - align-items: center; |
93 | | - } |
94 | | - |
95 | | - #navbar-container .control-buttons > *:hover { |
96 | | - color: #c1c1c1; |
97 | | - } |
98 | | - </style> |
| 8 | + <link rel="stylesheet" type="text/css" href="./app.css"> |
99 | 9 | </head> |
100 | 10 | <body> |
101 | 11 | <div id="title-bar"> |
|
0 commit comments