App.css
1.64 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
h1,
h2 {
margin: 0;
}
.App {
margin: 8px;
}
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 {
display: flex;
margin: 1px 0 1px 0;
border: solid 3px bisque;
border-radius: 3px;
cursor: pointer;
position: relative;
}
.ScheduleItem > span {
line-height: 23px;
vertical-align: middle;
margin-right: 3px;
font-size: small;
}
.s_start {
color: blue;
/* 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;
}
.s_popup {
position: absolute;
z-index: 1000;
top: calc(100% + 5px);
left: 20px;
background: rgb(246, 246, 246);
border: solid thin black;
border-radius: 5px;
display: none;
padding: 10px;
cursor: auto;
width: 300px;
}
.spl {
display: flex;
flex-direction: column;
}
.spl > * {
margin-bottom: 5px;
}
.spl > div {
background-color: white;
border: solid 1px rgb(235, 235, 235);
}
.spc {
margin-top: 2px;
margin-left: calc(100% - 50px);
width: 50px;
height: 35px;
cursor: pointer;
}