@dssp/dcsp 0.0.10 → 0.0.12
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/_index.html +1 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/assets/style/home.css +0 -134
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/dcsp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"docker:push": "docker image push hatiolab/dcsp:latest && docker image push hatiolab/dcsp:$npm_package_version"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@dssp/building-complex": "^0.0.
|
|
43
|
-
"@dssp/project": "^0.0.
|
|
42
|
+
"@dssp/building-complex": "^0.0.12",
|
|
43
|
+
"@dssp/project": "^0.0.12",
|
|
44
44
|
"@operato/scene-auth": "^8.0.0-alpha",
|
|
45
45
|
"@operato/scene-chartjs": "^8.0.0-alpha",
|
|
46
46
|
"@operato/scene-clock": "^8.0.0-alpha",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@things-factory/builder": "^8.0.0-alpha"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "4d8239e086caa25695780176652662b6d69c10c9"
|
|
92
92
|
}
|
package/assets/style/home.css
DELETED
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
/* ===================================
|
|
2
|
-
01. Google font
|
|
3
|
-
====================================== */
|
|
4
|
-
|
|
5
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');
|
|
6
|
-
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
|
|
7
|
-
|
|
8
|
-
/* ===================================
|
|
9
|
-
02. Reset
|
|
10
|
-
====================================== */
|
|
11
|
-
|
|
12
|
-
html,
|
|
13
|
-
body {
|
|
14
|
-
height: 100%;
|
|
15
|
-
}
|
|
16
|
-
*,
|
|
17
|
-
*::after,
|
|
18
|
-
*::before {
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
}
|
|
21
|
-
body {
|
|
22
|
-
padding: 0;
|
|
23
|
-
margin: 0;
|
|
24
|
-
background: url('../images/home/bg-wrap.png') #181a1b repeat-x;
|
|
25
|
-
background-size: cover;
|
|
26
|
-
font-size: 16px;
|
|
27
|
-
line-height: 1.6;
|
|
28
|
-
font-weight: 400;
|
|
29
|
-
color: #fff;
|
|
30
|
-
font-family: 'Roboto', sans-serif;
|
|
31
|
-
}
|
|
32
|
-
a {
|
|
33
|
-
text-decoration: none;
|
|
34
|
-
}
|
|
35
|
-
a:hover,
|
|
36
|
-
a:focus {
|
|
37
|
-
text-decoration: none;
|
|
38
|
-
outline: none;
|
|
39
|
-
outline-offset: 0;
|
|
40
|
-
color: #d6000f;
|
|
41
|
-
}
|
|
42
|
-
a,
|
|
43
|
-
a.nav-link,
|
|
44
|
-
a:active,
|
|
45
|
-
a:focus {
|
|
46
|
-
color: #333;
|
|
47
|
-
}
|
|
48
|
-
a,
|
|
49
|
-
a.nav-link,
|
|
50
|
-
.btn,
|
|
51
|
-
input,
|
|
52
|
-
textarea,
|
|
53
|
-
select {
|
|
54
|
-
transition: all 0.3s ease-in-out;
|
|
55
|
-
-moz-transition: all 0.3s ease-in-out;
|
|
56
|
-
-webkit-transition: all 0.3s ease-in-out;
|
|
57
|
-
-ms-transition: all 0.3s ease-in-out;
|
|
58
|
-
-o-transition: all 0.3s ease-in-out;
|
|
59
|
-
}
|
|
60
|
-
img {
|
|
61
|
-
max-width: 100%;
|
|
62
|
-
height: auto;
|
|
63
|
-
}
|
|
64
|
-
h2 {
|
|
65
|
-
margin: 0;
|
|
66
|
-
padding: 0;
|
|
67
|
-
font-size: 64px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
/* ===================================
|
|
71
|
-
03. home design
|
|
72
|
-
====================================== */
|
|
73
|
-
.wrap {
|
|
74
|
-
width: 95%;
|
|
75
|
-
height: 100%;
|
|
76
|
-
overflow: hidden;
|
|
77
|
-
background:
|
|
78
|
-
url('../images/home/bg-container-left.png') left top no-repeat,
|
|
79
|
-
url('../images/home/bg-container-right.png') right top no-repeat;
|
|
80
|
-
background-size: contain;
|
|
81
|
-
margin: auto;
|
|
82
|
-
text-align: center;
|
|
83
|
-
}
|
|
84
|
-
.logo {
|
|
85
|
-
background: url('../images/home/logo.png') #fff no-repeat center;
|
|
86
|
-
background-size: 80%;
|
|
87
|
-
border-bottom-right-radius: 15px;
|
|
88
|
-
border-bottom-left-radius: 15px;
|
|
89
|
-
box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
|
|
90
|
-
display: block;
|
|
91
|
-
width: 150px;
|
|
92
|
-
height: 100px;
|
|
93
|
-
margin: auto;
|
|
94
|
-
margin-bottom: 50px;
|
|
95
|
-
}
|
|
96
|
-
.container {
|
|
97
|
-
width: 60%;
|
|
98
|
-
margin: auto;
|
|
99
|
-
margin-top: 100px;
|
|
100
|
-
}
|
|
101
|
-
.container a {
|
|
102
|
-
background: #fff no-repeat center;
|
|
103
|
-
border-radius: 15px;
|
|
104
|
-
background-size: 55px;
|
|
105
|
-
background-position-y: 17px;
|
|
106
|
-
box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
|
|
107
|
-
border: 5px solid transparent;
|
|
108
|
-
display: inline-block;
|
|
109
|
-
width: 40%;
|
|
110
|
-
margin: 40px 4%;
|
|
111
|
-
padding: 80px 0 15px 0;
|
|
112
|
-
color: #008c97;
|
|
113
|
-
font-size: 22px;
|
|
114
|
-
font-weight: bold;
|
|
115
|
-
cursor: pointer;
|
|
116
|
-
}
|
|
117
|
-
.container a:hover {
|
|
118
|
-
border-color: #bdeb02;
|
|
119
|
-
}
|
|
120
|
-
a.menu1 {
|
|
121
|
-
background-image: url('../images/home/icon-menu1.png');
|
|
122
|
-
background-size: 100px;
|
|
123
|
-
background-position-y: 20px;
|
|
124
|
-
}
|
|
125
|
-
a.menu2 {
|
|
126
|
-
background-image: url('../images/home/icon-menu2.png');
|
|
127
|
-
}
|
|
128
|
-
a.menu3 {
|
|
129
|
-
background-image: url('../images/home/icon-menu3.png');
|
|
130
|
-
background-position-y: 23px;
|
|
131
|
-
}
|
|
132
|
-
a.menu4 {
|
|
133
|
-
background-image: url('../images/home/icon-menu4.png');
|
|
134
|
-
}
|