-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
124 lines (114 loc) · 2 KB
/
index.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
position: relative;
display: flex;
flex-direction: column;
font-family: "pingfang sc", "Courier New", Courier, monospace;
width: 550px;
height: 100vh;
overflow-y: scroll;
}
.header {
flex-shrink: 0;
height: 60px;
padding: 0 5px 0 10px;
display: flex;
justify-content: space-around;
background-color: #278cff;
align-items: center;
}
.header p {
font-size: 1.3em;
font-weight: 700;
color: #fff;
}
.header input {
border: 1px solid rgba(34, 34, 34, 0.1333333333);
line-height: 1.2em;
flex: 1;
padding: 5px;
margin: 0 15px;
border-radius: 0.3em;
box-shadow: inset 0 0 0.1em #222;
}
.content {
flex-shrink: 1;
margin: 20px 0 0 5px;
display: flex;
flex-direction: column;
}
.content .ing li {
border-left: 5px solid #278cff;
}
.content .done {
margin-top: 20px;
}
.content .done li {
border-left: 5px solid #a7caeb;
opacity: 50%;
}
.content li {
display: flex;
flex-direction: row;
justify-content: space-around;
padding: 5px 10px;
margin-top: 10px;
border-bottom: 1px solid rgba(34, 34, 34, 0.1333333333);
}
.content li p {
flex: 1;
padding: 0 10px;
line-height: 1.8em;
}
.content li input {
width: 20px;
cursor: pointer;
}
.content li .icon {
cursor: pointer;
display: flex;
align-items: center;
}
.content li .icon path {
fill: #278cff;
}
.note,
#user {
border-right: 1px solid rgba(34, 34, 34, 0.1333333333);
}
.note_title {
border-bottom: 1px solid rgba(34, 34, 34, 0.1333333333);
}
button {
width: 5em;
height: 2em;
padding: 2px 5px;
margin-right: 10px;
border: 0;
background-color: #fff;
border-radius: 0.5em;
color: #278cff;
cursor: pointer;
}
button:hover {
filter: brightness(110%);
}
.hide {
margin: 0;
display: none;
}
::-webkit-scrollbar {
width: 1px;
}
::-webkit-scrollbar-thumb {
border-radius: 1px;
background: #278cff;
}
::-webkit-scrollbar-track {
border-radius: 1px;
background: #eee;
}/*# sourceMappingURL=index.css.map */