-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_daily_plan.css
More file actions
128 lines (117 loc) · 2.15 KB
/
style_daily_plan.css
File metadata and controls
128 lines (117 loc) · 2.15 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
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
.selectTable {
border: 1px solid #198754;
border-collapse: collapse;
}
td {
border: 1px solid #198754;
width: 30px;
height: 30px;
background-color: #ffffff;
}
.d-flex .time {
text-align: center;
}
#palette {
width: 128px;
height: 128px;
}
#bar {
width: 20px;
height: 128px;
}
.cont-right {
float: right;
box-sizing: border-box;
width: 30%;
padding-left: 5%;
margin-bottom: 10%;
}
.cont-left {
float: left;
box-sizing: border-box;
width: 70%;
padding-left: 5%;
margin-bottom: 10%;
}
.task_table {
margin-top: 10%;
}
.taskheader {
width: calc(100% / 7.5);
}
.course {
width: 300px;
}
.task {
width: 500px;
}
.check {
width: 100px;
}
.task_sub {
border: none;
background: transparent;
}
.container {
width: 640px;
float: left;
}
/* The side navigation menu */
.sidenav {
height: 100%;
/* 100% Full-height */
width: 0;
/* 0 width - change this with JavaScript */
position: fixed;
/* Stay in place */
z-index: 1;
/* Stay on top */
top: 0;
/* Stay at the top */
right: 0;
background-color: #fcfcfc;
/* Black*/
overflow-x: hidden;
/* Disable horizontal scroll */
padding-top: 60px;
/* Place content 60px from the top */
transition: 0.5s;
/* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav td {
border: 1px solid #198754;
width: 30px;
height: 30px;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #faf1d6;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
position: absolute;
top: 0;
right: 20px;
font-size: 36px;
margin-left: 50px;
color: #198754;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
.cont-right {
transition: margin-right .5s;
padding: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
.todobox {
width: 100%;
}