-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
151 lines (128 loc) · 2.35 KB
/
style.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
body {
margin: 0;
background-image: url('https://source.unsplash.com/1600x900/?background');
background-size: cover;
background-position: center;
font-family: 'Noto Sans', sans-serif;
}
* {
box-sizing: border-box;
}
.container {
height: 95vh;
padding: 10px;
margin: 10px;
}
.row {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.columns {
display: flex;
align-items: flex-start;
flex-wrap: wrap;
}
.column, .adder {
margin: 10px;
width: 240px;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.column {
background: #f1f1f1;
padding: 10px 15px;
transition: .15s;
}
.adder {
background: rgba(241, 241, 241, 0.5);
padding-right: 2px;
transition: all 0.2s ease;
width: 190px;
}
.adder:hover {
background-color: rgba(227, 242, 253, 0.7);
}
.adder span {
display: block;
font-size: 14px;
line-height: 1;
font-weight: 700;
color: rgb(82, 82, 82);
margin: 0;
padding: 15px 20px;
}
.column-header {
min-height: 20px;
text-align: left;
font-size: 14px;
font-weight: 700;
color: rgb(82, 106, 122);
margin: 0;
margin-bottom: 10px;
}
.column-footer span {
font-size: 14px;
font-weight: 400;
color: rgb(82, 82, 82);
margin: 0;
}
.note {
cursor: default;
width: 100%;
background: white;
padding: 10px;
border: none;
border-radius: 4px;
margin-bottom: 8px;
box-shadow: 0px 1px 0px 0px #c9cfd4;
text-align: left;
font-size: 14px;
line-height: 1.3;
font-weight: 400;
color: rgb(82, 106, 122);
transition: background-color 0.2s linear;
}
.note:hover {
background-color: #e3f2fd;
cursor: pointer;
}
.note:focus {
cursor: auto;
}
.note textarea {
margin: 0;
}
.note.dragged {
opacity: 0.01;
}
.column.dragged {
opacity: 0.4;
}
.action {
cursor: pointer;
}
.column.under {
margin-top: 20px;
}
.note.under {
opacity: 0.5;
}
.bin{
background: url(./bin.svg) center, #f1f1f1;
background-size: contain;
background-repeat: no-repeat;
border-radius: 7px;
width: 90px;
height: 100px;
position: absolute;
right: 10px;
bottom: 10px;
transition: background .1s, border .1s;
}
.bin.under{
background: url(./bin.svg) center, #f99;
background-size: contain;
background-repeat: no-repeat;
border: 4px solid #f77;
}