-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (93 loc) · 1.58 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
.character > img {
max-height: 100px;
grid-area: image;
}
#searchBar {
width: 20%;
height: 32px;
border-radius: 3px;
border: 1px solid #eaeaea;
padding: 5px 10px;
font-size: 12px;
}
#searchWrapper {
position: relative;
}
.pt-3-half {
padding: 1rem;
}
.body {
margin: 0 auto;
background: rgb(236, 232, 252);
}
.container {
padding: 1rem;
margin-top: 1rem;
}
.draggable {
padding: 1rem;
background-color: white;
border: 1px solid black;
cursor: move;
}
.col-sm > .draggable {
padding: 1rem;
background-color: white;
border: 1px solid black;
cursor: move;
}
.draggable.dragging {
opacity: 0.5;
}
.accordion {
cursor: pointer;
transition: 0.4s;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
.card-list {
vertical-align:bottom;
border: 2px solid black;
}
/*
#table {
height: 100%;
width: 100%;
}
.table {
height: auto;
width: 384px;
max-width: 384px;
margin-top: 40px;
margin-left: 40px;
background-color: rgb(217, 247, 209);
border: 1px solid rgb(217, 247, 209);
border-radius: 8px;
box-sizing: border-box;
padding: 15px;
}
.header {
height: 80px;
max-height: 80px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.table-name {
color: black;
}
.namechanger, #completer {
color: rgb(30, 38, 110);
font-size: 23px;
}
#table-name-input {
position: fixed;
width: 220px;
height: 30px;
font-size: 16px;
}*/