-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
118 lines (100 loc) · 1.79 KB
/
app.css
File metadata and controls
118 lines (100 loc) · 1.79 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 1em/1.6 'Segoe UI', 'Trebushet MS', Arial, Helvetica, sans-serif;
}
.b-notelendar {
border-collapse: collapse;
margin: 1em auto;
}
.b-notelendar th {
font-weight: normal;
text-align: right;
padding: .5em 1em;
}
.b-notelendar__day {
border: 1px solid #eee;
vertical-align: top;
}
.b-day-entity {
position: relative;
width: 10em;
height: 10em;
}
.b-day-entity:hover,
.b-day-entity.editing {
box-shadow: inset 0 0 .5em #ddd;
cursor: text;
}
.b-day-entity.current {
outline: 2px solid #71c3c6;
}
.b-day-entity.empty {
background: #f9f9f9;
box-shadow: none;
cursor: auto;
}
.b-day-entity__date {
position: absolute;
z-index: 2;
right: 0;
bottom: 0;
font-size: .6em;
text-align: center;
width: 1.6667em;
height: 1.6667em;
line-height: 1.6667;
}
.b-day-entity__note {
text-overflow: ellipsis;
overflow: hidden;
position: absolute;
left: 1em;
top: 1em;
right: 1em;
bottom: 1em;
}
.b-day-entity.editing .b-day-entity__note {
visibility: hidden;
}
.b-day-entity__editor {
position: absolute;
left: 0;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
background: none;
border: none;
padding: 1em;
font: inherit;
z-index: 3;
resize: none;
}
.b-ctrls {
text-align: center;
margin: 2em 0 0;
font-size: 2em;
color: gray;
}
.b-ctrls__btn {
display: inline-block;
border: none;
background: none;
vertical-align: baseline;
font-size: 1em;
color: #ccc;
cursor : pointer;
transition: .3s;
}
.b-ctrls__btn:hover {
color: #999;
}
.b-ctrls__val {
display: inline-block;
vertical-align: baseline;
margin: 0 1em;
}