halleyx-ui-framework 4.1.8 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +1 -1
- package/dist/src/assets/icon-style.css +1 -1
- package/dist/src/assets/icons/icon-style(old).css +1 -1
- package/dist/src/assets/icons/icon-style.css +1 -1
- package/dist/src/assets/styles/accordion.scss +99 -99
- package/dist/src/assets/styles/base.scss +2 -1
- package/dist/src/assets/styles/breadcrumb.scss +15 -15
- package/dist/src/assets/styles/buttons.scss +4 -4
- package/dist/src/assets/styles/calendar.scss +343 -346
- package/dist/src/assets/styles/cards.scss +17 -16
- package/dist/src/assets/styles/colorPicker.scss +15 -15
- package/dist/src/assets/styles/colorpalette.scss +138 -139
- package/dist/src/assets/styles/common/var.scss +213 -215
- package/dist/src/assets/styles/componentlayout.scss +126 -128
- package/dist/src/assets/styles/contextMenu.scss +46 -47
- package/dist/src/assets/styles/customdropdown.scss +113 -115
- package/dist/src/assets/styles/dashboard.scss +764 -770
- package/dist/src/assets/styles/dataview.scss +203 -206
- package/dist/src/assets/styles/divider.scss +8 -8
- package/dist/src/assets/styles/dottedPagination.scss +1 -1
- package/dist/src/assets/styles/draggables.scss +36 -39
- package/dist/src/assets/styles/drawer.scss +68 -53
- package/dist/src/assets/styles/errorpage.scss +61 -64
- package/dist/src/assets/styles/fileupload.scss +199 -205
- package/dist/src/assets/styles/fonts.scss +14 -14
- package/dist/src/assets/styles/icon.scss +1 -1
- package/dist/src/assets/styles/imagegallery.scss +169 -167
- package/dist/src/assets/styles/importProgress.scss +1 -1
- package/dist/src/assets/styles/index.scss +18 -17
- package/dist/src/assets/styles/inputfields.scss +44 -46
- package/dist/src/assets/styles/inputitems.scss +315 -318
- package/dist/src/assets/styles/label.scss +48 -54
- package/dist/src/assets/styles/loaders.scss +1 -1
- package/dist/src/assets/styles/mixins/_var.scss +31 -37
- package/dist/src/assets/styles/mixins/functions.scss +7 -7
- package/dist/src/assets/styles/modalwindow.scss +100 -103
- package/dist/src/assets/styles/newtable.scss +10 -23
- package/dist/src/assets/styles/objectViewer.scss +80 -80
- package/dist/src/assets/styles/pagination.scss +6 -6
- package/dist/src/assets/styles/rating.scss +2 -2
- package/dist/src/assets/styles/scrollbar.scss +14 -14
- package/dist/src/assets/styles/search.scss +162 -169
- package/dist/src/assets/styles/select.scss +455 -480
- package/dist/src/assets/styles/sidebar.scss +2 -3
- package/dist/src/assets/styles/signup.scss +118 -128
- package/dist/src/assets/styles/slideControl.scss +1 -0
- package/dist/src/assets/styles/source_content.scss +13 -13
- package/dist/src/assets/styles/speeddial.scss +152 -163
- package/dist/src/assets/styles/style.css.map +12 -12
- package/dist/src/assets/styles/switch.scss +177 -189
- package/dist/src/assets/styles/tablev2.scss +140 -143
- package/dist/src/assets/styles/tabs.scss +48 -49
- package/dist/src/assets/styles/tag.scss +3 -3
- package/dist/src/assets/styles/texteditor.scss +165 -172
- package/dist/src/assets/styles/timeline.scss +384 -400
- package/dist/src/assets/styles/tooltip.scss +52 -72
- package/dist/src/assets/styles/tree.scss +13 -15
- package/dist/src/assets/styles/treeSelect.scss +8 -8
- package/dist/src/assets/styles/variables.scss +9 -9
- package/dist/src/assets/styles/visualbuilder.scss +362 -366
- package/dist/umd/index.umd.css +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,150 +1,148 @@
|
|
|
1
|
-
|
|
2
1
|
@import './common/var.scss';
|
|
3
2
|
|
|
4
|
-
.component-heading,
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
.component-heading,
|
|
4
|
+
.component-side-heading {
|
|
5
|
+
font-family: Quicksand;
|
|
6
|
+
margin: 50px 0 20px 0;
|
|
7
7
|
}
|
|
8
|
-
.component-heading{
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
.component-heading {
|
|
9
|
+
font-family: Quicksand;
|
|
10
|
+
margin: 50px 0 20px 0;
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
& > img {
|
|
14
14
|
width: 35px;
|
|
15
15
|
object-fit: cover;
|
|
16
16
|
margin-left: 5px;
|
|
17
17
|
height: auto;
|
|
18
|
+
}
|
|
18
19
|
}
|
|
20
|
+
.component-side-heading {
|
|
21
|
+
margin: 30px 0 20px 0;
|
|
22
|
+
font-size: 20px;
|
|
19
23
|
}
|
|
20
|
-
.component-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
.component-description{
|
|
26
|
-
font-size: 14px;
|
|
27
|
-
line-height: 2;
|
|
28
|
-
// text-indent: 50px;
|
|
24
|
+
.component-description {
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
line-height: 2;
|
|
27
|
+
// text-indent: 50px;
|
|
29
28
|
}
|
|
30
|
-
.icon-size{
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
li{
|
|
35
|
-
font-family: OpenSans;
|
|
36
|
-
margin: 20px 20px 20px 0;
|
|
29
|
+
.icon-size {
|
|
30
|
+
list-style-type: none;
|
|
31
|
+
font-size: 14px;
|
|
37
32
|
|
|
38
|
-
|
|
33
|
+
li {
|
|
34
|
+
font-family: OpenSans;
|
|
35
|
+
margin: 20px 20px 20px 0;
|
|
36
|
+
}
|
|
39
37
|
}
|
|
40
|
-
.notes{
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
38
|
+
.notes {
|
|
39
|
+
padding: 10px;
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
width: 100%;
|
|
42
|
+
background-color: $primary-color-light;
|
|
43
|
+
border-left: 3px solid $primary-color-dark;
|
|
44
|
+
border-radius: 5px;
|
|
45
|
+
display: inline-flex;
|
|
46
|
+
.note-title {
|
|
47
|
+
font-weight: bold;
|
|
48
|
+
}
|
|
49
|
+
.note-body {
|
|
50
|
+
margin-left: 10px;
|
|
51
|
+
word-spacing: 2px;
|
|
52
|
+
}
|
|
55
53
|
}
|
|
56
|
-
.component-example{
|
|
54
|
+
.component-example {
|
|
55
|
+
display: flex;
|
|
56
|
+
flex-direction: column;
|
|
57
|
+
justify-content: space-between;
|
|
58
|
+
margin: 40px 0;
|
|
59
|
+
border: 1px solid $border-color;
|
|
60
|
+
border-radius: 5px;
|
|
61
|
+
|
|
62
|
+
.example-body {
|
|
63
|
+
height: 100%;
|
|
57
64
|
display: flex;
|
|
65
|
+
padding: 20px;
|
|
66
|
+
gap: 15px;
|
|
67
|
+
overflow: inherit;
|
|
58
68
|
flex-direction: column;
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
69
|
+
}
|
|
70
|
+
.example-body1 {
|
|
71
|
+
height: 300px;
|
|
72
|
+
padding: 20px;
|
|
73
|
+
overflow: visible;
|
|
74
|
+
}
|
|
75
|
+
.example-body2 {
|
|
76
|
+
height: 66px;
|
|
77
|
+
padding: 20px;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: space-evenly;
|
|
80
|
+
overflow: visible;
|
|
81
|
+
}
|
|
82
|
+
.example-body4 {
|
|
83
|
+
// height: 66px;
|
|
84
|
+
padding: 20px;
|
|
85
|
+
display: flex;
|
|
86
|
+
justify-content: space-evenly;
|
|
87
|
+
overflow: visible;
|
|
88
|
+
}
|
|
89
|
+
.example-body3 {
|
|
90
|
+
height: 100%;
|
|
91
|
+
display: flex;
|
|
92
|
+
padding: 20px;
|
|
93
|
+
overflow: auto;
|
|
94
|
+
flex-direction: column;
|
|
95
|
+
}
|
|
63
96
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
padding: 20px;
|
|
75
|
-
overflow: visible;
|
|
76
|
-
}
|
|
77
|
-
.example-body2{
|
|
78
|
-
height: 66px;
|
|
79
|
-
padding: 20px;
|
|
80
|
-
display: flex;
|
|
81
|
-
justify-content: space-evenly;
|
|
82
|
-
overflow: visible;
|
|
83
|
-
}
|
|
84
|
-
.example-body4{
|
|
85
|
-
// height: 66px;
|
|
86
|
-
padding: 20px;
|
|
87
|
-
display: flex;
|
|
88
|
-
justify-content: space-evenly;
|
|
89
|
-
overflow: visible;
|
|
97
|
+
.example-footer {
|
|
98
|
+
height: 40px;
|
|
99
|
+
display: flex;
|
|
100
|
+
padding: 0 20px;
|
|
101
|
+
justify-content: flex-end;
|
|
102
|
+
align-items: center;
|
|
103
|
+
border-top: 1px solid $border-color;
|
|
104
|
+
.icon-code-regular::before {
|
|
105
|
+
font-size: var(--hlx-icon-size-sm);
|
|
106
|
+
color: $font-color;
|
|
90
107
|
}
|
|
91
|
-
.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
108
|
+
.icon {
|
|
109
|
+
font-size: 14px !important;
|
|
110
|
+
margin-left: 10px;
|
|
111
|
+
height: 30px;
|
|
112
|
+
width: 30px;
|
|
113
|
+
display: flex;
|
|
114
|
+
align-items: center;
|
|
115
|
+
justify-content: center;
|
|
116
|
+
border-radius: 5px;
|
|
117
|
+
&:hover {
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
background-color: $primary-color-light;
|
|
120
|
+
color: $primary-color;
|
|
121
|
+
}
|
|
97
122
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
justify-content: center;
|
|
118
|
-
border-radius: 5px;
|
|
119
|
-
&:hover{
|
|
120
|
-
cursor: pointer;
|
|
121
|
-
background-color: $primary-color-light;
|
|
122
|
-
color: $primary-color;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
.active-icon {
|
|
126
|
-
margin-left: 10px;
|
|
127
|
-
height: 30px;
|
|
128
|
-
width: 30px;
|
|
129
|
-
display: flex;
|
|
130
|
-
align-items: center;
|
|
131
|
-
justify-content: center;
|
|
132
|
-
border-radius: 5px;
|
|
133
|
-
background-color: $primary-color;
|
|
134
|
-
color: white;
|
|
135
|
-
.icon-code-regular::before{
|
|
136
|
-
font-size: var(--hlx-icon-size-md);
|
|
137
|
-
color: white
|
|
138
|
-
}
|
|
139
|
-
&:hover{
|
|
140
|
-
cursor: pointer;
|
|
141
|
-
background-color: $primary-color-light;
|
|
142
|
-
color: $primary-color;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
123
|
+
.active-icon {
|
|
124
|
+
margin-left: 10px;
|
|
125
|
+
height: 30px;
|
|
126
|
+
width: 30px;
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
justify-content: center;
|
|
130
|
+
border-radius: 5px;
|
|
131
|
+
background-color: $primary-color;
|
|
132
|
+
color: white;
|
|
133
|
+
.icon-code-regular::before {
|
|
134
|
+
font-size: var(--hlx-icon-size-md);
|
|
135
|
+
color: white;
|
|
136
|
+
}
|
|
137
|
+
&:hover {
|
|
138
|
+
cursor: pointer;
|
|
139
|
+
background-color: $primary-color-light;
|
|
140
|
+
color: $primary-color;
|
|
141
|
+
}
|
|
145
142
|
}
|
|
143
|
+
}
|
|
146
144
|
}
|
|
147
145
|
|
|
148
|
-
.hljs{
|
|
149
|
-
|
|
146
|
+
.hljs {
|
|
147
|
+
font-size: 14px !important;
|
|
150
148
|
}
|
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
.tempp-container{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
.tempp-container {
|
|
2
|
+
color: var(--hlx-text-color-primary);
|
|
3
|
+
font-size: var(--hlx-font-content-size-sm);
|
|
4
|
+
position: relative;
|
|
5
|
+
width: fit-content;
|
|
6
|
+
margin-bottom: 8px;
|
|
7
7
|
}
|
|
8
|
-
.options-container{
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
8
|
+
.options-container {
|
|
9
|
+
// display: none;
|
|
10
|
+
//
|
|
11
|
+
// top: 20px;
|
|
12
|
+
border: 1px solid var(--hlx-border-color);
|
|
13
|
+
position: absolute;
|
|
14
|
+
border-radius: 5px;
|
|
15
|
+
width: -moz-fit-content;
|
|
16
|
+
width: fit-content;
|
|
17
|
+
z-index: 2000;
|
|
18
|
+
background: var(--hlx-color-white);
|
|
19
|
+
max-height: 200px;
|
|
20
|
+
overflow-y: auto;
|
|
21
|
+
color: var(--hlx-text-color-primary);
|
|
22
|
+
font-family: var(--font-family);
|
|
23
23
|
|
|
24
|
-
// top: 0;
|
|
25
|
-
|
|
24
|
+
// top: 0;
|
|
26
25
|
|
|
27
|
-
.option{
|
|
28
|
-
padding:0 0.75rem 0 0.75rem;
|
|
26
|
+
.option {
|
|
27
|
+
padding: 0 0.75rem 0 0.75rem;
|
|
29
28
|
font-size: var(--hlx-font-content-size-sm);
|
|
30
29
|
height: 38px;
|
|
31
30
|
display: flex;
|
|
@@ -33,27 +32,27 @@
|
|
|
33
32
|
align-items: center;
|
|
34
33
|
justify-content: flex-start;
|
|
35
34
|
cursor: pointer;
|
|
36
|
-
i{
|
|
37
|
-
|
|
38
|
-
color: var(--hlx-text-color-primary);
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
35
|
+
i {
|
|
36
|
+
font-size: var(--hlx-icon-size-xs);
|
|
37
|
+
color: var(--hlx-text-color-primary);
|
|
38
|
+
}
|
|
39
|
+
&:hover {
|
|
40
|
+
background: var(--hlx-color-primary-light);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
.selected-context-menu {
|
|
44
|
+
background: var(--hlx-color-primary);
|
|
45
|
+
color: var(--hlx-color-white);
|
|
46
|
+
i {
|
|
47
|
+
color: var(--hlx-color-white);
|
|
48
|
+
}
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
50
|
+
&:hover {
|
|
51
|
+
background: var(--hlx-color-primary);
|
|
52
|
+
color: var(--hlx-color-white);
|
|
53
|
+
i {
|
|
54
|
+
color: var(--hlx-color-white);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
59
58
|
}
|
|
@@ -1,117 +1,115 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
.flow-diagram-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100vw;
|
|
4
|
+
height: 100vh;
|
|
5
|
+
background-color: rgb(226, 226, 226);
|
|
6
|
+
&-left {
|
|
7
|
+
width: 6vw;
|
|
8
|
+
height: 100vh;
|
|
9
|
+
// background-color: #4e4;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
// justify-content: space-evenly;
|
|
13
|
+
#circle {
|
|
14
|
+
width: 40px;
|
|
15
|
+
height: 40px;
|
|
16
|
+
border-radius: 40px;
|
|
17
|
+
border: 1px solid black;
|
|
18
|
+
margin: 10px;
|
|
19
|
+
cursor: all-scroll;
|
|
20
|
+
}
|
|
21
|
+
#double-circle {
|
|
22
|
+
width: 40px;
|
|
23
|
+
height: 40px;
|
|
24
|
+
border-radius: 40px;
|
|
25
|
+
border: 1px solid black;
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
margin: 10px;
|
|
30
|
+
cursor: all-scroll;
|
|
31
|
+
#normal-circle {
|
|
32
|
+
width: 30px;
|
|
33
|
+
height: 30px;
|
|
34
|
+
border-radius: 30px;
|
|
35
|
+
border: 1px solid black;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
#dark-circle {
|
|
39
|
+
width: 40px;
|
|
40
|
+
height: 40px;
|
|
41
|
+
border-radius: 40px;
|
|
42
|
+
border: 2px solid black;
|
|
43
|
+
margin: 10px;
|
|
44
|
+
cursor: all-scroll;
|
|
45
|
+
}
|
|
46
|
+
#rectangle {
|
|
47
|
+
width: 40px;
|
|
48
|
+
height: 30px;
|
|
49
|
+
border-radius: 6px;
|
|
50
|
+
margin: 10px;
|
|
51
|
+
border: 1px solid black;
|
|
52
|
+
cursor: all-scroll;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
&-right {
|
|
56
|
+
width: 90vw;
|
|
57
|
+
height: 100vh;
|
|
58
|
+
background-color: rgb(255, 255, 255);
|
|
59
|
+
overflow: scroll;
|
|
60
|
+
padding: 20px;
|
|
61
|
+
.dropzone {
|
|
62
|
+
width: 100vw;
|
|
63
|
+
height: 100vh;
|
|
64
|
+
background-color: white;
|
|
65
|
+
#circle {
|
|
66
|
+
width: 60px;
|
|
67
|
+
height: 60px;
|
|
68
|
+
border-radius: 60px;
|
|
69
|
+
border: 1px solid black;
|
|
70
|
+
// margin: 20px;
|
|
71
|
+
cursor: all-scroll;
|
|
72
|
+
}
|
|
73
|
+
#double-circle {
|
|
74
|
+
width: 60px;
|
|
75
|
+
height: 60px;
|
|
76
|
+
border-radius: 60px;
|
|
77
|
+
border: 1px solid black;
|
|
10
78
|
display: flex;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
// margin: 20px;
|
|
82
|
+
cursor: all-scroll;
|
|
83
|
+
#normal-circle {
|
|
84
|
+
width: 50px;
|
|
85
|
+
height: 50px;
|
|
86
|
+
border-radius: 50px;
|
|
87
|
+
border: 1px solid black;
|
|
20
88
|
}
|
|
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
|
-
width:40px;
|
|
49
|
-
height:30px;
|
|
50
|
-
border-radius: 6px;
|
|
51
|
-
margin:10px;
|
|
52
|
-
border:1px solid black;
|
|
53
|
-
cursor: all-scroll;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
&-right{
|
|
57
|
-
width:90vw;
|
|
58
|
-
height:100vh;
|
|
59
|
-
background-color: rgb(255, 255, 255);
|
|
60
|
-
overflow: scroll;
|
|
61
|
-
padding: 20px;
|
|
62
|
-
.dropzone{
|
|
63
|
-
width:100vw;
|
|
64
|
-
height:100vh;
|
|
65
|
-
background-color: white;
|
|
66
|
-
#circle{
|
|
67
|
-
width: 60px;
|
|
68
|
-
height:60px;
|
|
69
|
-
border-radius: 60px;
|
|
70
|
-
border: 1px solid black;
|
|
71
|
-
// margin: 20px;
|
|
72
|
-
cursor: all-scroll;
|
|
73
|
-
}
|
|
74
|
-
#double-circle{
|
|
75
|
-
width: 60px;
|
|
76
|
-
height:60px;
|
|
77
|
-
border-radius: 60px;
|
|
78
|
-
border: 1px solid black;
|
|
79
|
-
display: flex;
|
|
80
|
-
align-items: center;
|
|
81
|
-
justify-content: center;
|
|
82
|
-
// margin: 20px;
|
|
83
|
-
cursor: all-scroll;
|
|
84
|
-
#normal-circle{
|
|
85
|
-
width: 50px;
|
|
86
|
-
height:50px;
|
|
87
|
-
border-radius: 50px;
|
|
88
|
-
border: 1px solid black;
|
|
89
|
-
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
#dark-circle{
|
|
93
|
-
width: 60px;
|
|
94
|
-
height:60px;
|
|
95
|
-
border-radius: 60px;
|
|
96
|
-
border: 2px solid black;
|
|
97
|
-
// margin: 20px;
|
|
98
|
-
cursor: all-scroll;
|
|
99
|
-
}
|
|
100
|
-
#rectangle{
|
|
101
|
-
width:140px;
|
|
102
|
-
height:80px;
|
|
103
|
-
border-radius: 6px;
|
|
104
|
-
margin:10px;
|
|
105
|
-
border:1px solid black;
|
|
106
|
-
cursor: all-scroll;
|
|
107
|
-
}
|
|
108
|
-
.addrect{
|
|
109
|
-
border: none;
|
|
110
|
-
border-radius: 8px;
|
|
111
|
-
display: flex;
|
|
112
|
-
justify-content: center;
|
|
113
|
-
align-items: center;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
89
|
+
}
|
|
90
|
+
#dark-circle {
|
|
91
|
+
width: 60px;
|
|
92
|
+
height: 60px;
|
|
93
|
+
border-radius: 60px;
|
|
94
|
+
border: 2px solid black;
|
|
95
|
+
// margin: 20px;
|
|
96
|
+
cursor: all-scroll;
|
|
97
|
+
}
|
|
98
|
+
#rectangle {
|
|
99
|
+
width: 140px;
|
|
100
|
+
height: 80px;
|
|
101
|
+
border-radius: 6px;
|
|
102
|
+
margin: 10px;
|
|
103
|
+
border: 1px solid black;
|
|
104
|
+
cursor: all-scroll;
|
|
105
|
+
}
|
|
106
|
+
.addrect {
|
|
107
|
+
border: none;
|
|
108
|
+
border-radius: 8px;
|
|
109
|
+
display: flex;
|
|
110
|
+
justify-content: center;
|
|
111
|
+
align-items: center;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|