@silexlabs/silex-dashboard 1.0.35 → 1.0.37
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/.gitmodules +3 -0
- package/.silex-client.js +4 -4
- package/.silex.js +8 -8
- package/_includes/connectors.html +19 -51
- package/_includes/websites.html +23 -55
- package/_silex/old/meta.json +1 -0
- package/_site/css/connectors.css +1 -1
- package/_site/css/websites.css +1 -1
- package/_site/en/connectors/index.html +19 -51
- package/_site/en/index.html +23 -55
- package/_site/fr/connectors/index.html +19 -51
- package/_site/fr/index.html +23 -55
- package/package.json +2 -2
- package/pages/connectors.css.liquid +1 -1
- package/pages/websites.css.liquid +1 -1
- package/_silex/default/meta.json +0 -1
- /package/_silex/{default → old}/assets/alex-hoyau.jpg +0 -0
- /package/_silex/{default → old}/assets/alex-small.jpg +0 -0
- /package/_silex/{default → old}/assets/bg-purpel-silex.webp +0 -0
- /package/_silex/{default → old}/assets/bg-silex-purpel.webp +0 -0
- /package/_silex/{default → old}/assets/empty-projects-sos.gif +0 -0
- /package/_silex/{default → old}/assets/empty-projects.gif +0 -0
- /package/_silex/{default → old}/assets/gitlab.svg +0 -0
- /package/_silex/{default → old}/assets/logo-silex.svg +0 -0
- /package/_silex/{default → old}/assets/picto-silex.png +0 -0
- /package/_silex/{default → old}/assets/picto-silex@3x.png +0 -0
- /package/_silex/{default → old}/assets/silex-icon-2018@200px.png +0 -0
- /package/_silex/{default → old}/website.json +0 -0
package/.gitmodules
ADDED
package/.silex-client.js
CHANGED
|
@@ -9,14 +9,14 @@ export default async function(config, options) {
|
|
|
9
9
|
await config.addPlugin(templatePlugin)
|
|
10
10
|
await config.addPlugin(eleventyPlugin, {
|
|
11
11
|
css: {
|
|
12
|
-
path: '
|
|
12
|
+
path: '../pages',
|
|
13
13
|
url: '/css', // Used in the permalink in liquid
|
|
14
14
|
},
|
|
15
15
|
html: {
|
|
16
|
-
path: '
|
|
16
|
+
path: '../_includes',
|
|
17
17
|
},
|
|
18
18
|
assets: {
|
|
19
|
-
path: '
|
|
19
|
+
path: '../assets',
|
|
20
20
|
},
|
|
21
21
|
})
|
|
22
|
-
}
|
|
22
|
+
}
|
package/.silex.js
CHANGED
|
@@ -11,9 +11,9 @@ const nodeModules = require('node_modules-path')
|
|
|
11
11
|
const { ConnectorType } = require('@silexlabs/silex/dist/server/types')
|
|
12
12
|
const StaticPlugin = require('@silexlabs/silex/dist/plugins/server/plugins/server/StaticPlugin').default
|
|
13
13
|
|
|
14
|
-
const FtpConnector = require('@silexlabs/silex/dist/plugins/server/plugins/server/FtpConnector').default
|
|
15
|
-
const GitlabConnector = require('@silexlabs/silex/dist/plugins/server/plugins/server/GitlabConnector').default
|
|
16
|
-
const {FsStorage} = require('@silexlabs/silex/dist/server/server/connectors/FsStorage')
|
|
14
|
+
//const FtpConnector = require('@silexlabs/silex/dist/plugins/server/plugins/server/FtpConnector').default
|
|
15
|
+
//const GitlabConnector = require('@silexlabs/silex/dist/plugins/server/plugins/server/GitlabConnector').default
|
|
16
|
+
//const {FsStorage} = require('@silexlabs/silex/dist/server/server/connectors/FsStorage')
|
|
17
17
|
const {FsHosting} = require('@silexlabs/silex/dist/server/server/connectors/FsHosting')
|
|
18
18
|
|
|
19
19
|
module.exports = async function(config, options) {
|
|
@@ -26,13 +26,10 @@ module.exports = async function(config, options) {
|
|
|
26
26
|
...options,
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
config.
|
|
29
|
+
config.setHostingConnectors([
|
|
30
30
|
new FsHosting(config, {
|
|
31
31
|
path: process.env.SILEX_FS_ROOT,
|
|
32
32
|
}),
|
|
33
|
-
new FtpConnector(config, {
|
|
34
|
-
type: ConnectorType.HOSTING,
|
|
35
|
-
}),
|
|
36
33
|
])
|
|
37
34
|
|
|
38
35
|
//config.addStorageConnector([
|
|
@@ -56,6 +53,9 @@ module.exports = async function(config, options) {
|
|
|
56
53
|
}, {
|
|
57
54
|
path: nodeModules('@silexlabs/silex') + '/@silexlabs/silex/dist/plugins/client/plugins/client/',
|
|
58
55
|
route: '/js',
|
|
56
|
+
}, {
|
|
57
|
+
path: nodeModules('lit-html') + '/lit-html/',
|
|
58
|
+
route: '/js/lit-html/',
|
|
59
59
|
}],
|
|
60
60
|
})
|
|
61
61
|
|
|
@@ -89,4 +89,4 @@ module.exports = async function(config, options) {
|
|
|
89
89
|
})
|
|
90
90
|
app.use(editorRouter)
|
|
91
91
|
})
|
|
92
|
-
}
|
|
92
|
+
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/connectors.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -29,7 +28,6 @@
|
|
|
29
28
|
content: none;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
|
-
body { color:#2B1B63;}
|
|
33
31
|
/*BTNS*/
|
|
34
32
|
.button, .pointer { cursor: pointer!important}
|
|
35
33
|
.button{min-width:110px;}
|
|
@@ -39,6 +37,10 @@ a {
|
|
|
39
37
|
color:#8873FE;}
|
|
40
38
|
a:hover { text-decoration: underline; }
|
|
41
39
|
.uppercase {text-transform: uppercase;}
|
|
40
|
+
.underline:hover{
|
|
41
|
+
text-decoration: underline;
|
|
42
|
+
text-decoration-thickness: from-font;
|
|
43
|
+
text-underline-position: under;}
|
|
42
44
|
|
|
43
45
|
/*footer position*/
|
|
44
46
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -75,7 +77,7 @@ input:focus {
|
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
/*FX ANIMATIONS*/
|
|
78
|
-
/*scale-round-
|
|
80
|
+
/*scale-round-inside_pour-BTN*/
|
|
79
81
|
.fx-scale-round {
|
|
80
82
|
position:relative;
|
|
81
83
|
z-index: 10;
|
|
@@ -105,7 +107,7 @@ input:focus {
|
|
|
105
107
|
transform: scale(1, 1);
|
|
106
108
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
107
109
|
}
|
|
108
|
-
/*scale-round-
|
|
110
|
+
/*scale-round-inside_pour-BTN*/
|
|
109
111
|
/*scale*/
|
|
110
112
|
.fx-scale:hover {
|
|
111
113
|
transform-origin: center bottom;
|
|
@@ -113,43 +115,10 @@ input:focus {
|
|
|
113
115
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
114
116
|
}
|
|
115
117
|
/*flash*/
|
|
116
|
-
.fx-
|
|
118
|
+
.fx-flash:hover {
|
|
117
119
|
animation: flash-in .5s ;
|
|
118
120
|
}
|
|
119
|
-
/* Underline animation */
|
|
120
|
-
.fx-underline {
|
|
121
|
-
position: relative;
|
|
122
|
-
}
|
|
123
|
-
/* Fade in */
|
|
124
|
-
.fx-underline::after {
|
|
125
|
-
content: '';
|
|
126
|
-
position: absolute;
|
|
127
|
-
bottom: -3px;
|
|
128
|
-
left: 0;
|
|
129
|
-
width: 100%;
|
|
130
|
-
height: 0.1em;
|
|
131
|
-
background-color: #8873fe;
|
|
132
|
-
opacity: 0;
|
|
133
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.fx-underline:hover::after,
|
|
137
|
-
.fx-underline:focus::after {
|
|
138
|
-
opacity: 1;
|
|
139
|
-
transform: translate3d(0, 2.2em, 0);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/* Scale from center */
|
|
143
|
-
.fx-underline:after {
|
|
144
|
-
transform: scale(0);
|
|
145
|
-
transform-origin: center;
|
|
146
|
-
}
|
|
147
121
|
|
|
148
|
-
.fx-underline:hover::after,
|
|
149
|
-
.fx-underline:focus::after{
|
|
150
|
-
transform: scale(1);
|
|
151
|
-
}
|
|
152
|
-
/* Underline animation */
|
|
153
122
|
/*flash-in animation*/
|
|
154
123
|
@keyframes flash-in{
|
|
155
124
|
0% {opacity:0;}
|
|
@@ -159,16 +128,16 @@ input:focus {
|
|
|
159
128
|
|
|
160
129
|
/*FX ANIMATIONS*/
|
|
161
130
|
</style>
|
|
162
|
-
|
|
131
|
+
{% render "api-connectors.js.html" frontmatter: frontmatter page: page site: site api-translations: api-translations lang: lang %}
|
|
163
132
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
133
|
+
<title>{{ title }}</title>
|
|
134
|
+
<link rel="icon" href="" />
|
|
135
|
+
<meta property="description" content=""/>
|
|
167
136
|
<meta property="og:title" content=""/>
|
|
168
137
|
<meta property="og:description" content=""/>
|
|
169
138
|
<meta property="og:image" content=""/>
|
|
170
|
-
|
|
171
|
-
|
|
139
|
+
</head>
|
|
140
|
+
<body
|
|
172
141
|
id="i2hcfw"
|
|
173
142
|
class="body app"
|
|
174
143
|
|
|
@@ -270,5 +239,4 @@ input:focus {
|
|
|
270
239
|
v-if="error" @click="logout()"
|
|
271
240
|
|
|
272
241
|
>{{ api-translations[lang]["Logout"] }}</div></div></div></body>
|
|
273
|
-
|
|
274
|
-
|
|
242
|
+
</html>
|
package/_includes/websites.html
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/websites.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -29,7 +28,6 @@
|
|
|
29
28
|
content: none;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
|
-
body { color:#2B1B63;}
|
|
33
31
|
/*BTNS*/
|
|
34
32
|
.button, .pointer { cursor: pointer!important}
|
|
35
33
|
.button{min-width:110px;}
|
|
@@ -39,6 +37,10 @@ a {
|
|
|
39
37
|
color:#8873FE;}
|
|
40
38
|
a:hover { text-decoration: underline; }
|
|
41
39
|
.uppercase {text-transform: uppercase;}
|
|
40
|
+
.underline:hover{
|
|
41
|
+
text-decoration: underline;
|
|
42
|
+
text-decoration-thickness: from-font;
|
|
43
|
+
text-underline-position: under;}
|
|
42
44
|
|
|
43
45
|
/*footer position*/
|
|
44
46
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -75,7 +77,7 @@ input:focus {
|
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
/*FX ANIMATIONS*/
|
|
78
|
-
/*scale-round-
|
|
80
|
+
/*scale-round-inside_pour-BTN*/
|
|
79
81
|
.fx-scale-round {
|
|
80
82
|
position:relative;
|
|
81
83
|
z-index: 10;
|
|
@@ -105,7 +107,7 @@ input:focus {
|
|
|
105
107
|
transform: scale(1, 1);
|
|
106
108
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
107
109
|
}
|
|
108
|
-
/*scale-round-
|
|
110
|
+
/*scale-round-inside_pour-BTN*/
|
|
109
111
|
/*scale*/
|
|
110
112
|
.fx-scale:hover {
|
|
111
113
|
transform-origin: center bottom;
|
|
@@ -113,43 +115,10 @@ input:focus {
|
|
|
113
115
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
114
116
|
}
|
|
115
117
|
/*flash*/
|
|
116
|
-
.fx-
|
|
118
|
+
.fx-flash:hover {
|
|
117
119
|
animation: flash-in .5s ;
|
|
118
120
|
}
|
|
119
|
-
/* Underline animation */
|
|
120
|
-
.fx-underline {
|
|
121
|
-
position: relative;
|
|
122
|
-
}
|
|
123
|
-
/* Fade in */
|
|
124
|
-
.fx-underline::after {
|
|
125
|
-
content: '';
|
|
126
|
-
position: absolute;
|
|
127
|
-
bottom: -3px;
|
|
128
|
-
left: 0;
|
|
129
|
-
width: 100%;
|
|
130
|
-
height: 0.1em;
|
|
131
|
-
background-color: #8873fe;
|
|
132
|
-
opacity: 0;
|
|
133
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.fx-underline:hover::after,
|
|
137
|
-
.fx-underline:focus::after {
|
|
138
|
-
opacity: 1;
|
|
139
|
-
transform: translate3d(0, 2.2em, 0);
|
|
140
|
-
}
|
|
141
121
|
|
|
142
|
-
/* Scale from center */
|
|
143
|
-
.fx-underline:after {
|
|
144
|
-
transform: scale(0);
|
|
145
|
-
transform-origin: center;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.fx-underline:hover::after,
|
|
149
|
-
.fx-underline:focus::after{
|
|
150
|
-
transform: scale(1);
|
|
151
|
-
}
|
|
152
|
-
/* Underline animation */
|
|
153
122
|
/*flash-in animation*/
|
|
154
123
|
@keyframes flash-in{
|
|
155
124
|
0% {opacity:0;}
|
|
@@ -159,16 +128,16 @@ input:focus {
|
|
|
159
128
|
|
|
160
129
|
/*FX ANIMATIONS*/
|
|
161
130
|
</style>
|
|
162
|
-
|
|
131
|
+
{% render "api-websites.js.html" frontmatter: frontmatter page: page site: site api-translations: api-translations lang: lang %}
|
|
163
132
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
133
|
+
<title>{{ title }}</title>
|
|
134
|
+
<link rel="icon" href="" />
|
|
135
|
+
<meta property="description" content=""/>
|
|
167
136
|
<meta property="og:title" content=""/>
|
|
168
137
|
<meta property="og:description" content=""/>
|
|
169
138
|
<meta property="og:image" content=""/>
|
|
170
|
-
|
|
171
|
-
|
|
139
|
+
</head>
|
|
140
|
+
<body
|
|
172
141
|
id="ik0i"
|
|
173
142
|
class="body loading app before-js"
|
|
174
143
|
|
|
@@ -280,7 +249,7 @@ input:focus {
|
|
|
280
249
|
v-if="!empty"
|
|
281
250
|
|
|
282
251
|
><BUTTON
|
|
283
|
-
|
|
252
|
+
id="ic92g"
|
|
284
253
|
class="button button--primary rounded top-space-40 fx-scale-round "
|
|
285
254
|
@click="showCreationForm = !showCreationForm" v-if="!showCreationForm"
|
|
286
255
|
|
|
@@ -356,7 +325,7 @@ input:focus {
|
|
|
356
325
|
|
|
357
326
|
><H3
|
|
358
327
|
id="i69a7"
|
|
359
|
-
class="right-space-40 color-2B1B63-80 uppercase pointer "
|
|
328
|
+
class="right-space-40 color-2B1B63-80 uppercase pointer fx-flash full-width button-bar__title underline "
|
|
360
329
|
v-text="website.name || website.id" @click="openEditor(website.websiteId, '{{lang}}')"
|
|
361
330
|
|
|
362
331
|
>My first website</H3><P
|
|
@@ -376,12 +345,12 @@ input:focus {
|
|
|
376
345
|
|
|
377
346
|
><BUTTON
|
|
378
347
|
id="ifyf6p"
|
|
379
|
-
class="right-space-20 bold button-bar__item--link pointer fx-underline fx-
|
|
348
|
+
class="right-space-20 bold button-bar__item--link pointer fx-scale underline fx-flash "
|
|
380
349
|
@click="openEditor(website.websiteId, '{{lang}}')"
|
|
381
350
|
|
|
382
351
|
>{{ list-edit }}</BUTTON><BUTTON
|
|
383
352
|
id="ihf6ew"
|
|
384
|
-
class="right-space-20 button-bar__item--link pointer fx-underline fx-
|
|
353
|
+
class="right-space-20 button-bar__item--link pointer fx-scale underline fx-flash "
|
|
385
354
|
@click="renameWebsite(website.websiteId, '{{lang}}')"
|
|
386
355
|
|
|
387
356
|
>{{ list-rename }}</BUTTON><BUTTON
|
|
@@ -560,5 +529,4 @@ input:focus {
|
|
|
560
529
|
|
|
561
530
|
|
|
562
531
|
>{{ item.label }}</A>{% endfor %}</div></FOOTER></body>
|
|
563
|
-
|
|
564
|
-
|
|
532
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"old"}
|
package/_site/css/connectors.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.nav__item.active{color:black;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.lang__item{margin:0px 5px 0px 5px;}.nav__logo{height:50px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{width:100%;display:flex;justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}#in5jeq{display:flex;}#ij139z{position:absolute;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.padding-100-30{padding:100px 30px 80px 30px;}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:880px;width:100%;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:40px;width:40px;margin:5px 5px 5px 5px;}.button-bar__item--secondary{font-size:0.8rem;}
|
|
1
|
+
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.nav__item.active{color:black;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.lang__item{margin:0px 5px 0px 5px;}.nav__logo{height:50px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{width:100%;display:flex;justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}#in5jeq{display:flex;}#ij139z{position:absolute;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.padding-100-30{padding:100px 30px 80px 30px;}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:880px;width:100%;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:40px;width:40px;margin:5px 5px 5px 5px;}.button-bar__item--secondary{font-size:0.8rem;}
|
package/_site/css/websites.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.padding-normal{padding:0px 24px 0px 24px;}#i9jq{display:flex;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}#ibsgw{position:relative;top:3px;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.rounded{border-radius:4px 4px 4px 4px;}.footer{display:flex;margin:50px 0px
|
|
1
|
+
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.padding-normal{padding:0px 24px 0px 24px;}#i9jq{display:flex;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}#ibsgw{position:relative;top:3px;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.rounded{border-radius:4px 4px 4px 4px;}.footer{display:flex;margin:50px 0px 0px 0px;background-color:#ffffff;align-items:center;justify-content:space-evenly;padding:30px 30px 60px 30px;}.skeleton-text.skeleton{background-color:#dddddd;color:transparent;opacity:0.31;border-radius:5px 5px 5px 5px;}.skeleton.skeleton-button{color:transparent;opacity:0.31;background-color:#dddddd;border-radius:5px 5px 5px 5px;width:140px;}.skeleton-anim{position:relative;}.nav__item.active{color:black;}.margin-20{margin:20px 0px 20px 0px;}#i0ro3{display:none;}.loading__item.loaded-true{display:none;}.flex-no-shrink{flex-shrink:0;}.form{padding:10px 0px 10px 0px;border-radius:5px 5px 5px 5px;}#i1nmbc{flex-shrink:0;}.input{padding:10px 10px 10px 10px;background-color:transparent;border:2px solid #8873fe;margin:10px 0px 10px 0px;border-radius:4px 4px 4px 4px;}.full-width{width:100%;}.v-space{margin:10px 0px 10px 0px;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box__header{margin:0px 0px 0px 0px;padding:10px 0px 10px 0px;font-weight:700;font-size:1.625rem;color:rgba(43,27,99,0.5);}.box.flex-between{align-items:center;}.flex-between{display:flex;align-items:center;justify-content:space-between;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.icon-font{font-size:1.5rem;line-height:1px;margin:0px 2px 0px 2px;}.lang__item{margin:0px 5px 0px 5px;}.top-space-40{margin:40px 0 0 0;}.nav__logo{height:50px;}.user-icon__image{width:100%;height:100%;}.user__wrapper{border:1px solid white;display:flex;flex-direction:column;justify-content:center;align-items:center;}.right-space-20{margin:0px 20px 0px 0px;}#iksw4d{padding:10px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}.user-icon__wrapper{border:1px solid #f0f0f0;background-color:#f0f0f0;border-radius:50% 50% 50% 50%;width:40px;height:40px;padding:5px 5px 5px 5px;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.section-top{max-width:1200px;padding:40px 30px 40px 30px;height:226px;display:flex;flex-direction:column;justify-content:center;margin:0px auto 0px auto;}.text-centered{text-align:center;}.box-message{background-color:rgba(43,27,99,0.3);border-radius:4px 4px 4px 4px;padding:20px 30px 20px 30px;margin:10px 0px 10px 0px;}.text-white{color:#ffffff;}.bold{font-weight:800;}.button-bar__item--link{background-color:transparent;border:0px solid black;font-size:0.8rem;color:#8873fe;}.padding-30{padding:30px 30px 30px 30px;}.right-space-40{margin:0 40px 0 0;}.title-26{font-size:1.625rem;margin:10px 0px 10px 0px;}.empty-image{min-height:500px;background-image:url(/assets/empty-projects-sos.gif);background-repeat:no-repeat;background-position:center center;background-attachment:scroll;background-size:contain;}.padding-50-30{padding:50px 30px 50px 30px;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.color-2B1B63-80{color:rgba(43,27,99,0.8);}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.box-message-text{margin:0px 0 0 0;font-weight:300;}.website-max-width{max-width:1200px;}.margin-80{margin:80px auto 80px auto;}.button-bar__item--secondary{font-size:0.8rem;}.skeleton{line-height:1.1rem;}#isucae{min-height:100px;}.footer__column{display:flex;flex-direction:column;}#iahjww{padding:10px;}#ie28kq{min-height:100px;}.footer__item{padding:10px 10px 10px 10px;}#igsxoc{position:relative;top:3px;}.box--centered{display:flex;flex-direction:column;align-items:center;}.button-bar__title:hover{color:#8873fe;}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/connectors.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -33,7 +32,6 @@
|
|
|
33
32
|
content: none;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
|
-
body { color:#2B1B63;}
|
|
37
35
|
/*BTNS*/
|
|
38
36
|
.button, .pointer { cursor: pointer!important}
|
|
39
37
|
.button{min-width:110px;}
|
|
@@ -43,6 +41,10 @@ a {
|
|
|
43
41
|
color:#8873FE;}
|
|
44
42
|
a:hover { text-decoration: underline; }
|
|
45
43
|
.uppercase {text-transform: uppercase;}
|
|
44
|
+
.underline:hover{
|
|
45
|
+
text-decoration: underline;
|
|
46
|
+
text-decoration-thickness: from-font;
|
|
47
|
+
text-underline-position: under;}
|
|
46
48
|
|
|
47
49
|
/*footer position*/
|
|
48
50
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -79,7 +81,7 @@ input:focus {
|
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
83
|
/*FX ANIMATIONS*/
|
|
82
|
-
/*scale-round-
|
|
84
|
+
/*scale-round-inside_pour-BTN*/
|
|
83
85
|
.fx-scale-round {
|
|
84
86
|
position:relative;
|
|
85
87
|
z-index: 10;
|
|
@@ -109,7 +111,7 @@ input:focus {
|
|
|
109
111
|
transform: scale(1, 1);
|
|
110
112
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
111
113
|
}
|
|
112
|
-
/*scale-round-
|
|
114
|
+
/*scale-round-inside_pour-BTN*/
|
|
113
115
|
/*scale*/
|
|
114
116
|
.fx-scale:hover {
|
|
115
117
|
transform-origin: center bottom;
|
|
@@ -117,43 +119,10 @@ input:focus {
|
|
|
117
119
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
118
120
|
}
|
|
119
121
|
/*flash*/
|
|
120
|
-
.fx-
|
|
122
|
+
.fx-flash:hover {
|
|
121
123
|
animation: flash-in .5s ;
|
|
122
124
|
}
|
|
123
|
-
/* Underline animation */
|
|
124
|
-
.fx-underline {
|
|
125
|
-
position: relative;
|
|
126
|
-
}
|
|
127
|
-
/* Fade in */
|
|
128
|
-
.fx-underline::after {
|
|
129
|
-
content: '';
|
|
130
|
-
position: absolute;
|
|
131
|
-
bottom: -3px;
|
|
132
|
-
left: 0;
|
|
133
|
-
width: 100%;
|
|
134
|
-
height: 0.1em;
|
|
135
|
-
background-color: #8873fe;
|
|
136
|
-
opacity: 0;
|
|
137
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fx-underline:hover::after,
|
|
141
|
-
.fx-underline:focus::after {
|
|
142
|
-
opacity: 1;
|
|
143
|
-
transform: translate3d(0, 2.2em, 0);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
/* Scale from center */
|
|
147
|
-
.fx-underline:after {
|
|
148
|
-
transform: scale(0);
|
|
149
|
-
transform-origin: center;
|
|
150
|
-
}
|
|
151
125
|
|
|
152
|
-
.fx-underline:hover::after,
|
|
153
|
-
.fx-underline:focus::after{
|
|
154
|
-
transform: scale(1);
|
|
155
|
-
}
|
|
156
|
-
/* Underline animation */
|
|
157
126
|
/*flash-in animation*/
|
|
158
127
|
@keyframes flash-in{
|
|
159
128
|
0% {opacity:0;}
|
|
@@ -163,7 +132,7 @@ input:focus {
|
|
|
163
132
|
|
|
164
133
|
/*FX ANIMATIONS*/
|
|
165
134
|
</style>
|
|
166
|
-
|
|
135
|
+
<script src="/js/vue.global.js"></script>
|
|
167
136
|
<script src="/js/main.js"></script>
|
|
168
137
|
<script type="module">
|
|
169
138
|
window.addEventListener('load', function() {
|
|
@@ -260,14 +229,14 @@ window.addEventListener('load', function() {
|
|
|
260
229
|
})
|
|
261
230
|
</script>
|
|
262
231
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
232
|
+
<title></title>
|
|
233
|
+
<link rel="icon" href="" />
|
|
234
|
+
<meta property="description" content=""/>
|
|
266
235
|
<meta property="og:title" content=""/>
|
|
267
236
|
<meta property="og:description" content=""/>
|
|
268
237
|
<meta property="og:image" content=""/>
|
|
269
|
-
|
|
270
|
-
|
|
238
|
+
</head>
|
|
239
|
+
<body
|
|
271
240
|
id="i2hcfw"
|
|
272
241
|
class="body app"
|
|
273
242
|
|
|
@@ -393,5 +362,4 @@ window.addEventListener('load', function() {
|
|
|
393
362
|
v-if="error" @click="logout()"
|
|
394
363
|
|
|
395
364
|
>Logout</div></div></div></body>
|
|
396
|
-
|
|
397
|
-
|
|
365
|
+
</html>
|
package/_site/en/index.html
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/websites.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -33,7 +32,6 @@
|
|
|
33
32
|
content: none;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
|
-
body { color:#2B1B63;}
|
|
37
35
|
/*BTNS*/
|
|
38
36
|
.button, .pointer { cursor: pointer!important}
|
|
39
37
|
.button{min-width:110px;}
|
|
@@ -43,6 +41,10 @@ a {
|
|
|
43
41
|
color:#8873FE;}
|
|
44
42
|
a:hover { text-decoration: underline; }
|
|
45
43
|
.uppercase {text-transform: uppercase;}
|
|
44
|
+
.underline:hover{
|
|
45
|
+
text-decoration: underline;
|
|
46
|
+
text-decoration-thickness: from-font;
|
|
47
|
+
text-underline-position: under;}
|
|
46
48
|
|
|
47
49
|
/*footer position*/
|
|
48
50
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -79,7 +81,7 @@ input:focus {
|
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
83
|
/*FX ANIMATIONS*/
|
|
82
|
-
/*scale-round-
|
|
84
|
+
/*scale-round-inside_pour-BTN*/
|
|
83
85
|
.fx-scale-round {
|
|
84
86
|
position:relative;
|
|
85
87
|
z-index: 10;
|
|
@@ -109,7 +111,7 @@ input:focus {
|
|
|
109
111
|
transform: scale(1, 1);
|
|
110
112
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
111
113
|
}
|
|
112
|
-
/*scale-round-
|
|
114
|
+
/*scale-round-inside_pour-BTN*/
|
|
113
115
|
/*scale*/
|
|
114
116
|
.fx-scale:hover {
|
|
115
117
|
transform-origin: center bottom;
|
|
@@ -117,43 +119,10 @@ input:focus {
|
|
|
117
119
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
118
120
|
}
|
|
119
121
|
/*flash*/
|
|
120
|
-
.fx-
|
|
122
|
+
.fx-flash:hover {
|
|
121
123
|
animation: flash-in .5s ;
|
|
122
124
|
}
|
|
123
|
-
/* Underline animation */
|
|
124
|
-
.fx-underline {
|
|
125
|
-
position: relative;
|
|
126
|
-
}
|
|
127
|
-
/* Fade in */
|
|
128
|
-
.fx-underline::after {
|
|
129
|
-
content: '';
|
|
130
|
-
position: absolute;
|
|
131
|
-
bottom: -3px;
|
|
132
|
-
left: 0;
|
|
133
|
-
width: 100%;
|
|
134
|
-
height: 0.1em;
|
|
135
|
-
background-color: #8873fe;
|
|
136
|
-
opacity: 0;
|
|
137
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fx-underline:hover::after,
|
|
141
|
-
.fx-underline:focus::after {
|
|
142
|
-
opacity: 1;
|
|
143
|
-
transform: translate3d(0, 2.2em, 0);
|
|
144
|
-
}
|
|
145
125
|
|
|
146
|
-
/* Scale from center */
|
|
147
|
-
.fx-underline:after {
|
|
148
|
-
transform: scale(0);
|
|
149
|
-
transform-origin: center;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.fx-underline:hover::after,
|
|
153
|
-
.fx-underline:focus::after{
|
|
154
|
-
transform: scale(1);
|
|
155
|
-
}
|
|
156
|
-
/* Underline animation */
|
|
157
126
|
/*flash-in animation*/
|
|
158
127
|
@keyframes flash-in{
|
|
159
128
|
0% {opacity:0;}
|
|
@@ -163,7 +132,7 @@ input:focus {
|
|
|
163
132
|
|
|
164
133
|
/*FX ANIMATIONS*/
|
|
165
134
|
</style>
|
|
166
|
-
|
|
135
|
+
<script src="/js/vue.global.js"></script>
|
|
167
136
|
<script src="/js/main.js"></script>
|
|
168
137
|
<script type="module">
|
|
169
138
|
const CONNECTORS_PATH = '/connectors/'
|
|
@@ -334,14 +303,14 @@ window.addEventListener('load', function() {
|
|
|
334
303
|
</script>
|
|
335
304
|
|
|
336
305
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
306
|
+
<title>Silex Dashboard</title>
|
|
307
|
+
<link rel="icon" href="" />
|
|
308
|
+
<meta property="description" content=""/>
|
|
340
309
|
<meta property="og:title" content=""/>
|
|
341
310
|
<meta property="og:description" content=""/>
|
|
342
311
|
<meta property="og:image" content=""/>
|
|
343
|
-
|
|
344
|
-
|
|
312
|
+
</head>
|
|
313
|
+
<body
|
|
345
314
|
id="ik0i"
|
|
346
315
|
class="body loading app before-js"
|
|
347
316
|
|
|
@@ -477,7 +446,7 @@ window.addEventListener('load', function() {
|
|
|
477
446
|
v-if="!empty"
|
|
478
447
|
|
|
479
448
|
><BUTTON
|
|
480
|
-
|
|
449
|
+
id="ic92g"
|
|
481
450
|
class="button button--primary rounded top-space-40 fx-scale-round "
|
|
482
451
|
@click="showCreationForm = !showCreationForm" v-if="!showCreationForm"
|
|
483
452
|
|
|
@@ -553,7 +522,7 @@ window.addEventListener('load', function() {
|
|
|
553
522
|
|
|
554
523
|
><H3
|
|
555
524
|
id="i69a7"
|
|
556
|
-
class="right-space-40 color-2B1B63-80 uppercase pointer "
|
|
525
|
+
class="right-space-40 color-2B1B63-80 uppercase pointer fx-flash full-width button-bar__title underline "
|
|
557
526
|
v-text="website.name || website.id" @click="openEditor(website.websiteId, 'en')"
|
|
558
527
|
|
|
559
528
|
>My first website</H3><P
|
|
@@ -573,12 +542,12 @@ window.addEventListener('load', function() {
|
|
|
573
542
|
|
|
574
543
|
><BUTTON
|
|
575
544
|
id="ifyf6p"
|
|
576
|
-
class="right-space-20 bold button-bar__item--link pointer fx-underline fx-
|
|
545
|
+
class="right-space-20 bold button-bar__item--link pointer fx-scale underline fx-flash "
|
|
577
546
|
@click="openEditor(website.websiteId, 'en')"
|
|
578
547
|
|
|
579
548
|
>Edit</BUTTON><BUTTON
|
|
580
549
|
id="ihf6ew"
|
|
581
|
-
class="right-space-20 button-bar__item--link pointer fx-underline fx-
|
|
550
|
+
class="right-space-20 button-bar__item--link pointer fx-scale underline fx-flash "
|
|
582
551
|
@click="renameWebsite(website.websiteId, 'en')"
|
|
583
552
|
|
|
584
553
|
>Rename</BUTTON><BUTTON
|
|
@@ -787,5 +756,4 @@ window.addEventListener('load', function() {
|
|
|
787
756
|
|
|
788
757
|
|
|
789
758
|
>Youtube - tutorials and more</A></div></FOOTER></body>
|
|
790
|
-
|
|
791
|
-
|
|
759
|
+
</html>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/connectors.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -33,7 +32,6 @@
|
|
|
33
32
|
content: none;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
|
-
body { color:#2B1B63;}
|
|
37
35
|
/*BTNS*/
|
|
38
36
|
.button, .pointer { cursor: pointer!important}
|
|
39
37
|
.button{min-width:110px;}
|
|
@@ -43,6 +41,10 @@ a {
|
|
|
43
41
|
color:#8873FE;}
|
|
44
42
|
a:hover { text-decoration: underline; }
|
|
45
43
|
.uppercase {text-transform: uppercase;}
|
|
44
|
+
.underline:hover{
|
|
45
|
+
text-decoration: underline;
|
|
46
|
+
text-decoration-thickness: from-font;
|
|
47
|
+
text-underline-position: under;}
|
|
46
48
|
|
|
47
49
|
/*footer position*/
|
|
48
50
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -79,7 +81,7 @@ input:focus {
|
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
83
|
/*FX ANIMATIONS*/
|
|
82
|
-
/*scale-round-
|
|
84
|
+
/*scale-round-inside_pour-BTN*/
|
|
83
85
|
.fx-scale-round {
|
|
84
86
|
position:relative;
|
|
85
87
|
z-index: 10;
|
|
@@ -109,7 +111,7 @@ input:focus {
|
|
|
109
111
|
transform: scale(1, 1);
|
|
110
112
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
111
113
|
}
|
|
112
|
-
/*scale-round-
|
|
114
|
+
/*scale-round-inside_pour-BTN*/
|
|
113
115
|
/*scale*/
|
|
114
116
|
.fx-scale:hover {
|
|
115
117
|
transform-origin: center bottom;
|
|
@@ -117,43 +119,10 @@ input:focus {
|
|
|
117
119
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
118
120
|
}
|
|
119
121
|
/*flash*/
|
|
120
|
-
.fx-
|
|
122
|
+
.fx-flash:hover {
|
|
121
123
|
animation: flash-in .5s ;
|
|
122
124
|
}
|
|
123
|
-
/* Underline animation */
|
|
124
|
-
.fx-underline {
|
|
125
|
-
position: relative;
|
|
126
|
-
}
|
|
127
|
-
/* Fade in */
|
|
128
|
-
.fx-underline::after {
|
|
129
|
-
content: '';
|
|
130
|
-
position: absolute;
|
|
131
|
-
bottom: -3px;
|
|
132
|
-
left: 0;
|
|
133
|
-
width: 100%;
|
|
134
|
-
height: 0.1em;
|
|
135
|
-
background-color: #8873fe;
|
|
136
|
-
opacity: 0;
|
|
137
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fx-underline:hover::after,
|
|
141
|
-
.fx-underline:focus::after {
|
|
142
|
-
opacity: 1;
|
|
143
|
-
transform: translate3d(0, 2.2em, 0);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
/* Scale from center */
|
|
147
|
-
.fx-underline:after {
|
|
148
|
-
transform: scale(0);
|
|
149
|
-
transform-origin: center;
|
|
150
|
-
}
|
|
151
125
|
|
|
152
|
-
.fx-underline:hover::after,
|
|
153
|
-
.fx-underline:focus::after{
|
|
154
|
-
transform: scale(1);
|
|
155
|
-
}
|
|
156
|
-
/* Underline animation */
|
|
157
126
|
/*flash-in animation*/
|
|
158
127
|
@keyframes flash-in{
|
|
159
128
|
0% {opacity:0;}
|
|
@@ -163,7 +132,7 @@ input:focus {
|
|
|
163
132
|
|
|
164
133
|
/*FX ANIMATIONS*/
|
|
165
134
|
</style>
|
|
166
|
-
|
|
135
|
+
<script src="/js/vue.global.js"></script>
|
|
167
136
|
<script src="/js/main.js"></script>
|
|
168
137
|
<script type="module">
|
|
169
138
|
window.addEventListener('load', function() {
|
|
@@ -260,14 +229,14 @@ window.addEventListener('load', function() {
|
|
|
260
229
|
})
|
|
261
230
|
</script>
|
|
262
231
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
232
|
+
<title></title>
|
|
233
|
+
<link rel="icon" href="" />
|
|
234
|
+
<meta property="description" content=""/>
|
|
266
235
|
<meta property="og:title" content=""/>
|
|
267
236
|
<meta property="og:description" content=""/>
|
|
268
237
|
<meta property="og:image" content=""/>
|
|
269
|
-
|
|
270
|
-
|
|
238
|
+
</head>
|
|
239
|
+
<body
|
|
271
240
|
id="i2hcfw"
|
|
272
241
|
class="body app"
|
|
273
242
|
|
|
@@ -393,5 +362,4 @@ window.addEventListener('load', function() {
|
|
|
393
362
|
v-if="error" @click="logout()"
|
|
394
363
|
|
|
395
364
|
>Déconnexion</div></div></div></body>
|
|
396
|
-
|
|
397
|
-
|
|
365
|
+
</html>
|
package/_site/fr/index.html
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/websites.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
@@ -33,7 +32,6 @@
|
|
|
33
32
|
content: none;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
|
-
body { color:#2B1B63;}
|
|
37
35
|
/*BTNS*/
|
|
38
36
|
.button, .pointer { cursor: pointer!important}
|
|
39
37
|
.button{min-width:110px;}
|
|
@@ -43,6 +41,10 @@ a {
|
|
|
43
41
|
color:#8873FE;}
|
|
44
42
|
a:hover { text-decoration: underline; }
|
|
45
43
|
.uppercase {text-transform: uppercase;}
|
|
44
|
+
.underline:hover{
|
|
45
|
+
text-decoration: underline;
|
|
46
|
+
text-decoration-thickness: from-font;
|
|
47
|
+
text-underline-position: under;}
|
|
46
48
|
|
|
47
49
|
/*footer position*/
|
|
48
50
|
.main-min-height {min-height: calc(100vh - 560px);}
|
|
@@ -79,7 +81,7 @@ input:focus {
|
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
83
|
/*FX ANIMATIONS*/
|
|
82
|
-
/*scale-round-
|
|
84
|
+
/*scale-round-inside_pour-BTN*/
|
|
83
85
|
.fx-scale-round {
|
|
84
86
|
position:relative;
|
|
85
87
|
z-index: 10;
|
|
@@ -109,7 +111,7 @@ input:focus {
|
|
|
109
111
|
transform: scale(1, 1);
|
|
110
112
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
111
113
|
}
|
|
112
|
-
/*scale-round-
|
|
114
|
+
/*scale-round-inside_pour-BTN*/
|
|
113
115
|
/*scale*/
|
|
114
116
|
.fx-scale:hover {
|
|
115
117
|
transform-origin: center bottom;
|
|
@@ -117,43 +119,10 @@ input:focus {
|
|
|
117
119
|
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
118
120
|
}
|
|
119
121
|
/*flash*/
|
|
120
|
-
.fx-
|
|
122
|
+
.fx-flash:hover {
|
|
121
123
|
animation: flash-in .5s ;
|
|
122
124
|
}
|
|
123
|
-
/* Underline animation */
|
|
124
|
-
.fx-underline {
|
|
125
|
-
position: relative;
|
|
126
|
-
}
|
|
127
|
-
/* Fade in */
|
|
128
|
-
.fx-underline::after {
|
|
129
|
-
content: '';
|
|
130
|
-
position: absolute;
|
|
131
|
-
bottom: -3px;
|
|
132
|
-
left: 0;
|
|
133
|
-
width: 100%;
|
|
134
|
-
height: 0.1em;
|
|
135
|
-
background-color: #8873fe;
|
|
136
|
-
opacity: 0;
|
|
137
|
-
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fx-underline:hover::after,
|
|
141
|
-
.fx-underline:focus::after {
|
|
142
|
-
opacity: 1;
|
|
143
|
-
transform: translate3d(0, 2.2em, 0);
|
|
144
|
-
}
|
|
145
125
|
|
|
146
|
-
/* Scale from center */
|
|
147
|
-
.fx-underline:after {
|
|
148
|
-
transform: scale(0);
|
|
149
|
-
transform-origin: center;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.fx-underline:hover::after,
|
|
153
|
-
.fx-underline:focus::after{
|
|
154
|
-
transform: scale(1);
|
|
155
|
-
}
|
|
156
|
-
/* Underline animation */
|
|
157
126
|
/*flash-in animation*/
|
|
158
127
|
@keyframes flash-in{
|
|
159
128
|
0% {opacity:0;}
|
|
@@ -163,7 +132,7 @@ input:focus {
|
|
|
163
132
|
|
|
164
133
|
/*FX ANIMATIONS*/
|
|
165
134
|
</style>
|
|
166
|
-
|
|
135
|
+
<script src="/js/vue.global.js"></script>
|
|
167
136
|
<script src="/js/main.js"></script>
|
|
168
137
|
<script type="module">
|
|
169
138
|
const CONNECTORS_PATH = '/connectors/'
|
|
@@ -334,14 +303,14 @@ window.addEventListener('load', function() {
|
|
|
334
303
|
</script>
|
|
335
304
|
|
|
336
305
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
306
|
+
<title>Dashboard Silex</title>
|
|
307
|
+
<link rel="icon" href="" />
|
|
308
|
+
<meta property="description" content=""/>
|
|
340
309
|
<meta property="og:title" content=""/>
|
|
341
310
|
<meta property="og:description" content=""/>
|
|
342
311
|
<meta property="og:image" content=""/>
|
|
343
|
-
|
|
344
|
-
|
|
312
|
+
</head>
|
|
313
|
+
<body
|
|
345
314
|
id="ik0i"
|
|
346
315
|
class="body loading app before-js"
|
|
347
316
|
|
|
@@ -477,7 +446,7 @@ window.addEventListener('load', function() {
|
|
|
477
446
|
v-if="!empty"
|
|
478
447
|
|
|
479
448
|
><BUTTON
|
|
480
|
-
|
|
449
|
+
id="ic92g"
|
|
481
450
|
class="button button--primary rounded top-space-40 fx-scale-round "
|
|
482
451
|
@click="showCreationForm = !showCreationForm" v-if="!showCreationForm"
|
|
483
452
|
|
|
@@ -553,7 +522,7 @@ window.addEventListener('load', function() {
|
|
|
553
522
|
|
|
554
523
|
><H3
|
|
555
524
|
id="i69a7"
|
|
556
|
-
class="right-space-40 color-2B1B63-80 uppercase pointer "
|
|
525
|
+
class="right-space-40 color-2B1B63-80 uppercase pointer fx-flash full-width button-bar__title underline "
|
|
557
526
|
v-text="website.name || website.id" @click="openEditor(website.websiteId, 'fr')"
|
|
558
527
|
|
|
559
528
|
>My first website</H3><P
|
|
@@ -573,12 +542,12 @@ window.addEventListener('load', function() {
|
|
|
573
542
|
|
|
574
543
|
><BUTTON
|
|
575
544
|
id="ifyf6p"
|
|
576
|
-
class="right-space-20 bold button-bar__item--link pointer fx-underline fx-
|
|
545
|
+
class="right-space-20 bold button-bar__item--link pointer fx-scale underline fx-flash "
|
|
577
546
|
@click="openEditor(website.websiteId, 'fr')"
|
|
578
547
|
|
|
579
548
|
>Editer</BUTTON><BUTTON
|
|
580
549
|
id="ihf6ew"
|
|
581
|
-
class="right-space-20 button-bar__item--link pointer fx-underline fx-
|
|
550
|
+
class="right-space-20 button-bar__item--link pointer fx-scale underline fx-flash "
|
|
582
551
|
@click="renameWebsite(website.websiteId, 'fr')"
|
|
583
552
|
|
|
584
553
|
>Renommer</BUTTON><BUTTON
|
|
@@ -787,5 +756,4 @@ window.addEventListener('load', function() {
|
|
|
787
756
|
|
|
788
757
|
|
|
789
758
|
>Youtube - tutoriels et plus</A></div></FOOTER></body>
|
|
790
|
-
|
|
791
|
-
|
|
759
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silexlabs/silex-dashboard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"description": "Dashboard for Silex v3",
|
|
5
5
|
"main": ".silex.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"homepage": "https://github.com/silexlabs/silex-dashboard#readme",
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@11ty/eleventy": "^2.0.1",
|
|
27
|
-
"@silexlabs/silex": "^3.0.0-alpha.
|
|
27
|
+
"@silexlabs/silex": "^3.0.0-alpha.106"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"locale": "^0.1.0",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
---
|
|
2
2
|
permalink: /css/connectors.css
|
|
3
3
|
---
|
|
4
|
-
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.nav__item.active{color:black;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.lang__item{margin:0px 5px 0px 5px;}.nav__logo{height:50px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{width:100%;display:flex;justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}#in5jeq{display:flex;}#ij139z{position:absolute;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.padding-100-30{padding:100px 30px 80px 30px;}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:880px;width:100%;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:40px;width:40px;margin:5px 5px 5px 5px;}.button-bar__item--secondary{font-size:0.8rem;}
|
|
4
|
+
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.nav__item.active{color:black;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.lang__item{margin:0px 5px 0px 5px;}.nav__logo{height:50px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{width:100%;display:flex;justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}#in5jeq{display:flex;}#ij139z{position:absolute;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.padding-100-30{padding:100px 30px 80px 30px;}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:880px;width:100%;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:40px;width:40px;margin:5px 5px 5px 5px;}.button-bar__item--secondary{font-size:0.8rem;}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
---
|
|
2
2
|
permalink: /css/websites.css
|
|
3
3
|
---
|
|
4
|
-
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.padding-normal{padding:0px 24px 0px 24px;}#i9jq{display:flex;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}#ibsgw{position:relative;top:3px;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.rounded{border-radius:4px 4px 4px 4px;}.footer{display:flex;margin:50px 0px
|
|
4
|
+
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.padding-normal{padding:0px 24px 0px 24px;}#i9jq{display:flex;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}#ibsgw{position:relative;top:3px;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.rounded{border-radius:4px 4px 4px 4px;}.footer{display:flex;margin:50px 0px 0px 0px;background-color:#ffffff;align-items:center;justify-content:space-evenly;padding:30px 30px 60px 30px;}.skeleton-text.skeleton{background-color:#dddddd;color:transparent;opacity:0.31;border-radius:5px 5px 5px 5px;}.skeleton.skeleton-button{color:transparent;opacity:0.31;background-color:#dddddd;border-radius:5px 5px 5px 5px;width:140px;}.skeleton-anim{position:relative;}.nav__item.active{color:black;}.margin-20{margin:20px 0px 20px 0px;}#i0ro3{display:none;}.loading__item.loaded-true{display:none;}.flex-no-shrink{flex-shrink:0;}.form{padding:10px 0px 10px 0px;border-radius:5px 5px 5px 5px;}#i1nmbc{flex-shrink:0;}.input{padding:10px 10px 10px 10px;background-color:transparent;border:2px solid #8873fe;margin:10px 0px 10px 0px;border-radius:4px 4px 4px 4px;}.full-width{width:100%;}.v-space{margin:10px 0px 10px 0px;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box__header{margin:0px 0px 0px 0px;padding:10px 0px 10px 0px;font-weight:700;font-size:1.625rem;color:rgba(43,27,99,0.5);}.box.flex-between{align-items:center;}.flex-between{display:flex;align-items:center;justify-content:space-between;}.h-space{margin:0px 10px 0px 0px;}.button--tertiary{background-color:transparent;font-weight:400;}.icon-font{font-size:1.5rem;line-height:1px;margin:0px 2px 0px 2px;}.lang__item{margin:0px 5px 0px 5px;}.top-space-40{margin:40px 0 0 0;}.nav__logo{height:50px;}.user-icon__image{width:100%;height:100%;}.user__wrapper{border:1px solid white;display:flex;flex-direction:column;justify-content:center;align-items:center;}.right-space-20{margin:0px 20px 0px 0px;}#iksw4d{padding:10px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}.user-icon__wrapper{border:1px solid #f0f0f0;background-color:#f0f0f0;border-radius:50% 50% 50% 50%;width:40px;height:40px;padding:5px 5px 5px 5px;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/bg-purpel-silex.webp);}.section-top{max-width:1200px;padding:40px 30px 40px 30px;height:226px;display:flex;flex-direction:column;justify-content:center;margin:0px auto 0px auto;}.text-centered{text-align:center;}.box-message{background-color:rgba(43,27,99,0.3);border-radius:4px 4px 4px 4px;padding:20px 30px 20px 30px;margin:10px 0px 10px 0px;}.text-white{color:#ffffff;}.bold{font-weight:800;}.button-bar__item--link{background-color:transparent;border:0px solid black;font-size:0.8rem;color:#8873fe;}.padding-30{padding:30px 30px 30px 30px;}.right-space-40{margin:0 40px 0 0;}.title-26{font-size:1.625rem;margin:10px 0px 10px 0px;}.empty-image{min-height:500px;background-image:url(/assets/empty-projects-sos.gif);background-repeat:no-repeat;background-position:center center;background-attachment:scroll;background-size:contain;}.padding-50-30{padding:50px 30px 50px 30px;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.color-2B1B63-80{color:rgba(43,27,99,0.8);}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.box-message-text{margin:0px 0 0 0;font-weight:300;}.website-max-width{max-width:1200px;}.margin-80{margin:80px auto 80px auto;}.button-bar__item--secondary{font-size:0.8rem;}.skeleton{line-height:1.1rem;}#isucae{min-height:100px;}.footer__column{display:flex;flex-direction:column;}#iahjww{padding:10px;}#ie28kq{min-height:100px;}.footer__item{padding:10px 10px 10px 10px;}#igsxoc{position:relative;top:3px;}.box--centered{display:flex;flex-direction:column;align-items:center;}.button-bar__title:hover{color:#8873fe;}
|
package/_silex/default/meta.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"name":"Dashboard"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|