App.css
1.11 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
h1,
h2 {
margin: 0;
}
.App {
margin: 12px;
}
button {
cursor: pointer;
background-color: white;
color: black;
border: solid thin;
border-color: lavender;
border-radius: 3px;
}
button {
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
button:hover:not(:disabled) {
background-color: rgba(39, 197, 250, 0.334);
color: white;
}
button:active:not(:disabled) {
background-color: rgba(39, 197, 250, 0.548);
}
button:disabled {
cursor: auto;
color: rgb(209, 209, 209);
}
/* Calendar */
.Calendar {
display: flex;
flex-direction: column;
}
.content {
flex: 1;
display: flex;
}
.ScheduleItem {
height: 23px;
display: flex;
margin: 1px 0 1px 0;
border: solid 3px bisque;
border-radius: 3px;
}
.ScheduleItem > span {
line-height: 23px;
vertical-align: middle;
margin-right: 3px;
font-size: small;
}
.s_start {
color: deepskyblue;
/* text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; */
}
.s_end {
color: crimson;
}
.s_symbol {
width: 21px;
height: 21px;
margin: 1px 3px 1px 1px;
border-radius: 3px;
padding: 0;
}