-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 2.35 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 2.35 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GDesk</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head><body>
<div id="wallpaper-layer"></div>
<div id="app-container">
<header class="header">
<div class="header-left">
<form action="https://www.google.com/search" method="GET" target="_blank" class="search-form">
<input type="text" name="q" placeholder="Google Suche..." class="search-input">
<button type="submit" class="search-button">Suchen</button>
</form>
</div>
<div class="header-right">
<div id="stock-price"></div>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
<img id="theme-icon" src="Images/DarkModeIcon.png" style="height: 24px; margin-left: 8px; vertical-align: middle; cursor: pointer;">
<h1 class="header-title">GDesk</h1>
<a href="https://myaccount.google.com/" onclick="const width = 800; const height = 600; const left = (screen.width / 2) - (width / 2); const top = (screen.height / 2) - (height / 2); window.open(this.href, 'googleAccount', `width=${width},height=${height},left=${left},top=${top},resizable=yes,scrollbars=yes`); return false;" rel="noopener noreferrer" class="profile-link"></a>
</div>
</header>
<div id="desktop">
<div id="folder-bar">
<!-- Folders will be dynamically inserted here -->
</div>
<!-- Draggable windows will be dynamically inserted here -->
</div>
</div>
<div id="datetime-container">
<div id="time"></div>
<div id="date"></div>
<button id="new-note-btn" class="new-note-button">New Note</button>
</div>
<script src="script.js"></script>
</body>
</html>