-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.84 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (80 loc) · 1.84 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
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap');
body {
background: rgb(249, 173, 20);
background: radial-gradient(circle,
rgb(127, 129, 240) 0%, rgb(231, 229, 234) 100%);
display: flex;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
justify-content: center;
}
.board {
background-color: rgba(255, 255, 255, 0.8);
width: 320px;
margin: 6px;
margin-top: 50px;
border-radius: 6px;
display: flex;
flex-direction: column;
}
.board-title {
text-align: center;
background-color: rgb(66, 44, 139);
color: white;
margin: 0;
padding-top: 8px;
padding-bottom: 8px;
}
ul {
min-height: 300px;
margin: 2px;
padding: 2px;
list-style-type: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
}
li {
font-size: 14px;
font-weight: 700;
display: flex;
justify-content: space-between;
}
.card {
background-color: white;
height: 40px;
min-width: 120px;
margin: 4px 10px;
border-radius: 4px;
cursor: move;
padding: 8px;
box-shadow: 0 2px 2px 2px rgba(0, 0, 0,0.2);
}
.add-card {
text-align: center;
background-color: rgba(218, 217, 217, 0.9);
border-radius: 2px;
margin: 4px;
}
.add-card p {
font-size: 14px;
padding: 0 6px;
}
.add-card:hover {cursor: pointer;}
.remove {
border-radius: 50%;
text-align: center;
width: 20px;
height: 20px;
color: #ffffff;
background-color: rgb(163, 161, 161);
}
.remove:hover {
border-radius: 50%;
text-align: center;
width: 20px;
height: 20px;
color: #ffffff;
background-color: rgb(185, 19, 19);
cursor: pointer;
}