-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
59 lines (51 loc) · 1.39 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
body {
font-family: 'Courier New', Courier, monospace;
}
.g-board__row {
display: flex;
justify-content: space-between;
}
.g-board__cell {
width: 65px;
height: 65px;
border: 2px dashed #cccccc;
border-radius: 12px;
margin: 10px 0;
}
.g-board__row__sum {
height: 65px;
display: flex;
align-items: center;
margin: 10px 0;
color: #999999;
font-weight: 600;
min-width: 30px;
}
.g-board__col__sum {
text-align: center;
width: 67px;
font-weight: 600;
color: #999999;
}
.g-board__empty_cell {
min-width: 30px;
}
#g-cards {
display: flex;
justify-content: space-between;
margin-top: 40px;
}
.g-card-pad {
width: 52px;
height: 52px;
/* border: 2px dashed #666666; */
border-radius: 12px;
}
.g-card {
width: 50px;
border: 1px solid #999999;
border-radius: 10px;
padding: 16px 0;
cursor: grab;
background-color: bisque;
}