forked from migueravila/Bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (146 loc) · 5.31 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
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Bento</title>
<link rel=" shortcut icon" type="image/png" href="icons/favicon.png" />
<link rel="stylesheet" href="css/style.css" />
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="">
<button id="themeButton"><i id="bicon" data-feather="moon"></i></button>
<div class="container">
<div class="fblock">
<div class="clock">
<div id="hour" class=""></div>
<div id="separator" class=""></div>
<div id="minutes" class=""></div>
</div>
<div id="greetings" class=""></div>
</div>
<div class="sblock">
<div class="sblock__date">
<div id="month" class=""></div>
<div id="day" class=""></div>
</div>
<div class="sblock__weather">
<div class="weather-icon">
<img src="icons/OneDark/unknown.png" />
</div>
<div class="temperature-value">
<p class="">- °<span class="g">c</span></p>
</div>
<div class="temperature-description">
<p class=""></p>
</div>
</div>
</div>
<div class="qlink">
<a
href="https://github.com/"
target="blank"
class="qlink__link qlink__link-1"
>
<i class="qlink__icon" data-feather="github"></i>
</a>
<a
target="blank"
href="https://outlook.live.com/mail/inbox"
class="qlink__link qlink__link-2"
>
<i class="qlink__icon" data-feather="mail"></i>
</a>
<a
target="blank"
href="https://calendar.google.com/calendar/r"
class="qlink__link qlink__link-3"
>
<i class="qlink__icon" data-feather="calendar"></i>
</a>
<a
target="blank"
href="https://flipboard.com/"
class="qlink__link qlink__link-4"
>
<i class="qlink__icon" data-feather="bookmark"></i>
</a>
<a
href="https://columns.app"
target="blank"
class="qlink__link qlink__link-5"
>
<i class="qlink__icon" data-feather="trello"></i>
</a>
<a
target="blank"
href="https://www.youtube.com/"
class="qlink__link qlink__link-6"
>
<i class="qlink__icon" data-feather="youtube"></i>
</a>
</div>
<div class="card qlist qlist__1">
<i class="qlist__head" data-feather="music"></i>
<a
target="blank"
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
class="qlist__link"
>Inspirational</a
>
<a
target="blank"
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
class="qlist__link"
>Classic</a
>
<a
target="blank"
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
class="qlist__link"
>Oldies</a
>
<a
target="blank"
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
class="qlist__link"
>Rock</a
>
</div>
<div class="card qlist qlist__2">
<i class="qlist__head" data-feather="coffee"></i>
<a
href="https://www.linkedin.com"
target="blank"
class="qlist__link"
>LinkedIn</a
>
<a
href="https://dribbble.com/"
target="blank"
class="qlist__link"
>Dribble</a
>
<a
href="https://www.udemy.com/"
target="blank"
class="qlist__link"
>Udemy</a
>
<a
href="https://www.figma.com/files/recent"
target="blank"
class="qlist__link"
>Figma</a
>
</div>
</div>
<script src="js/time.js"></script>
<script src="js/theme.js"></script>
<script src="js/greeting.js"></script>
<script src="js/weather.js"></script>
<script>
feather.replace();
</script>
</body>
<!-- Coded and designed by Miguel R. Ávila: https://github.com/MiguelRAvila -->
</html>