forked from Va16hav07/Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdasboard.css
82 lines (70 loc) · 1.32 KB
/
dasboard.css
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f4f4f9;
}
.calendar-container {
width: 80%;
max-width: 800px;
margin: 20px;
padding: 20px;
background: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
}
#month-year {
margin: 0;
}
button {
padding: 10px;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 10px;
margin-top: 20px;
}
.calendar-cell {
padding: 20px;
background: #e6e6e6;
border-radius: 5px;
text-align: center;
cursor: pointer;
min-height: 80px;
}
.calendar-cell.dragover {
background: #cce5ff;
}
.task-container {
margin: 20px;
width: 80%;
max-width: 400px;
}
.task {
list-style: none;
padding: 10px;
margin: 5px 0;
background: #ffd966;
border-radius: 5px;
cursor: grab;
}
.task:active {
cursor: grabbing;
}