blob: d6c388d4186ff8a78550c6746b1137ae55a5c991 (
plain)
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
|
/*
#add_class_dialog {
background-color: lightgray;
margin: auto;
margin-top: 10px;
width: 400px;
}
#add_class_dialog>div {
display: flex;
justify-content: space-between;
padding: 5px;
}
*/
#bg {
z-index: -1;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 1;
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 0;
animation:2s hide forwards;
animation-delay: .1s;
}
@keyframes hide{ 0%{opacity:1;} 100%{opacity:.1;}}
#hw_div {
margin-top: 30px;
margin-bottom: 30px;
display: flex;
}
#notes_link{
text-align: right;
font-size: 12px;
}
.add_dialog {
background-color: lightgray;
margin: auto;
margin-top: 10px;
width: 400px;
}
.add_dialog>div {
display: flex;
justify-content: space-between;
padding: 5px;
}
.banner {
font-size: 24px;
margin: 15px;
font-weight: bold;
text-decoration: underline;
}
.banner_box {
text-align: center;
}
.cancel {
background-color: pink;
}
.cancel:hover {
background-color: red;
}
.column {
width: 50%;
padding-left: 5%;
padding-right: 5%;
}
.container:hover button {
display: inline;
}
.course {
text-decoration: underline;
font-weight: bold;
margin-right: 15px;
}
.entries {
font-size: 18px;
list-style: square;
margin-right: 15px;
}
.entry_box {
margin-bottom: 15px;
}
a{
color: inherit;
}
button.add {
background-color: skyblue;
}
button.add,button.edit,button.delete,button.mark_done {
display: none;
margin-left: 2px;
margin-right: 2px;
}
/*
button.add:hover,button.edit:hover,button.delete:hover,button.mark_done:hover {
font-weight: bold;
}
*/
button.delete {
background-color: red;
}
button.edit_assignment {
margin-left: 10px;
}
|