-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
137 lines (120 loc) · 2.81 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Toggl Track Web Data Connector</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
<style>
* {
box-sizing: border-box;
font-family: "Benton Sans", Verdana, Arial, Helvetica, sans-serif;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-size: 16px;
background-color: #2c1338;
}
.container {
width: 90%;
max-width: 1000px;
display: flex;
flex-direction: column;
align-items: center;
margin: auto;
}
.hero {
width: 100%;
padding: 60px 0px 30px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
.readme {
width: 100%;
margin: 20px;
background-color: #F7E5DE;
border-radius: 10px;
padding: 10px 20px;
color: #2C1338;
}
.left,
.right {
display: flex;
flex-direction: column;
justify-content: center;
}
.left {
padding-right: 10px;
}
.logo {
width: 250px;
}
.hero_image {
width: 400px;
}
.header {
margin: 5px 0px;
font-size: 36px;
font-weight: lighter;
color: #E57CD8;
}
.subheader {
margin: 20px 0px;
font-size: 20px;
color: #F7E5DE;
}
a {
font-weight: bold;
text-decoration: none;
color: #E57CD8;
}
a:hover {
color: #2C1338;
}
.github:hover {
color: #FFF;
}
pre {
background-color: #FEF9F8;
padding: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="hero">
<div class="left">
<a href="https://toggl.com/track/">
<img class="logo" src="./toggl-track-logo-pink.png" />
</a>
<p class="header">Web Data Connector</p>
<p class="subheader">A Tableau Web Data Connector that pulls in your task tracking data from the Detailed
Report
view on Toggl Track</p>
<a class="github" href="https://github.com/KeshiaRose/Toggl-Web-Data-Connector">View on GitHub</a>
</div>
<div class="right">
<img class="hero_image" src="./toggl-track-report.png" />
</div>
</div>
<div class="readme" id="readme">
vsffs
</div>
</div>
<script>
(async function loadReadMe() {
const response = await fetch('./README.md')
const data = await response.text();
const converter = new showdown.Converter()
const html = converter.makeHtml(data);
document.getElementById("readme").innerHTML = html;
})()
</script>
</body>
</html>