-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmns.css
91 lines (73 loc) · 1.38 KB
/
mns.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
* {
box-sizing: border-box;
}
body {
font-family: Segoe UI, Roboto, "Helvetica Neue", sans-serif;
font-size: 14px;
color: #555;
margin-bottom: 0;
overflow-x: hidden;
}
.board {
display: flex;
flex-basis: 100%;
flex-wrap: nowrap;
overflow: auto;
margin-top: 20px;
padding: 84px 20px 20px;
}
.task-list-wrapper {
flex-shrink: 0;
flex-basis: 240px;
max-height: 100%;
overflow: hidden;
}
.task-list {
padding: 10px;
margin-right: 10px;
border-radius: 4px;
background-color: rgba( 240, 240, 240, 0.9 );
}
.task-list-title-container {
display: flex;
justify-content: space-between;
}
.task-list-title {
margin: 4px;
font-weight: bold;
}
.task-list-more {
margin: 0 4px;
}
.task {
padding: 10px;
margin: 10px 0;
background-color: white;
}
.task .task-edit {
float: right;
display: none;
}
.task:hover .task-edit {
display: inline;
}
.add-card-message, .add-list-message {
margin-bottom: 4px 0 8px;
}
.task-list .task, .task-list input, .task-list textarea, .task-list button {
border-radius: 4px;
}
input, textarea {
border: none;
outline: none;
}
.add-card-form-actions, .add-list-form-actions {
margin: 10px 0;
}
.add-card-button, .add-list-button {
margin-right: 8px;
}
.add-card-cancel, .add-list-cancel {
position: relative;
top: 3px;
}