Update builder.html
Browse files- builder.html +12 -8
builder.html
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
|
3 |
<html lang="en">
|
4 |
<head>
|
5 |
<meta charset="utf-8">
|
@@ -29,6 +28,7 @@
|
|
29 |
This is a demo content from index.html. For the development, you shouldn't edit this file, instead you can
|
30 |
copy and rename it to _index.html, on next server start the new file will be served, and it will be ignored by git.
|
31 |
</div>
|
|
|
32 |
</div>
|
33 |
<style>
|
34 |
.panel {
|
@@ -43,19 +43,16 @@
|
|
43 |
font: caption;
|
44 |
font-weight: 100;
|
45 |
}
|
46 |
-
|
47 |
.welcome {
|
48 |
text-align: center;
|
49 |
font-weight: 100;
|
50 |
margin: 0px;
|
51 |
}
|
52 |
-
|
53 |
.logo {
|
54 |
width: 70px;
|
55 |
height: 70px;
|
56 |
vertical-align: middle;
|
57 |
}
|
58 |
-
|
59 |
.logo path {
|
60 |
pointer-events: none;
|
61 |
fill: none;
|
@@ -63,19 +60,27 @@
|
|
63 |
stroke-width: 7;
|
64 |
stroke: #fff
|
65 |
}
|
66 |
-
|
67 |
.big-title {
|
68 |
text-align: center;
|
69 |
font-size: 3.5rem;
|
70 |
margin: 15px 0;
|
71 |
}
|
72 |
-
|
73 |
.description {
|
74 |
text-align: justify;
|
75 |
font-size: 1rem;
|
76 |
line-height: 1.5rem;
|
77 |
}
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
</style>
|
80 |
</div>
|
81 |
|
@@ -116,7 +121,6 @@
|
|
116 |
],
|
117 |
},
|
118 |
});
|
119 |
-
|
120 |
editor.BlockManager.add('testBlock', {
|
121 |
label: 'Block',
|
122 |
attributes: { class:'gjs-fonts gjs-f-b1' },
|
|
|
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="utf-8">
|
|
|
28 |
This is a demo content from index.html. For the development, you shouldn't edit this file, instead you can
|
29 |
copy and rename it to _index.html, on next server start the new file will be served, and it will be ignored by git.
|
30 |
</div>
|
31 |
+
<button class="add-button">Ещё добавь</button>
|
32 |
</div>
|
33 |
<style>
|
34 |
.panel {
|
|
|
43 |
font: caption;
|
44 |
font-weight: 100;
|
45 |
}
|
|
|
46 |
.welcome {
|
47 |
text-align: center;
|
48 |
font-weight: 100;
|
49 |
margin: 0px;
|
50 |
}
|
|
|
51 |
.logo {
|
52 |
width: 70px;
|
53 |
height: 70px;
|
54 |
vertical-align: middle;
|
55 |
}
|
|
|
56 |
.logo path {
|
57 |
pointer-events: none;
|
58 |
fill: none;
|
|
|
60 |
stroke-width: 7;
|
61 |
stroke: #fff
|
62 |
}
|
|
|
63 |
.big-title {
|
64 |
text-align: center;
|
65 |
font-size: 3.5rem;
|
66 |
margin: 15px 0;
|
67 |
}
|
|
|
68 |
.description {
|
69 |
text-align: justify;
|
70 |
font-size: 1rem;
|
71 |
line-height: 1.5rem;
|
72 |
}
|
73 |
+
.add-button {
|
74 |
+
display: block;
|
75 |
+
margin: 20px auto 0;
|
76 |
+
padding: 10px 20px;
|
77 |
+
font-size: 1rem;
|
78 |
+
color: #fff;
|
79 |
+
background-color: #007bff;
|
80 |
+
border: none;
|
81 |
+
border-radius: 5px;
|
82 |
+
cursor: pointer;
|
83 |
+
}
|
84 |
</style>
|
85 |
</div>
|
86 |
|
|
|
121 |
],
|
122 |
},
|
123 |
});
|
|
|
124 |
editor.BlockManager.add('testBlock', {
|
125 |
label: 'Block',
|
126 |
attributes: { class:'gjs-fonts gjs-f-b1' },
|