-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
89 lines (84 loc) · 2.96 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>flamebird</title>
<link rel="shortcut icon" href="assets/logo.png" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- jss-insertion-point-->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i|Source+Sans+Pro:600"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"
integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="medium-screens.css" />
<link rel="stylesheet" href="small-screens.css" />
</head>
<body>
<div class="wrapper active-tab-procfile">
<header>
<span class="title" onclick="header.handleTitleClick()">
<span>flamebird</span>
<i class="fas fa-chevron-down"></i>
</span>
<div class="configs-list">
</div>
<img src="assets/logo2_small.png" alt="flamebird" class="logo" />
<div class="main-buttons">
<button
class="main-button toggle color"
onclick="header.handleThemeIconClick()"
>
<i class="fas fa-adjust"></i>
<span>theme</span>
</button>
<button
class="main-button toggle resize"
onclick="header.handleResizeIconClick()"
>
<i class="fas fa-expand-arrows-alt"></i>
<span>fullscreen</span>
</button>
<button
class="main-button toggle notifications"
onclick="header.handleNotificationsIconClick()"
>
<i class="fas fa-exclamation"></i>
<span>notifications</span>
</button>
<button
class="main-button toggle hot-keys"
onclick="header.handleKeyboardIconClick()"
>
<i class="far fa-keyboard"></i>
<span>hotkeys</span>
</button>
<button class="main-button run" onclick="global.runAllTasks()">
<span>run all</span>
</button>
<button class="main-button stop" onclick="global.stopAllTasks()">
<span>stop all</span>
</button>
</div>
</header>
<button class="tasks-button" onclick="global.showTaskList()">
<i class="fas"></i>
</button>
<span class="tabs" id="tabs"></span>
<section id="task-list"></section>
<section id="task-logs"></section>
</div>
<script src="global.js"></script>
<link rel="stylesheet" href="styles/dark-theme.css" />
<link rel="stylesheet" href="styles/fullscreen.css" />
<link rel="stylesheet" href="styles/hot_keys-shortcuts.css" />
</body>
</html>