Correction du design de base + delegation a travers les fichiers + @import sass
|
@ -0,0 +1,2 @@
|
|||
|
||||
/*# sourceMappingURL=constants.css.map */
|
|
@ -0,0 +1,2 @@
|
|||
$theme-color: #f97a53;
|
||||
$theme-color: #5395f9;
|
|
@ -1,2 +1,2 @@
|
|||
#WRAPPER>#HEADER.loading>.icon{background-image:url("../src/static/loader2.svg");background-size:70% 70%}
|
||||
#WRAPPER>#HEADER>.icon{display:block;position:absolute;top:0;left:0;width:4em;height:4em;background-color:#2277f7;background-image:url("../src/static/icon.svg");background-position:center center;background-repeat:no-repeat;background-size:50% 50%;cursor:pointer;transition:all .3s}#WRAPPER>#HEADER>.icon:hover{background-color:#0967f6}#WRAPPER>#HEADER.loading>.icon{background-image:url("../src/static/loader.svg");background-size:70% 70%}
|
||||
/*# sourceMappingURL=header.css.map */
|
||||
|
|
|
@ -1,5 +1,38 @@
|
|||
|
||||
@import 'constants';
|
||||
|
||||
|
||||
#WRAPPER > #HEADER{
|
||||
// Icone du site
|
||||
& > .icon{
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 4em;
|
||||
height: 4em;
|
||||
|
||||
background-color: darken($theme-color, 10);
|
||||
background-image: url('../src/static/icon.svg');
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 50% 50%;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
transition: all .3s;
|
||||
|
||||
// @hover
|
||||
&:hover{
|
||||
background-color: darken($theme-color, 15);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Animation de chargement qudnd chargement ajax */
|
||||
#WRAPPER > #HEADER.loading > .icon{
|
||||
background-image: url('../src/static/loader2.svg');
|
||||
&.loading > .icon{
|
||||
background-image: url('../src/static/loader.svg');
|
||||
background-size: 70% 70%;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#WRAPPER{display:block;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#edf0f5;font-family:'Ubuntu'}#WRAPPER>#HEADER{display:block;position:absolute;top:0;left:0;width:100%;height:calc( 4em - 1px );border-bottom:1px solid #2277f7;background-color:#5395f9;z-index:10}#WRAPPER>#HEADER>.icon{display:block;position:absolute;top:0;left:0;width:4em;height:4em;background-color:#2277f7;background-image:url("../src/static/icon.svg");background-position:center center;background-repeat:no-repeat;background-size:50% 50%;cursor:pointer;transition:all .3s}#WRAPPER>#HEADER>.icon:hover{background-color:#0967f6}#WRAPPER>#MENU-SIDE{display:block;position:absolute;top:4em;left:0;width:4em;height:100%;box-shadow:2px 1px 3px #ddd;background-color:#fff;transition:all .3s;z-index:9}#WRAPPER>#MENU-SIDE>span[data-link]{display:block;position:relative;width:calc( 4em - 2*.7em - 2*.55em - 2*.01em );height:calc( 4em - 2*.7em - 2*.55em - 2*.01em );margin:2em .7em;padding:.55em;border:.01em solid transparent;border-radius:2px;color:#a2a2a2;line-height:calc( 4em - 2*.7em - 2*.55em - 2*.01em );transition:color .3s, border .3s;cursor:pointer}#WRAPPER>#MENU-SIDE>span[data-link] svg,#WRAPPER>#MENU-SIDE>span[data-link] svg *{width:1.5em;height:1.5em;stroke:none !important;fill:#444 !important;transition:fill .3s}#WRAPPER>#MENU-SIDE>span[data-link][data-desc]:after{content:attr(data-desc);display:block;position:absolute;top:calc( .7em - 2*.3em );left:calc( 4.6em - 2*.3em );padding:.3em;border-radius:3px;background-color:#2a2a2a;color:#e2e2e2;white-space:nowrap;transition:transform .1s;transform-origin:0 0;transform:scaleX(0)}#WRAPPER>#MENU-SIDE>span[data-link]:hover{border-color:#e6e6e6;box-shadow:inset 0 0 .5em #eee}#WRAPPER>#MENU-SIDE>span[data-link]:hover:after{transform:scaleX(1);color:#fff}#WRAPPER>#MENU-SIDE>span[data-link]:hover svg,#WRAPPER>#MENU-SIDE>span[data-link]:hover svg *{fill:#5395f9 !important}#WRAPPER>#MENU-SIDE>span[data-link].active{border-color:#e6e6e6}#WRAPPER>#MENU-SIDE>span[data-link].active svg,#WRAPPER>#MENU-SIDE>span[data-link].active svg *{fill:#5395f9 !important}#WRAPPER>#MENU-SIDE>span[data-link]:hover{color:#565656}#WRAPPER>#CONTAINER{display:block;position:absolute;top:4em;left:4em;width:calc( 100% - 4em - 2*1em );height:calc( 100% - 4em - 2*1em );padding:1em;overflow-x:none;overflow-y:auto}
|
||||
#WRAPPER{display:block;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#edf0f5;font-family:'Ubuntu'}#WRAPPER>#HEADER{display:block;position:absolute;top:0;left:0;width:100%;height:calc( 4em - 1px );border-bottom:1px solid #2277f7;background-color:#5395f9;z-index:10}#WRAPPER>#MENU-SIDE{display:block;position:absolute;top:4em;left:0;width:4em;height:100%;box-shadow:2px 1px 3px #ddd;background-color:#fff;transition:all .3s;z-index:9}#WRAPPER>#CONTAINER{display:block;position:absolute;top:4em;left:4em;width:calc( 100% - 4em - 2*1em );height:calc( 100% - 4em - 2*1em );padding:1em;overflow-x:none;overflow-y:auto}
|
||||
/*# sourceMappingURL=layout.css.map */
|
||||
|
|
117
css/layout.scss
|
@ -1,5 +1,4 @@
|
|||
$theme-color: #f97a53;
|
||||
$theme-color: #5395f9;
|
||||
@import 'constants';
|
||||
|
||||
#WRAPPER{
|
||||
display: block;
|
||||
|
@ -30,32 +29,6 @@ $theme-color: #5395f9;
|
|||
|
||||
z-index: 10;
|
||||
|
||||
// Icone du site
|
||||
& > .icon{
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 4em;
|
||||
height: 4em;
|
||||
|
||||
background-color: darken($theme-color, 10);
|
||||
background-image: url('../src/static/icon.svg');
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 50% 50%;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
transition: all .3s;
|
||||
|
||||
// @hover
|
||||
&:hover{
|
||||
background-color: darken($theme-color, 15);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -77,94 +50,6 @@ $theme-color: #5395f9;
|
|||
transition: all .3s;
|
||||
|
||||
z-index: 9;
|
||||
|
||||
|
||||
& > span[data-link]{
|
||||
display: block;
|
||||
position: relative;
|
||||
width: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
|
||||
// padding: 1em;
|
||||
margin: 2em .7em;
|
||||
padding: .55em;
|
||||
|
||||
border: .01em solid transparent;
|
||||
border-radius: 2px;
|
||||
|
||||
|
||||
color: #a2a2a2;
|
||||
line-height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
|
||||
transition: color .3s, border .3s;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
svg, svg *{
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
|
||||
stroke: none !important;
|
||||
fill: #444 !important;
|
||||
|
||||
transition: fill .3s;
|
||||
}
|
||||
|
||||
|
||||
&[data-desc]:after{
|
||||
content: attr(data-desc);
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: calc( .7em - 2*.3em );
|
||||
left: calc( 4.6em - 2*.3em );
|
||||
padding: .3em;
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
background-color: #2a2a2a;
|
||||
|
||||
color: #e2e2e2;
|
||||
white-space: nowrap;
|
||||
|
||||
transition: transform .1s;
|
||||
|
||||
transform-origin: 0 0;
|
||||
transform: scaleX(0);
|
||||
|
||||
}
|
||||
|
||||
|
||||
&:hover{
|
||||
border-color: #e6e6e6;
|
||||
box-shadow: inset 0 0 .5em #eee;
|
||||
|
||||
&:after{
|
||||
transform: scaleX(1);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
svg, svg *{
|
||||
fill: $theme-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.active{
|
||||
border-color: #e6e6e6;
|
||||
|
||||
svg, svg *{
|
||||
fill: $theme-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// Gestion du menu hover
|
||||
& > #MENU-SIDE > span[data-link]:hover{
|
||||
color: darken(#a2a2a2, 30);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#WRAPPER>#MENU-SIDE>span[data-link]{display:block;position:relative;width:calc( 4em - 2*.7em - 2*.55em - 2*.01em );height:calc( 4em - 2*.7em - 2*.55em - 2*.01em );margin:2em .7em;padding:.55em;border:.01em solid transparent;border-radius:2px;color:#a2a2a2;line-height:calc( 4em - 2*.7em - 2*.55em - 2*.01em );transition:color .3s, border .3s;cursor:pointer}#WRAPPER>#MENU-SIDE>span[data-link] svg,#WRAPPER>#MENU-SIDE>span[data-link] svg *{width:1.5em;height:1.5em;stroke:none !important;fill:#000 !important;transition:fill .3s}#WRAPPER>#MENU-SIDE>span[data-link][data-desc]:after{content:attr(data-desc);display:block;position:absolute;top:calc( .7em - 2*.3em );left:calc( 4.6em - 2*.3em );padding:.3em;border-radius:3px;background-color:#2a2a2a;color:#e2e2e2;white-space:nowrap;transition:transform .1s;transform-origin:0 0;transform:scaleX(0)}#WRAPPER>#MENU-SIDE>span[data-link]:hover,#WRAPPER>#MENU-SIDE>span[data-link].active{color:#5395f9;border-color:#e6e6e6;box-shadow:inset 0 0 .5em #eee}#WRAPPER>#MENU-SIDE>span[data-link]:hover:hover:after,#WRAPPER>#MENU-SIDE>span[data-link].active:hover:after{transform:scaleX(1);color:#fff}#WRAPPER>#MENU-SIDE>span[data-link]:hover svg,#WRAPPER>#MENU-SIDE>span[data-link]:hover svg *,#WRAPPER>#MENU-SIDE>span[data-link].active svg,#WRAPPER>#MENU-SIDE>span[data-link].active svg *{fill:#085dde !important}
|
||||
/*# sourceMappingURL=menu-side.css.map */
|
|
@ -0,0 +1,79 @@
|
|||
@import 'constants';
|
||||
|
||||
#WRAPPER > #MENU-SIDE{
|
||||
|
||||
& > span[data-link]{
|
||||
display: block;
|
||||
position: relative;
|
||||
width: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
|
||||
// padding: 1em;
|
||||
margin: 2em .7em;
|
||||
padding: .55em;
|
||||
|
||||
border: .01em solid transparent;
|
||||
border-radius: 2px;
|
||||
|
||||
|
||||
color: #a2a2a2;
|
||||
line-height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
||||
|
||||
transition: color .3s, border .3s;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
svg, svg *{
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
|
||||
stroke: none !important;
|
||||
fill: #000 !important;
|
||||
|
||||
transition: fill .3s;
|
||||
}
|
||||
|
||||
|
||||
&[data-desc]:after{
|
||||
content: attr(data-desc);
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: calc( .7em - 2*.3em );
|
||||
left: calc( 4.6em - 2*.3em );
|
||||
padding: .3em;
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
background-color: #2a2a2a;
|
||||
|
||||
color: #e2e2e2;
|
||||
white-space: nowrap;
|
||||
|
||||
transition: transform .1s;
|
||||
|
||||
transform-origin: 0 0;
|
||||
transform: scaleX(0);
|
||||
|
||||
}
|
||||
|
||||
|
||||
&:hover,
|
||||
&.active{
|
||||
color: $theme-color;
|
||||
border-color: #e6e6e6;
|
||||
box-shadow: inset 0 0 .5em #eee;
|
||||
|
||||
&:hover:after{
|
||||
transform: scaleX(1);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
svg, svg *{
|
||||
fill: darken($theme-color, 20) !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
|
||||
/*# sourceMappingURL=menu.css.map */
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
/*# sourceMappingURL=submenu-side.css.map */
|
|
@ -0,0 +1 @@
|
|||
@import 'constants';
|
|
@ -1,51 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 32 32"
|
||||
height="32px"
|
||||
id="Layer_1"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
width="32px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="menu-dashboard.svg"><metadata
|
||||
id="metadata3942"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3940" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview3938"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.375"
|
||||
inkscape:cx="-10.305085"
|
||||
inkscape:cy="16"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><g
|
||||
id="g3930"
|
||||
style="fill:#000000;fill-opacity:1"><path
|
||||
d="M16,30c-3.74,0-7.255-1.456-9.899-4.101C1.779,21.578,0.752,15.025,3.547,9.595C3.8,9.104,4.402,8.911,4.894,9.163 s0.685,0.855,0.432,1.347C2.93,15.164,3.81,20.78,7.515,24.485C9.781,26.752,12.794,28,16,28c3.205,0,6.219-1.248,8.485-3.515 S28,19.205,28,16c0-3.206-1.248-6.219-3.515-8.485S19.206,4,16,4c-3.206,0-6.219,1.249-8.485,3.515 c-0.391,0.391-1.023,0.391-1.414,0s-0.391-1.023,0-1.414C8.745,3.457,12.26,2,16,2c3.74,0,7.256,1.457,9.899,4.101 C28.544,8.745,30,12.26,30,16c0,3.739-1.456,7.255-4.101,9.899C23.256,28.544,19.74,30,16,30z"
|
||||
id="path3932"
|
||||
style="fill:#000000;fill-opacity:1" /></g><g
|
||||
id="g3934"
|
||||
style="fill:#000000;fill-opacity:1"><path
|
||||
d="M16,20c-1.068,0-2.073-0.416-2.829-1.172c-1.56-1.56-1.56-4.097,0-5.656c1.257-1.257,7.272-3.639,8.465-4.104 c0.371-0.144,0.79-0.056,1.07,0.225s0.369,0.7,0.225,1.07c-0.465,1.193-2.847,7.209-4.104,8.465C18.073,19.584,17.068,20,16,20z M20.188,11.813c-2.453,1.028-5.064,2.235-5.602,2.773c-0.78,0.78-0.78,2.048,0,2.828c0.756,0.756,2.073,0.756,2.829,0 C17.952,16.875,19.16,14.266,20.188,11.813z"
|
||||
id="path3936"
|
||||
style="fill:#000000;fill-opacity:1" /></g></svg>
|
Before Width: | Height: | Size: 2.6 KiB |
|
@ -1,51 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 32 32"
|
||||
height="32px"
|
||||
id="Layer_1"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
width="32px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="menu-machines.svg"><metadata
|
||||
id="metadata3048"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3046" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview3044"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.375"
|
||||
inkscape:cx="-36.61017"
|
||||
inkscape:cy="16"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><g
|
||||
id="truck_1_"
|
||||
style="fill:#000000;fill-opacity:1"><path
|
||||
d="M24.832,11.445C24.646,11.167,24.334,11,24,11h-1c-0.553,0-1,0.447-1,1v6c0,0.553,0.447,1,1,1h4 c0.553,0,1-0.447,1-1v-1.5c0-0.197-0.059-0.391-0.168-0.555L24.832,11.445z M27,18h-4v-6h1l3,4.5V18z"
|
||||
id="path3040"
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
fill="#333332" /><path
|
||||
d="M31.496,15.336l-4-6C26.938,8.499,26.004,8,25,8h-4V6c0-1.654-1.346-3-3-3H3C1.346,3,0,4.346,0,6v11 c0,1.654,1.346,3,3,3h0v3c0,1.654,1.346,3,3,3h1.142c0.447,1.721,2,3,3.859,3c1.857,0,3.41-1.279,3.857-3h5.282 c0.447,1.721,2,3,3.859,3c1.857,0,3.41-1.279,3.857-3H29c1.654,0,3-1.346,3-3v-6C32,16.406,31.826,15.83,31.496,15.336z M3,18 c-0.552,0-1-0.447-1-1V6c0-0.553,0.448-1,1-1h15c0.553,0,1,0.447,1,1v2v2v7c0,0.553-0.447,1-1,1H3z M11.001,27 c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2S12.104,27,11.001,27z M24,27c-1.105,0-2-0.896-2-2s0.895-2,2-2 c1.104,0,2,0.896,2,2S25.104,27,24,27z M30,23c0,0.553-0.447,1-1,1h-1.143c-0.447-1.721-2-3-3.857-3c-1.859,0-3.412,1.279-3.859,3 h-5.282c-0.447-1.721-2-3-3.857-3c-1.859,0-3.412,1.279-3.859,3H6c-0.552,0-1-0.447-1-1v-3h13c1.654,0,3-1.346,3-3v-7h4 c0.334,0,0.646,0.167,0.832,0.445l4,6C29.941,16.609,30,16.803,30,17V23z"
|
||||
id="path3042"
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
fill="#333332" /></g></svg>
|
Before Width: | Height: | Size: 2.8 KiB |
|
@ -1,77 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 128 128"
|
||||
height="128px"
|
||||
id="Layer_1"
|
||||
version="1.1"
|
||||
viewBox="0 0 128 128"
|
||||
width="128px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="menu-settings.svg"><metadata
|
||||
id="metadata3091"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3089" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview3087"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.84375"
|
||||
inkscape:cx="-146.44068"
|
||||
inkscape:cy="64"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><path
|
||||
d="M 61.636503,66.295309 H 10.458208 c -1.2360991,0 -2.2393097,-1.00321 -2.2393097,-2.239309 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 51.178295 c 1.236099,0 2.239309,1.00321 2.239309,2.239309 0,1.236099 -1.00321,2.239309 -2.239309,2.239309 z"
|
||||
id="path3069"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 117.63379,66.295309 H 90.479927 c -1.236099,0 -2.239309,-1.00321 -2.239309,-2.239309 0,-1.236099 1.00321,-2.239309 2.239309,-2.239309 h 27.153863 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239309 -2.23931,2.239309 z"
|
||||
id="path3071"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 46.643207,100.50412 H 10.458208 c -1.2360991,0 -2.2393097,-1.003212 -2.2393097,-2.239311 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 36.184999 c 1.236099,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.003211,2.239311 -2.23931,2.239311 z"
|
||||
id="path3073"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 117.63379,100.50412 H 76.057655 c -1.236098,0 -2.239309,-1.003212 -2.239309,-2.239311 0,-1.236099 1.003211,-2.239309 2.239309,-2.239309 h 41.576135 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239311 -2.23931,2.239311 z"
|
||||
id="path3075"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 31.539066,32.08538 H 10.458208 c -1.2360991,0 -2.2393097,-1.00321 -2.2393097,-2.239309 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 21.080858 c 1.236099,0 2.239309,1.00321 2.239309,2.239309 0,1.236099 -1.00321,2.239309 -2.239309,2.239309 z"
|
||||
id="path3077"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 117.63379,32.08538 H 60.384729 c -1.236099,0 -2.239309,-1.00321 -2.239309,-2.239309 0,-1.236099 1.00321,-2.239309 2.239309,-2.239309 h 57.249061 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239309 -2.23931,2.239309 z"
|
||||
id="path3079"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 40.0518,40.596995 c -5.928571,0 -10.753163,-4.824592 -10.753163,-10.753163 0,-5.928572 4.824592,-10.752044 10.753163,-10.752044 5.928572,0 10.753164,4.823472 10.753164,10.752044 0,5.929691 -4.824592,10.753163 -10.753164,10.753163 z m 0,-17.026588 c -3.459733,0 -6.274544,2.814811 -6.274544,6.273425 0,3.459733 2.814811,6.274545 6.274544,6.274545 3.459733,0 6.274545,-2.814812 6.274545,-6.274545 0,-3.458614 -2.814812,-6.273425 -6.274545,-6.273425 z"
|
||||
id="path3081"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 55.155942,109.02021 c -5.928572,0 -10.753164,-4.82459 -10.753164,-10.754281 0,-5.928572 4.824592,-10.753164 10.753164,-10.753164 5.930811,0 10.754283,4.824592 10.754283,10.753164 0.0011,5.929691 -4.823472,10.754281 -10.754283,10.754281 z m 0,-17.028826 c -3.459733,0 -6.274545,2.814812 -6.274545,6.274545 0,3.461971 2.814812,6.275661 6.274545,6.275661 3.460852,0 6.275664,-2.81481 6.275664,-6.275661 0.0011,-3.459733 -2.814812,-6.274545 -6.275664,-6.274545 z"
|
||||
id="path3083"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 70.153716,74.810283 c -5.93193,0 -10.756522,-4.825712 -10.756522,-10.754283 0,-5.928571 4.825711,-10.753163 10.756522,-10.753163 5.927452,0 10.750924,4.823472 10.750924,10.753163 0,5.929691 -4.823472,10.754283 -10.750924,10.754283 z m 0,-17.028828 c -3.461972,0 -6.277904,2.814812 -6.277904,6.274545 0,3.460853 2.817052,6.275664 6.277904,6.275664 3.458614,0 6.272306,-2.815931 6.272306,-6.275664 0,-3.459733 -2.813692,-6.274545 -6.272306,-6.274545 z"
|
||||
id="path3085"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 5.2 KiB |
|
@ -1,68 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="32px"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
width="32px"
|
||||
id="svg3043"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="menu-sync.svg">
|
||||
<metadata
|
||||
id="metadata3054">
|
||||
<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></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview3052"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.375"
|
||||
inkscape:cx="-36.61017"
|
||||
inkscape:cy="16"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3043" />
|
||||
<defs
|
||||
id="defs3047" />
|
||||
<g
|
||||
fill="none"
|
||||
fill-rule="evenodd"
|
||||
id="Icons new Arranged Names Color"
|
||||
stroke="none"
|
||||
stroke-width="1"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<g
|
||||
fill="#006FD1"
|
||||
id="52 Cloud Sync"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M16,26 C18.4189531,26 20.4367034,24.2822474 20.8999819,22 L22.9291112,22 C22.4438852,25.392291 19.5264743,28 16,28 C13.5555272,28 11.4037064,26.7470086 10.1517571,24.8482429 L9,26 L9,25 L9,23 L9,22 L9.07088885,22 L11.1000181,22 L13,22 L11.6081371,23.3918629 C12.456236,24.945806 14.1050078,26 16,26 Z M20.8999819,20 L20,20 L19,20 L20.3918749,18.6081591 C19.5438006,17.0542175 17.8950132,16 16,16 C13.5810469,16 11.5632966,17.7177526 11.1000181,20 L9.07088885,20 C9.55611479,16.607709 12.4735257,14 16,14 C18.4444875,14 20.5963196,15.2530065 21.8482706,17.151799 L23,16.0000977 L23,20 L22.9291112,20 Z M0,19 C0,16.7828376 1.20753986,14.8416411 3.00211353,13.8029948 C3.10690617,8.92340284 7.0952729,5 12,5 C15.2334976,5 18.0687214,6.70521161 19.6554699,9.26543329 C20.2402065,9.09270496 20.859277,9 21.5,9 C24.2845531,9 26.6601501,10.7509485 27.5858427,13.2118973 C30.129704,13.9074543 32,16.2353674 32,19 C32,22.3069658 29.3136299,25 25.9998243,25 L24.0644804,25 C24.3768209,24.3714946 24.617851,23.701298 24.7769836,23 L26.0031611,23 C28.2105543,23 30,21.2046438 30,19 C30,16.790861 28.2058797,15 26.0031611,15 L25.9725356,15 C25.7238035,12.7500155 23.8162709,11 21.5,11 C20.4427534,11 19.4706636,11.3645993 18.7026063,11.974922 C17.8340685,9.0963276 15.1618462,7 12,7 C8.13400656,7 5,10.1340066 5,14 C5,14.3757911 5.0296122,14.7446659 5.08663046,15.1044183 C3.31778819,15.5175755 2,17.1080834 2,19 C2,21.209139 3.79412025,23 5.99683887,23 L7,23 L7,25 L6.00017566,25 C2.68697795,25 0,22.3137085 0,19 Z M0,19"
|
||||
id="Rectangle 1 copy 4"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.3 KiB |
|
@ -1,51 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 24 24"
|
||||
id="Layer_1"
|
||||
version="1.0"
|
||||
viewBox="0 0 24 24"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
width="100%"
|
||||
height="100%"
|
||||
sodipodi:docname="menu-users.svg"><metadata
|
||||
id="metadata4530"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4528" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview4526"
|
||||
showgrid="false"
|
||||
inkscape:zoom="13.906433"
|
||||
inkscape:cx="-4.497109"
|
||||
inkscape:cy="11.721495"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:0.83518391999999986;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="m 11.999999,1.5788564 c -2.7814338,0 -5.0482614,2.2668276 -5.0482614,5.0482619 0,2.7814341 2.2668276,5.0482627 5.0482614,5.0482627 2.781435,0 5.048263,-2.2668286 5.048263,-5.0482627 0,-2.7814343 -2.266828,-5.0482619 -5.048263,-5.0482619 z"
|
||||
id="circle4522"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" /><path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="m 12,15.1875 c 3.987532,0 6.540859,1.282386 8.125,2.5625 1.523571,1.231168 2.081835,2.379808 2.125,2.46875 l 0,2.03125 -20.5,0 0,-2.03125 C 1.7931647,20.129808 2.3514295,18.981168 3.875,17.75 5.4591406,16.469886 8.0124676,15.1875 12,15.1875 z"
|
||||
id="path4524"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssccccss" /></svg>
|
Before Width: | Height: | Size: 3.2 KiB |
|
@ -1 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg width='176px' height='176px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-ring-alt"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><circle cx="50" cy="50" r="40" stroke="#ffffff" fill="none" stroke-width="10" stroke-linecap="round"></circle><circle cx="50" cy="50" r="40" stroke="#5395F9" fill="none" stroke-width="6" stroke-linecap="round"><animate attributeName="stroke-dashoffset" dur="2s" repeatCount="indefinite" from="0" to="502"></animate><animate attributeName="stroke-dasharray" dur="2s" repeatCount="indefinite" values="100.4 150.6;1 250;100.4 150.6"></animate></circle></svg>
|
||||
<?xml version="1.0" encoding="utf-8"?><svg width='198px' height='198px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-ring-alt"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><circle cx="50" cy="50" r="40" stroke="#5395f9" fill="none" stroke-width="10" stroke-linecap="round"></circle><circle cx="50" cy="50" r="40" stroke="#ffffff" fill="none" stroke-width="6" stroke-linecap="round"><animate attributeName="stroke-dashoffset" dur="2s" repeatCount="indefinite" from="0" to="502"></animate><animate attributeName="stroke-dasharray" dur="2s" repeatCount="indefinite" values="100.4 150.6;1 250;100.4 150.6"></animate></circle></svg>
|
Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 709 B |
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg width='198px' height='198px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-ring-alt"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><circle cx="50" cy="50" r="40" stroke="#5395f9" fill="none" stroke-width="10" stroke-linecap="round"></circle><circle cx="50" cy="50" r="40" stroke="#ffffff" fill="none" stroke-width="6" stroke-linecap="round"><animate attributeName="stroke-dashoffset" dur="2s" repeatCount="indefinite" from="0" to="502"></animate><animate attributeName="stroke-dasharray" dur="2s" repeatCount="indefinite" values="100.4 150.6;1 250;100.4 150.6"></animate></circle></svg>
|
Before Width: | Height: | Size: 709 B |
|
@ -15,10 +15,10 @@
|
|||
width="32px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="1454300750_circle_dashboard_fuel_gauge_meter_icon.svg"><metadata
|
||||
sodipodi:docname="menu-dashboard.svg"><metadata
|
||||
id="metadata3942"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3940" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
|
@ -40,12 +40,16 @@
|
|||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" /><g
|
||||
id="g3930"
|
||||
style="fill:#a2a2a2;fill-opacity:1"><path
|
||||
d="M16,30c-3.74,0-7.255-1.456-9.899-4.101C1.779,21.578,0.752,15.025,3.547,9.595C3.8,9.104,4.402,8.911,4.894,9.163 s0.685,0.855,0.432,1.347C2.93,15.164,3.81,20.78,7.515,24.485C9.781,26.752,12.794,28,16,28c3.205,0,6.219-1.248,8.485-3.515 S28,19.205,28,16c0-3.206-1.248-6.219-3.515-8.485S19.206,4,16,4c-3.206,0-6.219,1.249-8.485,3.515 c-0.391,0.391-1.023,0.391-1.414,0s-0.391-1.023,0-1.414C8.745,3.457,12.26,2,16,2c3.74,0,7.256,1.457,9.899,4.101 C28.544,8.745,30,12.26,30,16c0,3.739-1.456,7.255-4.101,9.899C23.256,28.544,19.74,30,16,30z"
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(1.1162228,0,0,1.1162228,-1.8588226,-1.8595642)"><path
|
||||
d="M 16,30 C 12.26,30 8.745,28.544 6.101,25.899 1.779,21.578 0.752,15.025 3.547,9.595 3.8,9.104 4.402,8.911 4.894,9.163 5.386,9.415 5.579,10.018 5.326,10.51 2.93,15.164 3.81,20.78 7.515,24.485 9.781,26.752 12.794,28 16,28 19.205,28 22.219,26.752 24.485,24.485 26.751,22.218 28,19.205 28,16 28,12.794 26.752,9.781 24.485,7.515 22.218,5.249 19.206,4 16,4 12.794,4 9.781,5.249 7.515,7.515 7.124,7.906 6.492,7.906 6.101,7.515 5.71,7.124 5.71,6.492 6.101,6.101 8.745,3.457 12.26,2 16,2 19.74,2 23.256,3.457 25.899,6.101 28.544,8.745 30,12.26 30,16 30,19.739 28.544,23.255 25.899,25.899 23.256,28.544 19.74,30 16,30 z"
|
||||
id="path3932"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /></g><g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" /></g><g
|
||||
id="g3934"
|
||||
style="fill:#a2a2a2;fill-opacity:1"><path
|
||||
d="M16,20c-1.068,0-2.073-0.416-2.829-1.172c-1.56-1.56-1.56-4.097,0-5.656c1.257-1.257,7.272-3.639,8.465-4.104 c0.371-0.144,0.79-0.056,1.07,0.225s0.369,0.7,0.225,1.07c-0.465,1.193-2.847,7.209-4.104,8.465C18.073,19.584,17.068,20,16,20z M20.188,11.813c-2.453,1.028-5.064,2.235-5.602,2.773c-0.78,0.78-0.78,2.048,0,2.828c0.756,0.756,2.073,0.756,2.829,0 C17.952,16.875,19.16,14.266,20.188,11.813z"
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(1.1162228,0,0,1.1162228,-1.8588226,-1.8595642)"><path
|
||||
d="m 16,20 c -1.068,0 -2.073,-0.416 -2.829,-1.172 -1.56,-1.56 -1.56,-4.097 0,-5.656 1.257,-1.257 7.272,-3.639 8.465,-4.104 0.371,-0.144 0.79,-0.056 1.07,0.225 0.28,0.281 0.369,0.7 0.225,1.07 -0.465,1.193 -2.847,7.209 -4.104,8.465 C 18.073,19.584 17.068,20 16,20 z m 4.188,-8.187 c -2.453,1.028 -5.064,2.235 -5.602,2.773 -0.78,0.78 -0.78,2.048 0,2.828 0.756,0.756 2.073,0.756 2.829,0 0.537,-0.539 1.745,-3.148 2.773,-5.601 z"
|
||||
id="path3936"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /></g></svg>
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" /></g></svg>
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -15,10 +15,10 @@
|
|||
width="32px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="1454300768_truck.svg"><metadata
|
||||
sodipodi:docname="menu-machines.svg"><metadata
|
||||
id="metadata3048"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3046" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
|
@ -33,19 +33,19 @@
|
|||
id="namedview3044"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.375"
|
||||
inkscape:cx="-10.305085"
|
||||
inkscape:cx="-36.61017"
|
||||
inkscape:cy="16"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><g
|
||||
id="truck_1_"
|
||||
style="fill:#a2a2a2;fill-opacity:1"><path
|
||||
style="fill:#000000;fill-opacity:1"><path
|
||||
d="M24.832,11.445C24.646,11.167,24.334,11,24,11h-1c-0.553,0-1,0.447-1,1v6c0,0.553,0.447,1,1,1h4 c0.553,0,1-0.447,1-1v-1.5c0-0.197-0.059-0.391-0.168-0.555L24.832,11.445z M27,18h-4v-6h1l3,4.5V18z"
|
||||
fill="#333332"
|
||||
id="path3040"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M31.496,15.336l-4-6C26.938,8.499,26.004,8,25,8h-4V6c0-1.654-1.346-3-3-3H3C1.346,3,0,4.346,0,6v11 c0,1.654,1.346,3,3,3h0v3c0,1.654,1.346,3,3,3h1.142c0.447,1.721,2,3,3.859,3c1.857,0,3.41-1.279,3.857-3h5.282 c0.447,1.721,2,3,3.859,3c1.857,0,3.41-1.279,3.857-3H29c1.654,0,3-1.346,3-3v-6C32,16.406,31.826,15.83,31.496,15.336z M3,18 c-0.552,0-1-0.447-1-1V6c0-0.553,0.448-1,1-1h15c0.553,0,1,0.447,1,1v2v2v7c0,0.553-0.447,1-1,1H3z M11.001,27 c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2S12.104,27,11.001,27z M24,27c-1.105,0-2-0.896-2-2s0.895-2,2-2 c1.104,0,2,0.896,2,2S25.104,27,24,27z M30,23c0,0.553-0.447,1-1,1h-1.143c-0.447-1.721-2-3-3.857-3c-1.859,0-3.412,1.279-3.859,3 h-5.282c-0.447-1.721-2-3-3.857-3c-1.859,0-3.412,1.279-3.859,3H6c-0.552,0-1-0.447-1-1v-3h13c1.654,0,3-1.346,3-3v-7h4 c0.334,0,0.646,0.167,0.832,0.445l4,6C29.941,16.609,30,16.803,30,17V23z"
|
||||
fill="#333332"
|
||||
id="path3042"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /></g></svg>
|
||||
style="fill:#000000;fill-opacity:1" /></g></svg>
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
|
@ -15,10 +15,10 @@
|
|||
width="128px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="1454301416_settings.svg"><metadata
|
||||
sodipodi:docname="menu-settings.svg"><metadata
|
||||
id="metadata3091"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3089" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
|
@ -33,45 +33,45 @@
|
|||
id="namedview3087"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.84375"
|
||||
inkscape:cx="-41.220339"
|
||||
inkscape:cx="-146.44068"
|
||||
inkscape:cy="64"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><path
|
||||
d="M 61.636503,66.295309 H 10.458208 c -1.2360991,0 -2.2393097,-1.00321 -2.2393097,-2.239309 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 51.178295 c 1.236099,0 2.239309,1.00321 2.239309,2.239309 0,1.236099 -1.00321,2.239309 -2.239309,2.239309 z"
|
||||
d="M 61.355597,66.556374 H 4.2107982 c -1.3802069,0 -2.5003745,-1.120167 -2.5003745,-2.500374 0,-1.380207 1.1201676,-2.500374 2.5003745,-2.500374 H 61.355597 c 1.380207,0 2.500374,1.120167 2.500374,2.500374 0,1.380207 -1.120167,2.500374 -2.500374,2.500374 z"
|
||||
id="path3069"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="M 117.63379,66.295309 H 90.479927 c -1.236099,0 -2.239309,-1.00321 -2.239309,-2.239309 0,-1.236099 1.00321,-2.239309 2.239309,-2.239309 h 27.153863 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239309 -2.23931,2.239309 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 123.8812,66.556374 H 93.561666 c -1.380207,0 -2.500374,-1.120167 -2.500374,-2.500374 0,-1.380207 1.120167,-2.500374 2.500374,-2.500374 H 123.8812 c 1.38021,0 2.50037,1.120167 2.50037,2.500374 0,1.380207 -1.11891,2.500374 -2.50037,2.500374 z"
|
||||
id="path3071"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="M 46.643207,100.50412 H 10.458208 c -1.2360991,0 -2.2393097,-1.003212 -2.2393097,-2.239311 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 36.184999 c 1.236099,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.003211,2.239311 -2.23931,2.239311 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 44.614342,104.75334 H 4.2107982 c -1.3802069,0 -2.5003745,-1.12017 -2.5003745,-2.50038 0,-1.3802 1.1201676,-2.500369 2.5003745,-2.500369 H 44.614342 c 1.380207,0 2.500375,1.120169 2.500375,2.500369 0,1.38021 -1.120168,2.50038 -2.500375,2.50038 z"
|
||||
id="path3073"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="M 117.63379,100.50412 H 76.057655 c -1.236098,0 -2.239309,-1.003212 -2.239309,-2.239311 0,-1.236099 1.003211,-2.239309 2.239309,-2.239309 h 41.576135 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239311 -2.23931,2.239311 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 123.8812,104.75334 H 77.458006 c -1.380205,0 -2.500373,-1.12017 -2.500373,-2.50038 0,-1.3802 1.120168,-2.500369 2.500373,-2.500369 H 123.8812 c 1.38021,0 2.50037,1.120169 2.50037,2.500369 0,1.38021 -1.11891,2.50038 -2.50037,2.50038 z"
|
||||
id="path3075"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="M 31.539066,32.08538 H 10.458208 c -1.2360991,0 -2.2393097,-1.00321 -2.2393097,-2.239309 0,-1.236099 1.0032106,-2.239309 2.2393097,-2.239309 h 21.080858 c 1.236099,0 2.239309,1.00321 2.239309,2.239309 0,1.236099 -1.00321,2.239309 -2.239309,2.239309 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 27.74932,28.358159 H 4.2107982 c -1.3802069,0 -2.5003745,-1.120167 -2.5003745,-2.500374 0,-1.380207 1.1201676,-2.500374 2.5003745,-2.500374 H 27.74932 c 1.380206,0 2.500373,1.120167 2.500373,2.500374 0,1.380207 -1.120167,2.500374 -2.500373,2.500374 z"
|
||||
id="path3077"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="M 117.63379,32.08538 H 60.384729 c -1.236099,0 -2.239309,-1.00321 -2.239309,-2.239309 0,-1.236099 1.00321,-2.239309 2.239309,-2.239309 h 57.249061 c 1.2361,0 2.23931,1.00321 2.23931,2.239309 0,1.236099 -1.00209,2.239309 -2.23931,2.239309 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="M 123.8812,28.358159 H 59.957888 c -1.380207,0 -2.500373,-1.120167 -2.500373,-2.500374 0,-1.380207 1.120166,-2.500374 2.500373,-2.500374 H 123.8812 c 1.38021,0 2.50037,1.120167 2.50037,2.500374 0,1.380207 -1.11891,2.500374 -2.50037,2.500374 z"
|
||||
id="path3079"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="m 40.0518,40.596995 c -5.928571,0 -10.753163,-4.824592 -10.753163,-10.753163 0,-5.928572 4.824592,-10.752044 10.753163,-10.752044 5.928572,0 10.753164,4.823472 10.753164,10.752044 0,5.929691 -4.824592,10.753163 -10.753164,10.753163 z m 0,-17.026588 c -3.459733,0 -6.274544,2.814811 -6.274544,6.273425 0,3.459733 2.814811,6.274545 6.274544,6.274545 3.459733,0 6.274545,-2.814812 6.274545,-6.274545 0,-3.458614 -2.814812,-6.273425 -6.274545,-6.273425 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 37.254491,37.862081 c -6.61974,0 -12.006796,-5.387056 -12.006796,-12.006796 0,-6.619741 5.387056,-12.005546 12.006796,-12.005546 6.619741,0 12.006797,5.385805 12.006797,12.005546 0,6.62099 -5.387056,12.006796 -12.006797,12.006796 z m 0,-19.011594 c -3.863078,0 -7.006047,3.142969 -7.006047,7.004798 0,3.863078 3.142969,7.006048 7.006047,7.006048 3.863078,0 7.006049,-3.14297 7.006049,-7.006048 0,-3.861829 -3.142971,-7.004798 -7.006049,-7.004798 z"
|
||||
id="path3081"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="m 55.155942,109.02021 c -5.928572,0 -10.753164,-4.82459 -10.753164,-10.754281 0,-5.928572 4.824592,-10.753164 10.753164,-10.753164 5.930811,0 10.754283,4.824592 10.754283,10.753164 0.0011,5.929691 -4.823472,10.754281 -10.754283,10.754281 z m 0,-17.028826 c -3.459733,0 -6.274545,2.814812 -6.274545,6.274545 0,3.461971 2.814812,6.275661 6.274545,6.275661 3.460852,0 6.275664,-2.81481 6.275664,-6.275661 0.0011,-3.459733 -2.814812,-6.274545 -6.275664,-6.274545 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 54.119515,114.26226 c -6.619741,0 -12.006797,-5.38705 -12.006797,-12.00804 0,-6.619746 5.387056,-12.006802 12.006797,-12.006802 6.622241,0 12.008046,5.387056 12.008046,12.006802 0.0012,6.62099 -5.385805,12.00804 -12.008046,12.00804 z m 0,-19.014093 c -3.863078,0 -7.006048,3.14297 -7.006048,7.006053 0,3.86557 3.14297,7.00729 7.006048,7.00729 3.864328,0 7.007298,-3.14297 7.007298,-7.00729 0.0012,-3.863083 -3.14297,-7.006053 -7.007298,-7.006053 z"
|
||||
id="path3083"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /><path
|
||||
d="m 70.153716,74.810283 c -5.93193,0 -10.756522,-4.825712 -10.756522,-10.754283 0,-5.928571 4.825711,-10.753163 10.756522,-10.753163 5.927452,0 10.750924,4.823472 10.750924,10.753163 0,5.929691 -4.823472,10.754283 -10.750924,10.754283 z m 0,-17.028828 c -3.461972,0 -6.277904,2.814812 -6.277904,6.274545 0,3.460853 2.817052,6.275664 6.277904,6.275664 3.458614,0 6.272306,-2.815931 6.272306,-6.275664 0,-3.459733 -2.813692,-6.274545 -6.272306,-6.274545 z"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
d="m 70.86577,76.064047 c -6.62349,0 -12.010546,-5.388307 -12.010546,-12.008047 0,-6.61974 5.388305,-12.006796 12.010546,-12.006796 6.618491,0 12.004296,5.385806 12.004296,12.006796 0,6.620991 -5.385805,12.008047 -12.004296,12.008047 z m 0,-19.014095 c -3.865578,0 -7.009799,3.14297 -7.009799,7.006048 0,3.864329 3.145472,7.007298 7.009799,7.007298 3.861829,0 7.003549,-3.14422 7.003549,-7.007298 0,-3.863078 -3.14172,-7.006048 -7.003549,-7.006048 z"
|
||||
id="path3085"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a2a2a2;fill-opacity:1" /></svg>
|
||||
style="fill:#000000;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
@ -13,7 +13,7 @@
|
|||
width="32px"
|
||||
id="svg3043"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="1454301395_52_Cloud_Sync.svg">
|
||||
sodipodi:docname="menu-sync.svg">
|
||||
<metadata
|
||||
id="metadata3054">
|
||||
<rdf:RDF>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
|
@ -40,7 +40,7 @@
|
|||
id="namedview3052"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.375"
|
||||
inkscape:cx="-10.305085"
|
||||
inkscape:cx="-36.61017"
|
||||
inkscape:cy="16"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
|
@ -54,15 +54,15 @@
|
|||
id="Icons new Arranged Names Color"
|
||||
stroke="none"
|
||||
stroke-width="1"
|
||||
style="fill:#a2a2a2;fill-opacity:1">
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<g
|
||||
fill="#006FD1"
|
||||
id="52 Cloud Sync"
|
||||
style="fill:#a2a2a2;fill-opacity:1">
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M16,26 C18.4189531,26 20.4367034,24.2822474 20.8999819,22 L22.9291112,22 C22.4438852,25.392291 19.5264743,28 16,28 C13.5555272,28 11.4037064,26.7470086 10.1517571,24.8482429 L9,26 L9,25 L9,23 L9,22 L9.07088885,22 L11.1000181,22 L13,22 L11.6081371,23.3918629 C12.456236,24.945806 14.1050078,26 16,26 Z M20.8999819,20 L20,20 L19,20 L20.3918749,18.6081591 C19.5438006,17.0542175 17.8950132,16 16,16 C13.5810469,16 11.5632966,17.7177526 11.1000181,20 L9.07088885,20 C9.55611479,16.607709 12.4735257,14 16,14 C18.4444875,14 20.5963196,15.2530065 21.8482706,17.151799 L23,16.0000977 L23,20 L22.9291112,20 Z M0,19 C0,16.7828376 1.20753986,14.8416411 3.00211353,13.8029948 C3.10690617,8.92340284 7.0952729,5 12,5 C15.2334976,5 18.0687214,6.70521161 19.6554699,9.26543329 C20.2402065,9.09270496 20.859277,9 21.5,9 C24.2845531,9 26.6601501,10.7509485 27.5858427,13.2118973 C30.129704,13.9074543 32,16.2353674 32,19 C32,22.3069658 29.3136299,25 25.9998243,25 L24.0644804,25 C24.3768209,24.3714946 24.617851,23.701298 24.7769836,23 L26.0031611,23 C28.2105543,23 30,21.2046438 30,19 C30,16.790861 28.2058797,15 26.0031611,15 L25.9725356,15 C25.7238035,12.7500155 23.8162709,11 21.5,11 C20.4427534,11 19.4706636,11.3645993 18.7026063,11.974922 C17.8340685,9.0963276 15.1618462,7 12,7 C8.13400656,7 5,10.1340066 5,14 C5,14.3757911 5.0296122,14.7446659 5.08663046,15.1044183 C3.31778819,15.5175755 2,17.1080834 2,19 C2,21.209139 3.79412025,23 5.99683887,23 L7,23 L7,25 L6.00017566,25 C2.68697795,25 0,22.3137085 0,19 Z M0,19"
|
||||
id="Rectangle 1 copy 4"
|
||||
style="fill:#a2a2a2;fill-opacity:1" />
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 128 128"
|
||||
height="128px"
|
||||
id="Layer_1"
|
||||
version="1.1"
|
||||
viewBox="0 0 128 128"
|
||||
width="128px"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="users2.svg"><metadata
|
||||
id="metadata3109"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3107" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview3105"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.84375"
|
||||
inkscape:cx="-41.220339"
|
||||
inkscape:cy="64"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><path
|
||||
d="m 64.32541,88.684531 c -18.906475,0 -34.289581,-15.381889 -34.289581,-34.289581 V 37.470371 c 0,-18.908908 15.383106,-34.2920144 34.289581,-34.2920144 18.908908,0 34.292014,15.3831064 34.292014,34.2920144 V 54.39495 c 0,18.907692 -15.383106,34.289581 -34.292014,34.289581 z m 0,-80.6396429 c -16.2238,0 -29.42305,13.2004669 -29.42305,29.4254829 V 54.39495 c 0,16.222583 13.19925,29.42305 29.42305,29.42305 16.225016,0 29.425482,-13.200467 29.425482,-29.42305 V 37.470371 c 0,-16.225016 -13.200466,-29.4254829 -29.425482,-29.4254829 z"
|
||||
id="path3101"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="M 110.61951,124.84164 H 17.534926 c -7.9300128,0 -14.3793836,-6.4518 -14.3793836,-14.3806 V 99.834971 c 0,-4.692553 2.376084,-10.982544 13.6992856,-14.280836 l 13.92193,-3.854293 c 1.298148,-0.35404 2.636444,0.401489 2.994134,1.697203 0.35769,1.295714 -0.401489,2.635227 -1.697203,2.994133 l -13.890297,3.84456 C 8.0208572,93.197022 8.0208572,98.193734 8.0208572,99.836188 v 10.626072 c 0,5.24734 4.2679478,9.51407 9.5128528,9.51407 h 93.08458 c 5.24612,0 9.51285,-4.26795 9.51285,-9.51407 V 99.836188 c 0,-4.432193 -3.42604,-7.66357 -10.18565,-9.606533 L 96.693927,86.525008 c -1.294497,-0.36134 -2.051243,-1.703286 -1.688686,-2.999 0.362556,-1.293281 1.700852,-2.054893 2.997783,-1.68747 l 13.268596,3.709514 c 11.34632,3.263009 13.72484,9.57125 13.72484,14.288136 v 10.626072 c 0.002,7.92758 -6.44694,14.37938 -14.37695,14.37938 z"
|
||||
id="path3103"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 213.15254,-50.440678 -2.16949,1.627119"
|
||||
id="path4531"
|
||||
inkscape:connector-type="polyline"
|
||||
inkscape:connector-curvature="0" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
5
view.php
|
@ -14,8 +14,9 @@
|
|||
<link type='text/css' rel='stylesheet' href='/css/font.css' /> <!-- Positionnement global des pages -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/layout.css' /> <!-- Positionnement global des pages -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/header.css' /> <!-- Gestion du header -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/menu-side.css' /> <!-- Gestion du menu -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/submenu-side.css'/> <!-- Gestion du sous-menu -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/container.css' /> <!-- Gestion du container -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/menu.css' /> <!-- Gestion du menu -->
|
||||
<link type='text/css' rel='stylesheet' href='/css/global.css' /> <!-- Style global -->
|
||||
|
||||
|
||||
|
@ -43,7 +44,7 @@
|
|||
<nav id='MENU-SIDE'>
|
||||
<span data-link='dashboard' data-desc='Tableau de bord' ><?php include __ROOT__.'/src/static/menu-dashboard.svg'; ?></span>
|
||||
<span data-link='machines' data-desc='Véhicules' ><?php include __ROOT__.'/src/static/menu-machines.svg'; ?></span>
|
||||
<span data-link='users' data-desc='Utilisateurs' ><?php include __ROOT__.'/src/static/menu-users.svg'; ?></span>
|
||||
<span data-link='users' data-desc='Utilisateurs' ><?php include __ROOT__.'/src/static/users2.svg'; ?></span>
|
||||
<span data-link='sync' data-desc='Synchronisation' ><?php include __ROOT__.'/src/static/menu-sync.svg'; ?></span>
|
||||
<span data-link='settings' data-desc='Paramètres' ><?php include __ROOT__.'/src/static/menu-settings.svg'; ?></span>
|
||||
</nav>
|
||||
|
|