-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
80 lines (70 loc) · 2.98 KB
/
calendar.html
File metadata and controls
80 lines (70 loc) · 2.98 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendar</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="calendar.css">
<link rel="stylesheet" type="text/css" href="sidebar.css">
</head>
<body>
<!-- SIDEBAR -->
<nav>
<div class="nav calendar-nav">
<label for="toggle">☰</label>
<input type="checkbox" id="toggle" />
<div class="menu">
<a href="#"><span><i class="fas fa-plus"></i></span>New Task</a>
<a href="taskM.html"><span><i class="fas fa-user"></i></span>Project</a>
<a href="calendar.html"><span><i class="fas fa-calendar-alt"></i></span> Calendar</a>
<a href="main.html"><span><i class="fas fa-archive"></i></span> Overview</a>
</div>
</div>
</nav>
<!-- CALENDAR -->
<div class="calendar disable-selection" id="calendar">
<section class="section-left">
<!-- LEFT SIDE OF THE CALENDAR -->
<div class="left-side">
<div class="current-day text-center">
<h1 class="calendar-left-side-day"></h1>
<div class="calendar-left-side-day-of-week"></div>
</div>
<div class="current-day-events">
<div>Current Events:</div>
<ul class="current-day-events-list"></ul>
</div>
<div class="add-event-day">
<input type="text" class="add-event-day-field" placeholder="Create an Event">
<span class="fa fa-plus-circle cursor-pointer add-event-day-field-btn">Submit</span>
</div>
</div>
</section>
<!-- RIGHT SIDE OF THE CALENDAR -->
</section class="section-right">
<div class="right-side">
<div class="text-right calendar-change-year">
<div class="calendar-change-year-slider">
<span class="fa fa-caret-left cursor-pointer calendar-change-year-slider-prev"></span>
<span class="calendar-current-year"></span>
<span class="fa fa-caret-right cursor-pointer calendar-change-year-slider-next"></span>
</div>
</div>
<div class="calendar-month-list">
<ul class="calendar-month"></ul>
</div>
<div class="calendar-week-list">
<ul class="calendar-week"></ul>
</div>
<div class="calendar-day-list">
<ul class="calendar-days"></ul>
</div>
</div>
</div>
</section>
<!-- SCRIPT LINKS -->
<script async src="calendar.js"></script>
<script src="https://kit.fontawesome.com/68fb369f5e.js" crossorigin="anonymous"></script>
</body>
</html>