Skip to content
Snippets Groups Projects
Unverified Commit 993e0ba4 authored by Bruno Windels's avatar Bruno Windels Committed by GitHub
Browse files

Merge pull request #171 from matrix-org/bwindels/addnewversion

Merge new version
parents 685950ba b18123d0
No related branches found
No related tags found
No related merge requests found
Showing
with 1003 additions and 47 deletions
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 4
# Matches multiple files with brace expansion notation
# Set default charset
# [*.{js,py}]
module.exports = {
"extends": [
"matrix-org/ts",
"matrix-org/react",
],
}
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"no-console": "off"
}
};
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# development
bundle.js
bundle.js.map
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.vercel
storybook-static
node_modules
build
.ClientListView h2 {
text-align: center;
margin: 18px 0;
}
.ClientListView .filterOption {
display: flex;
align-items: center;
margin: 8px 0;
}
.ClientView {
border: 1px solid #E6E6E6;
border-radius: 8px;
margin: 16px 0;
padding: 16px;
}
.ClientView .header {
display: flex;
}
.ClientView .description {
flex: 1;
}
.ClientView h3 {
margin-top: 0;
}
.ClientView .clientIcon {
border-radius: 8px;
background-repeat: no-repeat;
background-size: cover;
width: 60px;
height: 60px;
overflow: hidden;
display: block;
margin-left: 8px;
}
.ClientView .platforms {
background-image: url('../images/platform-icon.svg');
background-repeat: no-repeat;
background-position: 0 center;
padding-left: 28px;
}
.ClientView .actions a.badge {
display: inline-block;
height: 40px;
margin: 8px 16px 8px 0;
}
.ClientView .actions img {
height: 100%;
}
.ClientView .back {
margin-top: 22px;
}
.InstallClientView .instructions button {
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
padding: 4px;
border: none;
width: 24px;
height: 24px;
margin: 8px;
vertical-align: middle;
}
.InstallClientView .instructions button.copy {
background-image: url('../images/copy.svg');
}
.InstallClientView .instructions button.tick {
background-image: url('../images/tick-dark.svg');
}
.CreateLinkView h2 {
padding: 0 40px;
word-break: break-all;
text-align: center;
}
.CreateLinkView form {
margin-top: 36px;
}
.CreateLinkView form > *:not(:first-child) {
margin-top: 24px;
}
/*
Copyright 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
@import url('spinner.css');
@import url('client.css');
@import url('preview.css');
@import url('create.css');
@import url('open.css');
:root {
--app-background: #f4f4f4;
--background: #ffffff;
--foreground: #000000;
--font: #333333;
--grey: #666666;
--accent: #0098d4;
--error: #d6001c;
--link: #0098d4;
--borders: #f4f4f4;
--lightgrey: #E6E6E6;
--spinner-stroke-size: 2px;
}
html {
margin: 0;
padding: 0;
}
body {
background-color: var(--app-background);
background-image: url('../images/background.svg');
background-attachment: fixed;
background-repeat: no-repeat;
background-size: auto;
background-position: center -50px;
height: 100%;
width: 100%;
font-size: 14px;
color: var(--font);
padding: 120px 0 0 0;
margin: 0;
}
p { line-height: 150%; }
a { text-decoration: none; }
h1 { font-size: 24px; }
h2 { font-size: 21px; }
h3 { font-size: 16px; }
body,
button,
input,
textarea {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-style: normal;
}
button, input[type=submit] {
cursor: pointer;
}
button, input {
font-size: inherit;
font-weight: inherit;
}
input[type="checkbox"], input[type="radio"] {
margin: 0 8px 0 0;
}
.RootView {
margin: 0 auto;
max-width: 480px;
width: 100%;
}
.card {
background-color: var(--background);
border-radius: 16px;
box-shadow: 0px 18px 24px rgba(0, 0, 0, 0.06);
}
.card, .footer {
padding: 2rem;
}
.hidden {
display: none !important;
}
@media screen and (max-width: 480px) {
body {
background-image: none;
background-color: var(--background);
padding: 0;
}
.card {
border-radius: unset;
box-shadow: unset;
}
}
.footer .links li:not(:first-child) {
margin-left: 0.5em;
}
.footer .links li:not(:first-child)::before {
content: "·";
margin-right: 0.5em;
}
.footer .links li {
display: inline-block;
}
.footer .links {
font-size: 12px;
list-style: none;
padding: 0;
}
a, button.text {
color: var(--link);
}
button.text {
background: none;
border: none;
font-style: normal;
font-weight: normal;
font-size: inherit;
padding: 8px 0;
margin: -8px 0;
}
button.text:hover {
cursor: pointer;
}
.primary, .secondary {
text-decoration: none;
font-weight: bold;
text-align: center;
padding: 12px 8px;
margin: 8px 0;
}
.secondary {
background: var(--background);
color: var(--link);
border: 1px solid var(--link);
border-radius: 32px;
}
.primary {
background: var(--link);
color: var(--background);
border-radius: 32px;
}
.primary.icon, .secondary.icon {
background-repeat: no-repeat;
background-position: 12px center;
}
.icon.link { background-image: url('../images/link.svg'); }
.icon.tick { background-image: url('../images/tick.svg'); }
.icon.copy { background-image: url('../images/copy.svg'); }
button.primary, input[type='submit'].primary, button.secondary, input[type='submit'].secondary {
border: none;
font-size: inherit;
}
input[type='text'].large {
width: 100%;
padding: 12px;
background: var(--background);
border: 1px solid var(--foreground);
border-radius: 16px;
font-size: 14px;
}
.fullwidth {
display: block;
width: 100%;
box-sizing: border-box;
}
.LoadServerPolicyView {
display: flex;
}
.LoadServerPolicyView .spinner {
width: 32px;
height: 32px;
margin-right: 12px;
}
.LoadServerPolicyView h2 {
margin-top: 0;
}
......@@ -14,16 +14,39 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
.singleColumnLayout {
height: 100%;
.OpenLinkView .caption {
color: var(--grey);
font-size: 12px;
}
padding: 0 1em;
margin: 0 auto;
.ServerConsentView .actions label {
display: flex;
align-items: center;
}
.ServerConsentView .actions {
margin-top: 24px;
display: flex;
align-items: center;
}
max-width: 480px;
.ServerConsentView input[type=submit] {
flex: 1;
margin-left: 32px;
}
display: grid;
row-gap: 60px;
.ServerOptions div {
margin: 8px 0;
}
.ServerOptions label {
display: flex;
align-items: center;
}
.ServerOptions label > .line {
flex: 1;
border: none;
border-bottom: 1px solid var(--grey);
padding: 4px 0;
}
.PreviewView {
text-align: center;
margin-bottom: 32px;
}
.PreviewView h1 {
font-size: 24px;
line-height: 32px;
margin-bottom: 8px;
}
.PreviewView .avatarContainer {
display: flex;
justify-content: center;
margin: 0;
}
.PreviewView .avatar {
border-radius: 100%;
width: 64px;
height: 64px;
}
.PreviewView .defaultAvatar {
width: 64px;
height: 64px;
background-image: url('../images/chat-icon.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 85%;
}
.PreviewView .spinner {
width: 32px;
height: 32px;
}
.PreviewView .avatar.loading {
border: 1px solid #eee;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.PreviewView .identifier {
color: var(--grey);
font-size: 12px;
margin: 8px 0;
}
.PreviewView .identifier.placeholder {
height: 1em;
margin: 1em 30%;
}
.PreviewView .memberCount {
display: flex;
justify-content: center;
margin: 8px 0;
}
.PreviewView .memberCount.loading {
margin: 16px 0;
}
.PreviewView .memberCount p {
font-size: 12px;
margin: 0;
}
.PreviewView .memberCount p:not(.placeholder) {
padding: 4px 8px 4px 24px;
border-radius: 14px;
background-image: url(../images/member-icon.svg);
background-repeat: no-repeat;
background-position: 2px center;
background-color: var(--lightgrey);
}
.PreviewView .memberCount p.placeholder {
height: 1.5em;
width: 100px;
}
.PreviewView .topic {
font-size: 12px;
color: var(--grey);
margin: 32px 0;
}
.PreviewView .topic.loading {
display: block;
margin: 24px 12px;
padding: 4px 0;
}
.PreviewView .topic.loading .placeholder {
height: 0.8em;
display: block;
margin: 12px 0;
}
.PreviewView .topic.loading .placeholder:nth-child(2) {
margin-left: 5%;
margin-right: 5%;
}
.placeholder {
border-radius: 1em;
--flash-bg: #ddd;
--flash-fg: #eee;
background: linear-gradient(120deg,
var(--flash-bg),
var(--flash-bg) 10%,
var(--flash-fg) calc(10% + 25px),
var(--flash-bg) calc(10% + 50px)
);
animation: flash 2s linear infinite;
background-size: 200%;
}
@keyframes flash {
0% { background-position-x: 0; }
50% { background-position-x: -80%; }
51% { background-position-x: 80%; }
100% { background-position-x: 0%; }
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.spinner {
width: 40px;
height: 40px;
border-radius: 100%;
border: var(--spinner-stroke-size) solid var(--app-background);
box-sizing: border-box;
}
.spinner::before {
content: "";
display: block;
width: inherit;
height: inherit;
border-radius: 100%;
border-width: var(--spinner-stroke-size);
border-style: solid;
border-color: transparent;
border-top-color: var(--grey);
animation: rotate 0.8s linear infinite;
box-sizing: border-box;
margin: calc(-1 * var(--spinner-stroke-size));
}
File moved
<svg width="1440" height="1505" viewBox="0 0 1440 1505" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<g opacity="0.26">
<g>
<path opacity="0.26" d="M1027.99 602.979C1262.01 860.194 1465.48 1242.7 1528.69 1544.36C1592.2 1847.63 1503.31 2018.17 1310.8 1964.61C1117.48 1910.83 851.081 1638.68 658.35 1297.66C466.355 957.9 378.93 607.541 443.1 434.715C506.167 264.833 707.508 296.249 938.653 512.115C968.31 539.852 998.261 570.239 1027.99 602.979Z" stroke="url(#paint0_linear)" stroke-opacity="0.5" stroke-miterlimit="10"/>
<path opacity="0.26" d="M1044.18 604.303C1277.61 867.698 1476.23 1255.51 1532.89 1558.78C1589.85 1863.67 1493.74 2031.71 1297.33 1973.07C1100.11 1914.14 833.789 1635 645.032 1288.91C457.01 944.068 376.871 591.501 447.59 420.442C517.133 252.325 723.184 289.112 954.844 511.085C984.648 539.632 1014.53 570.827 1044.18 604.303Z" stroke="url(#paint1_linear)" stroke-opacity="0.5" stroke-miterlimit="10"/>
<path opacity="0.26" d="M1060.81 606.069C1293.5 875.644 1486.97 1268.6 1536.79 1573.27C1586.9 1879.56 1483.51 2045.03 1283.27 1981.09C1082.22 1916.94 816.124 1630.66 631.709 1279.64C447.955 930.015 375.249 575.389 452.665 406.316C528.757 240.112 739.517 282.417 971.546 510.496C1001.42 539.779 1031.3 571.784 1060.81 606.069Z" stroke="url(#paint2_linear)" stroke-opacity="0.5" stroke-miterlimit="10"/>
......
File moved
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="0" width="64" height="64" fill="#0dbd8b" stop-color="#000000" stroke="#000" stroke-dasharray="0.188976, 0.37795299999999998" stroke-width=".18898"/>
<g clip-rule="evenodd" fill="#fff" fill-rule="evenodd">
<path d="m25.28 10.88c0-1.5906 1.2894-2.88 2.88-2.88 10.604 0 19.2 8.5961 19.2 19.2 0 1.5906-1.2894 2.88-2.88 2.88s-2.88-1.2894-2.88-2.88c0-7.4227-6.0173-13.44-13.44-13.44-1.5906 0-2.88-1.2894-2.88-2.88z"/>
<path d="m38.72 53.12c0 1.5906-1.2894 2.88-2.88 2.88-10.604 0-19.2-8.5961-19.2-19.2 0-1.5906 1.2894-2.88 2.88-2.88 1.5905 0 2.88 1.2894 2.88 2.88 0 7.4227 6.0173 13.44 13.44 13.44 1.5906 0 2.88 1.2894 2.88 2.88z"/>
<path d="m10.88 38.72c-1.5906 0-2.88-1.2894-2.88-2.88 0-10.604 8.5961-19.2 19.2-19.2 1.5906 0 2.88 1.2894 2.88 2.88 0 1.5905-1.2894 2.88-2.88 2.88-7.4227 0-13.44 6.0173-13.44 13.44 0 1.5906-1.2894 2.88-2.88 2.88z"/>
<path d="m53.12 25.28c1.5906 0 2.88 1.2894 2.88 2.88 0 10.604-8.5961 19.2-19.2 19.2-1.5906 0-2.88-1.2894-2.88-2.88 0-1.5905 1.2894-2.88 2.88-2.88 7.4227 0 13.44-6.0173 13.44-13.44 0-1.5906 1.2894-2.88 2.88-2.88z"/>
</g>
</svg>
File moved
File moved
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
viewBox="0 0 48 48.000001"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="quaternion2.svg">
<defs
id="defs4">
<linearGradient
id="b"
y1="23.774559"
x1="22.540125"
y2="44.054428"
x2="42.645557"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(30,0)">
<stop
stop-color="#292c2f"
id="stop12" />
<stop
offset="1"
stop-color="#292c2f"
stop-opacity="0"
id="stop14" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4416">
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="0"
id="stop4418" />
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="1"
id="stop4420" />
</linearGradient>
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Highlight {
color:#3daee9;
}
</style>
<linearGradient
inkscape:collect="always"
xlink:href="#b"
id="linearGradient4384-2"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(18.78125,-16.0625)"
x1="-21.260931"
y1="13.89889"
x2="10.555012"
y2="48.902145" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4416"
id="linearGradient4422-7"
x1="-30.500504"
y1="28.249998"
x2="-10.500504"
y2="7.8749971"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(4.0005053,-4.0000137)" />
<linearGradient
inkscape:collect="always"
xlink:href="#b"
id="linearGradient5173"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.80454501,0,0,0.80454501,29.039903,1009.4479)"
x1="-8.4545803"
y1="4.9617052"
x2="10.555012"
y2="48.902145" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4416"
id="linearGradient5175"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.89628968,0,0,0.89628968,2.535611,1907.0938)"
x1="34.2505"
y1="-976.61401"
x2="8.5004978"
y2="-1002.614" />
<linearGradient
gradientTransform="translate(-384.57,-499.8)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="503.8"
y1="543.8"
id="a">
<stop
id="stop7"
stop-color="#197cf1" />
<stop
id="stop9"
stop-color="#20bcfa"
offset="1" />
</linearGradient>
<linearGradient
x1="432.5705"
id="a-6"
y1="547.79999"
y2="500.04578"
x2="432.5705"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-432.5705,-499.79999)">
<stop
style="stop-color:#1e2b35;stop-opacity:1"
stop-color="#18222a"
id="stop4216" />
<stop
style="stop-color:#525c64;stop-opacity:1"
offset="1"
stop-color="#566069"
id="stop4218" />
</linearGradient>
<linearGradient
gradientTransform="translate(-344.5695,-499.79999)"
id="b-7"
y1="517.8"
x1="399.57"
y2="534.8"
x2="416.57"
gradientUnits="userSpaceOnUse">
<stop
id="stop4221" />
<stop
offset="1"
stop-opacity="0"
id="stop4223" />
</linearGradient>
<linearGradient
gradientTransform="translate(-344.5695,-499.79999)"
id="c"
y1="537.8"
y2="508.8"
gradientUnits="userSpaceOnUse"
x2="0">
<stop
stop-color="#026ddc"
id="stop4226" />
<stop
offset="1"
stop-color="#28b0fd"
id="stop4228" />
</linearGradient>
<linearGradient
id="d"
y1="525.28"
x1="408.65"
y2="533.28"
x2="416.65"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-.081-.48)">
<stop
stop-opacity=".065"
id="stop4231" />
<stop
offset="1"
stop-opacity="0"
id="stop4233" />
</linearGradient>
<linearGradient
xlink:href="#d"
id="e"
y1="517.96"
x1="417.79"
y2="525.91"
gradientUnits="userSpaceOnUse"
x2="426.22"
gradientTransform="matrix(-1,0,0,1,817.2,-0.48)" />
<linearGradient
gradientUnits="userSpaceOnUse"
x2="39.279999"
y2="36.632999"
x1="22.285"
y1="18.709999"
id="b-5"
gradientTransform="translate(-13.182,-16.463)">
<stop
id="stop12-3"
stop-color="#292c2f" />
<stop
id="stop14-5"
stop-opacity="0"
stop-color="#292c2f"
offset="1" />
</linearGradient>
<linearGradient
x1="463.30493"
id="b-3"
y1="791.61914"
y2="721.56116"
gradientUnits="userSpaceOnUse"
x2="520.69641"
gradientTransform="matrix(0.71874732,0,0,0.68157806,-378.12417,-491.55024)">
<stop
style="stop-color:#00945a;stop-opacity:1"
stop-color="#26c281"
id="stop4252" />
<stop
style="stop-color:#38fa95;stop-opacity:1"
offset="1"
stop-color="#3fc380"
id="stop4254" />
</linearGradient>
<linearGradient
id="a-67"
y1="517.79999"
y2="533.79999"
x1="404.98001"
x2="420.98001"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.98828127,0,0,0.98828127,-383.20097,-495.43517)">
<stop
stop-color="#383e51"
id="stop4247" />
<stop
offset="1"
stop-color="#655c6f"
stop-opacity="0"
id="stop4249" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.98828127,0,0,0.98828127,-378.84265,-493.45861)"
id="c-5"
y1="531.79999"
y2="515.79999"
x2="0"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#70e4b3"
id="stop4257" />
<stop
offset="1"
stop-color="#c8f0dc"
id="stop4259" />
</linearGradient>
<linearGradient
id="b-3-3"
y1="785.71002"
y2="727.71002"
gradientUnits="userSpaceOnUse"
x2="0"
gradientTransform="matrix(0.71874732,0,0,0.68157806,-387.2511,-495.98773)">
<stop
stop-color="#26c281"
id="stop4252-5" />
<stop
offset="1"
stop-color="#3fc380"
id="stop4254-6" />
</linearGradient>
<linearGradient
gradientTransform="translate(-13.130467,-10.269952)"
gradientUnits="userSpaceOnUse"
x2="42.645557"
y2="44.054428"
x1="22.540125"
y1="23.774559"
id="b-1">
<stop
id="stop12-2"
stop-color="#292c2f" />
<stop
id="stop14-7"
stop-opacity="0"
stop-color="#292c2f"
offset="1" />
</linearGradient>
<linearGradient
y2="39.179428"
x2="3.3955555"
y1="32.924278"
x1="-2.8595951"
gradientTransform="translate(7.947106,-34.03464)"
gradientUnits="userSpaceOnUse"
id="linearGradient4318-9"
xlink:href="#b"
inkscape:collect="always" />
<linearGradient
y2="39.179428"
x2="3.3955555"
y1="39.799278"
x1="-13.672095"
gradientTransform="translate(14.488281,-20.003906)"
gradientUnits="userSpaceOnUse"
id="linearGradient4345-7"
xlink:href="#b"
inkscape:collect="always" />
<linearGradient
y2="48.902145"
x2="10.555012"
y1="12.39889"
x1="-22.510931"
gradientTransform="translate(18.78125,-16.0625)"
gradientUnits="userSpaceOnUse"
id="linearGradient4384-2-2"
xlink:href="#b"
inkscape:collect="always" />
<linearGradient
gradientUnits="userSpaceOnUse"
x2="42.645557"
y2="44.054428"
x1="22.540125"
y1="23.774559"
id="b-36"
gradientTransform="translate(-71.999501,32.001813)">
<stop
id="stop12-7"
stop-color="#292c2f" />
<stop
id="stop14-53"
stop-opacity="0"
stop-color="#292c2f"
offset="1" />
</linearGradient>
<linearGradient
x1="389.3205"
id="a-6-5"
y1="547.67499"
y2="499.92078"
x2="426.6955"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-360.571,-467.79817)">
<stop
style="stop-color:#1e2b35;stop-opacity:1"
stop-color="#18222a"
id="stop4216-6" />
<stop
style="stop-color:#6d7983;stop-opacity:1"
offset="1"
stop-color="#566069"
id="stop4218-2" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="32.789359"
inkscape:cy="42.117635"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-global="false"
showborder="false"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid5026" />
<sodipodi:guide
position="13,11.25"
orientation="0.70710678,0.70710678"
id="guide5089" />
<sodipodi:guide
position="7.875,26.375001"
orientation="0.70710678,0.70710678"
id="guide5091" />
<sodipodi:guide
position="29.875,39.500001"
orientation="0.70710678,0.70710678"
id="guide5093" />
<sodipodi:guide
position="35,36.250001"
orientation="0.70710678,0.70710678"
id="guide5097" />
<sodipodi:guide
position="9.875,20.5"
orientation="0.70710678,0.70710678"
id="guide5126" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Livello 2">
<path
id="path5159"
d="m 24.04876,6.1174361 c -9.930889,0 -17.925793,7.9949039 -17.925793,17.9257939 0,9.930889 7.994904,17.925793 17.925793,17.925793 0.02411,0 0.04771,-0.0017 0.07178,-0.0018 l 16.955978,4.3e-5 c 0.496545,0 0.89629,-0.399737 0.89629,-0.89629 l 0,-16.961232 c 8.1e-5,-0.02232 0.0018,-0.04418 0.0018,-0.06652 0,-9.930889 -7.994904,-17.9257934 -17.925795,-17.9257934 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1d99f3;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:connector-curvature="0"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</g>
<g
inkscape:label="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1004.3622)">
<path
style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke-width:2.79999995;stroke-opacity:0.55"
inkscape:connector-curvature="0"
d="m 6.1310739,1028.8503 c -0.00358,-0.1498 -0.010755,-0.2976 -0.010755,-0.4483 0,-9.9308 7.994904,-17.9257 17.925794,-17.9257 9.93089,0 17.925795,7.9949 17.925795,17.9257 0,0.1507 -0.0072,0.2985 -0.01076,0.4483 -0.23662,-9.7221 -8.138312,-17.4777 -17.91504,-17.4777 -9.780313,0 -17.6784177,7.7556 -17.9150382,17.4777"
id="path5163"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
sodipodi:nodetypes="ccccccccccccccccc"
inkscape:connector-curvature="0"
id="path5165"
d="m 11.232155,1026.802 14.222481,14.2935 -3.520064,-0.3911 -9.191278,-9.1912 2.684492,7.5202 6.204245,6.2684 2.49952,0.1156 17.241676,-0.023 0.640018,-1.0668 -0.05709,-14.8384 -0.0649,-1.7857 -8.756475,-8.7243 -0.64001,0.8532 -3.555621,-3.6266 -10.240187,0.64 -4.76453,4.1244 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.18800001;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient5173);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
inkscape:connector-curvature="0"
id="path5167"
d="m 6.1334706,1027.9574 c -0.00367,0.1495 -0.010504,0.2976 -0.010504,0.448 0,9.9309 7.9949037,17.9258 17.9257927,17.9258 0.02411,0 0.04771,0 0.07178,0 l 16.955981,0 c 0.496544,0 0.896289,-0.3996 0.896289,-0.8962 l 0,-0.8945 c 0,0.4965 -0.399745,0.8963 -0.896289,0.8963 l -16.955983,0 -0.07178,0 c -9.78071,0 -17.6785062,-7.7561 -17.9152898,-17.4777 z m 35.8393324,0.3763 0,0.1383 c 8.2e-5,-0.022 0.0018,-0.044 0.0018,-0.066 0,-0.024 -0.0018,-0.048 -0.0018,-0.072 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#161e25;fill-opacity:1;fill-rule:nonzero;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path5169"
d="m 24.850998,1015.3211 -2.3e-4,0 c -4.221957,-0.2137 -8.462616,1.6173 -11.185311,5.279 -1.410567,1.8989 -2.22395,4.0471 -2.493121,6.2301 l 1.696347,-0.2507 3.220344,-0.4718 2.68403,-2.0567 -5.463182,0.8056 c 0.374562,-1.1444 0.916754,-2.2533 1.67664,-3.2759 2.961145,-3.9843 7.972375,-5.4929 12.459008,-4.168 l 1.563639,-1.1933 c -1.347181,-0.5332 -2.750838,-0.8302 -4.158164,-0.9015 z m 6.710874,2.5126 -4.6e-4,0.01 -0.521308,1.6335 -0.859253,2.6992 0.499033,3.8383 1.715908,-5.384 c 0.863373,0.8389 1.619917,1.8132 2.204556,2.9452 2.442167,4.7279 1.298074,10.3196 -2.445266,13.7365 l 0.0072,0.053 c -0.02757,0.026 -0.05527,0.055 -0.0831,0.081 l 4.152714,4.8087 1.274973,-1.1026 -3.204232,-3.7103 c 3.427251,-3.9365 4.309935,-9.6879 1.761636,-14.6216 -1.086112,-2.1028 -2.658768,-3.7804 -4.502389,-4.9823 z m -20.627884,12.8598 c 0.795585,5.8959 5.518184,10.6684 11.708243,11.2806 2.355072,0.2329 4.622679,-0.1736 6.634024,-1.0664 l -1.086358,-1.3241 -0.0062,-5e-4 -2.138088,-2.6048 -3.22492,-1.339 3.657256,4.4524 c -1.173938,0.2676 -2.40585,0.375 -3.673603,0.2496 -5.070346,-0.501 -9.016389,-4.197 -10.072229,-8.8986 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.63318729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
inkscape:connector-curvature="0"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.45;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient5175);fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 24.04876,1010.4797 c -9.930889,0 -17.925793,7.9949 -17.925793,17.9257 0,9.9309 7.994904,17.9258 17.925793,17.9258 0.02411,0 0.04771,0 0.07178,0 l 16.955978,0 c 0.496545,0 0.89629,-0.3996 0.89629,-0.8962 l 0,-16.9612 c 8.1e-5,-0.022 0.0018,-0.044 0.0018,-0.066 0,-9.931 -7.994902,-17.9259 -17.925793,-17.9259 z"
id="path5171"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</g>
</svg>
images/client-icons/tensor.png

6.47 KiB

File moved
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 15H6C4.89543 15 4 14.1046 4 13V6C4 4.89543 4.89543 4 6 4H13C14.1046 4 15 4.89543 15 6V9.5" stroke="white" stroke-width="1.5"/>
<rect x="9" y="9" width="11" height="11" rx="2" stroke="white" stroke-width="1.5"/>
<path d="M9.5 15H6C4.89543 15 4 14.1046 4 13V6C4 4.89543 4.89543 4 6 4H13C14.1046 4 15 4.89543 15 6V9.5" stroke="#0098d4" stroke-width="1.5"/>
<rect x="9" y="9" width="11" height="11" rx="2" stroke="#0098d4" stroke-width="1.5"/>
</svg>
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment