-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility.css
99 lines (83 loc) · 1.54 KB
/
utility.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
:root {
--draggable-color: #4aae9b;
--category-color-odd: #9abd92;
--category-color-even: #f4f4f4;
--placeholder-color: #57d1bb;
}
#placeholder {
background: var(--placeholder-color);
font-weight: normal;
margin: 10px 0 10px 0;
}
.marginTop20 {
margin-top: 20px;
}
.paddingTopBottom-20 {
padding: 20px 0 20px 0;
}
.paddingTopBottom-10 {
padding: 10px 0 10px 0;
}
.paddingAround-20 {
padding: 20px;
}
.paddingAround-5 {
padding: 5px;
}
.marginLeft10 {
margin-left : 10px;
}
.font-heading {
font-size: 1.5rem;
}
.topBorder {
border-top: 3px solid #0EBFE9 ;
}
/* Draggable Container and elements */
.flex-categories {
width: 1000px;
max-height: 80vh;
text-align: center;
color: black;
display: flex;
font-weight: bold;
/* max-width: 1000px; */
margin: 0 auto 0 auto;
/* margin-left: 400px;
margin-top: 20px;
padding: 0 100px 0 100px; */
}
.container {
min-height: 500px;
/* max-height: 1000px; */
text-align: center;
flex-basis: 100%;
flex-grow: 1;
padding: 10px;
margin: 0 10px;
border: 1px solid #dfa612;
/* overflow: scroll; */
}
.draggable {
background: var(--draggable-color);
font-weight: normal;
margin: 10px 0 10px 0;
padding: 10px;
transition: all 0.5s;
}
.container:nth-child(2n-1) {
background: var(--category-color-odd);
}
.container:nth-child(2n) {
background: var(--category-color-even);
}
.btn {
cursor: pointer;
display: inline-block;
padding: 10px 30px;
color: #fff;
background: #267e6e;
border: none;
border-radius:5px;
min-width: 100px;
}