commit 4 @dev_flat -> créé=> [fond] + [layout] + [menu] + [sous-parties] + [searchbar] + [username] + [notif]
|
@ -0,0 +1,20 @@
|
||||||
|
#CONTAINER div{
|
||||||
|
/* position */
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
padding: 2em;
|
||||||
|
|
||||||
|
/* background */
|
||||||
|
background-color: #ecf0f1;
|
||||||
|
|
||||||
|
/* Z */
|
||||||
|
z-index: 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#CONTAINER div.active{ z-index: 8; }
|
|
@ -77,8 +77,8 @@
|
||||||
display: block;
|
display: block;
|
||||||
width: 5em; /* pour faire un carré */
|
width: 5em; /* pour faire un carré */
|
||||||
|
|
||||||
background: transparent url(../src/header/icon.svg) center center no-repeat;
|
background: transparent url(../src/menu/menu_icon/home@hover.svg) center center no-repeat;
|
||||||
background-size: 80% 80%;
|
background-size: 40%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,11 +109,11 @@
|
||||||
line-height: 2.5em;
|
line-height: 2.5em;
|
||||||
|
|
||||||
/* animation */
|
/* animation */
|
||||||
transition: all 0s, background-size .2s ease-in-out;
|
transition: background-position 0s, all .2s ease-in-out;
|
||||||
-moz-transition: all 0s, background-size .2s ease-in-out;
|
-moz-transition: background-position 0s, all .2s ease-in-out;
|
||||||
-webkit-transition: all 0s, background-size .2s ease-in-out;
|
-webkit-transition: all 0s;
|
||||||
-ms-transition: all 0s, background-size .2s ease-in-out;
|
-ms-transition: background-position 0s, all .2s ease-in-out;
|
||||||
-o-transition: all 0s, background-size .2s ease-in-out;
|
-o-transition: background-position 0s, all .2s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
#HEADER .searchbar:focus{
|
#HEADER .searchbar:focus{
|
||||||
|
@ -121,3 +121,54 @@
|
||||||
background-image: url(../src/header/search@hover.svg);
|
background-image: url(../src/header/search@hover.svg);
|
||||||
color: #223343;
|
color: #223343;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/******** SUBHEADER ********/
|
||||||
|
#SUBHEADER nav{
|
||||||
|
/* position */
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
top: calc( 100% - 2em );
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 2em;
|
||||||
|
|
||||||
|
/* flex */
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
/* foreground */
|
||||||
|
font-size: .9em;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
#SUBHEADER nav > span{
|
||||||
|
/* position */
|
||||||
|
margin-left: 3em;
|
||||||
|
|
||||||
|
/* border */
|
||||||
|
border-bottom: 3px solid #fff;
|
||||||
|
|
||||||
|
/* animation */
|
||||||
|
transition: all .1s ease-in-out;
|
||||||
|
-moz-transition: all .1s ease-in-out;
|
||||||
|
-webkit-transition: all .1s ease-in-out;
|
||||||
|
-ms-transition: all .1s ease-in-out;
|
||||||
|
-o-transition: all .1s ease-in-out;
|
||||||
|
|
||||||
|
/* extra */
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#SUBHEADER nav > span:hover,
|
||||||
|
#SUBHEADER nav > span.active{
|
||||||
|
border-bottom-color: #2cab5f;
|
||||||
|
}
|
|
@ -41,13 +41,15 @@ body{
|
||||||
/* background */
|
/* background */
|
||||||
background: #ecf0f1;
|
background: #ecf0f1;
|
||||||
background: url(../src/wallpaper.jpg) top left no-repeat;
|
background: url(../src/wallpaper.jpg) top left no-repeat;
|
||||||
|
background: url(http://7-themes.com/data_images/out/4/6780645-colorful-blur-wallpaper.jpg) top left no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
background-attachment: fixed;
|
||||||
|
|
||||||
/* overflow */
|
/* overflow */
|
||||||
overflow-x: hidden; /* empêche la barre horizontale de scroll [précaution] */
|
overflow-x: hidden; /* empêche la barre horizontale de scroll [précaution] */
|
||||||
|
|
||||||
/* foreground */
|
/* foreground */
|
||||||
font: 16px 'Open Sans', 'Helvetica Neue', 'Arial', 'sans-serif';
|
font: 16px 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Arial', 'sans-serif';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,11 +58,18 @@ body{
|
||||||
/* position */
|
/* position */
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: calc( 100% - 2*100px );
|
width: calc( 100% - 2*50px );
|
||||||
min-height: calc( 100% - 2*100px );
|
min-height: calc( 100% - 2*50px );
|
||||||
margin: 100px;
|
margin: 50px;
|
||||||
|
|
||||||
|
/* border */
|
||||||
box-shadow: 0 0 5px #777;
|
box-shadow: 0 0 5px #777;
|
||||||
|
|
||||||
|
/* background */
|
||||||
|
background-color: #ecf0f1;
|
||||||
|
|
||||||
|
/* scroll */
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#MENU{
|
#MENU{
|
||||||
|
@ -127,6 +136,9 @@ body{
|
||||||
width: calc( 100% - 14em );
|
width: calc( 100% - 14em );
|
||||||
height: 10em;
|
height: 10em;
|
||||||
|
|
||||||
|
/* border */
|
||||||
|
border-bottom: 1px solid #d2d3d5;
|
||||||
|
|
||||||
/* background */
|
/* background */
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
||||||
|
|
34
css/menu.css
|
@ -71,11 +71,11 @@
|
||||||
background-size: 1.7em;
|
background-size: 1.7em;
|
||||||
|
|
||||||
/* animation */
|
/* animation */
|
||||||
transition: all 0s, background-size .2s ease-in-out;
|
transition: background-position 0s, all .2s ease-in-out;
|
||||||
-moz-transition: all 0s, background-size .2s ease-in-out;
|
-moz-transition: background-position 0s, all .2s ease-in-out;
|
||||||
-webkit-transition: all 0s, background-size .2s ease-in-out;
|
-webkit-transition: all 0s;
|
||||||
-ms-transition: all 0s, background-size .2s ease-in-out;
|
-ms-transition: background-position 0s, all .2s ease-in-out;
|
||||||
-o-transition: all 0s, background-size .2s ease-in-out;
|
-o-transition: background-position 0s, all .2s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -89,24 +89,24 @@
|
||||||
|
|
||||||
|
|
||||||
/* gestion des différentes icônes */
|
/* gestion des différentes icônes */
|
||||||
#MENU a:nth-child(2){ background-image: url(../src/menu_icon/home.svg); }
|
#MENU a:nth-child(2){ background-image: url(../src/menu/menu_icon/home.svg); }
|
||||||
#MENU a:nth-child(3){ background-image: url(../src/menu_icon/groups.svg); }
|
#MENU a:nth-child(3){ background-image: url(../src/menu/menu_icon/groups.svg); }
|
||||||
#MENU a:nth-child(4){ background-image: url(../src/menu_icon/ue.svg); }
|
#MENU a:nth-child(4){ background-image: url(../src/menu/menu_icon/ue.svg); }
|
||||||
#MENU a:nth-child(5){ background-image: url(../src/menu_icon/modules.svg); }
|
#MENU a:nth-child(5){ background-image: url(../src/menu/menu_icon/modules.svg); }
|
||||||
#MENU a:nth-child(6){ background-image: url(../src/menu_icon/marks.svg); }
|
#MENU a:nth-child(6){ background-image: url(../src/menu/menu_icon/marks.svg); }
|
||||||
#MENU a:nth-child(7){ background-image: url(../src/menu_icon/settings.svg); }
|
#MENU a:nth-child(7){ background-image: url(../src/menu/menu_icon/settings.svg); }
|
||||||
|
|
||||||
|
|
||||||
/* gestion de l'activation des différentes icônes */
|
/* gestion de l'activation des différentes icônes */
|
||||||
#MENU a:nth-child(2):hover,
|
#MENU a:nth-child(2):hover,
|
||||||
#MENU a:nth-child(2).active{ background-image: url(../src/menu_icon/home@hover.svg); }
|
#MENU a:nth-child(2).active{ background-image: url(../src/menu/menu_icon/home@hover.svg); }
|
||||||
#MENU a:nth-child(3):hover,
|
#MENU a:nth-child(3):hover,
|
||||||
#MENU a:nth-child(3).active{ background-image: url(../src/menu_icon/groups@hover.svg); }
|
#MENU a:nth-child(3).active{ background-image: url(../src/menu/menu_icon/groups@hover.svg); }
|
||||||
#MENU a:nth-child(4):hover,
|
#MENU a:nth-child(4):hover,
|
||||||
#MENU a:nth-child(4).active{ background-image: url(../src/menu_icon/ue@hover.svg); }
|
#MENU a:nth-child(4).active{ background-image: url(../src/menu/menu_icon/ue@hover.svg); }
|
||||||
#MENU a:nth-child(5):hover,
|
#MENU a:nth-child(5):hover,
|
||||||
#MENU a:nth-child(5).active{ background-image: url(../src/menu_icon/modules@hover.svg); }
|
#MENU a:nth-child(5).active{ background-image: url(../src/menu/menu_icon/modules@hover.svg); }
|
||||||
#MENU a:nth-child(6):hover,
|
#MENU a:nth-child(6):hover,
|
||||||
#MENU a:nth-child(6).active{ background-image: url(../src/menu_icon/marks@hover.svg); }
|
#MENU a:nth-child(6).active{ background-image: url(../src/menu/menu_icon/marks@hover.svg); }
|
||||||
#MENU a:nth-child(7):hover,
|
#MENU a:nth-child(7):hover,
|
||||||
#MENU a:nth-child(7).active{ background-image: url(../src/menu_icon/settings@hover.svg); }
|
#MENU a:nth-child(7).active{ background-image: url(../src/menu/menu_icon/settings@hover.svg); }
|
||||||
|
|
68
groups.php
|
@ -23,6 +23,14 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
$_SESSION['username'] = null;
|
$_SESSION['username'] = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* VARIABLES DES NOTIFICATIONS */
|
||||||
|
$memberNotifNum = 10;
|
||||||
|
$messageNotifNum = 0;
|
||||||
|
$notifNotifNum = 5;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,7 +50,7 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
<link type='text/css' rel='stylesheet' href='css/container.css'/> <!-- Gestion du container -->
|
<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/menu.css' /> <!-- Gestion du menu -->
|
||||||
<link type='text/css' rel='stylesheet' href='css/global.css' /> <!-- Style global -->
|
<link type='text/css' rel='stylesheet' href='css/global.css' /> <!-- Style global -->
|
||||||
<!-- <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> -->
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
|
|
||||||
<!-- Dépendences Javascript -->
|
<!-- Dépendences Javascript -->
|
||||||
|
@ -68,46 +76,42 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
<!-- HEADER DE LA PAGE -->
|
<!-- HEADER DE LA PAGE -->
|
||||||
<div id='HEADER'>
|
<div id='HEADER'>
|
||||||
<div class='notifbar'>
|
<div class='notifbar'>
|
||||||
<div class='member' data-num></div>
|
<?php
|
||||||
<div class='message'></div>
|
/* membres */
|
||||||
<div class='notification'></div>
|
if( $memberNotifNum > 0 ) echo "<div class='member' data-num='".$memberNotifNum."'></div>";
|
||||||
|
else echo "<div class='member'></div>";
|
||||||
|
|
||||||
|
/* messages */
|
||||||
|
if( $messageNotifNum > 0 ) echo "<div class='message' data-num='".$messageNotifNum."'></div>";
|
||||||
|
else echo "<div class='message'></div>";
|
||||||
|
|
||||||
|
/* notifications */
|
||||||
|
if( $notifNotifNum > 0 ) echo "<div class='notification' data-num='".$notifNotifNum."'></div>";
|
||||||
|
else echo "<div class='notification'></div>";
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='icon'></div>
|
<div class='icon'></div>
|
||||||
<input type='text' placeholder='Type for search' class='searchbar'>
|
<input type='text' placeholder='Type for search' class='searchbar'>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id='SUBHEADER'></div>
|
<div id='SUBHEADER'>
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
<span data-sectname='home' class='active'>Accueil </span>
|
||||||
|
<span data-sectname='groups'>Groupes </span>
|
||||||
|
<span data-sectname='case'>Suivi </span>
|
||||||
|
<span data-sectname='modules'>Modules </span>
|
||||||
|
<span data-sectname='marks'>Notes </span>
|
||||||
|
<span data-sectname='settings'>Paramètres </span>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- CONTENEUR DE LA PAGE -->
|
<!-- CONTENEUR DE LA PAGE -->
|
||||||
<div id='CONTAINER'>
|
<div id='CONTAINER'>
|
||||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod <br>
|
<div name='home'>Contenu de la section #HOME</div>
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
<div name='groups'>Contenu de la section #GROUPES</div>
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br><br><br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt <br>in culpa qui officia deserunt mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco <br>laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliq<br>uip ex ea commodo<br><br>
|
|
||||||
consequa<br>t. Duis au<br>te irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui<br> officia deserunt <br>mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugi<br>at nulla pariatur. Excepteur <br>sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui of<br>ficia deserunt mollit anim id est laborum.kireloem<br>
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod<br>
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<br>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
68
index.php
|
@ -23,6 +23,14 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
$_SESSION['username'] = null;
|
$_SESSION['username'] = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* VARIABLES DES NOTIFICATIONS */
|
||||||
|
$memberNotifNum = 10;
|
||||||
|
$messageNotifNum = 0;
|
||||||
|
$notifNotifNum = 5;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,7 +50,7 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
<link type='text/css' rel='stylesheet' href='css/container.css'/> <!-- Gestion du container -->
|
<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/menu.css' /> <!-- Gestion du menu -->
|
||||||
<link type='text/css' rel='stylesheet' href='css/global.css' /> <!-- Style global -->
|
<link type='text/css' rel='stylesheet' href='css/global.css' /> <!-- Style global -->
|
||||||
<!-- <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> -->
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
|
|
||||||
<!-- Dépendences Javascript -->
|
<!-- Dépendences Javascript -->
|
||||||
|
@ -68,46 +76,42 @@ if( !(isset($_SESSION['username']) && is_string($_SESSION['username']) && strlen
|
||||||
<!-- HEADER DE LA PAGE -->
|
<!-- HEADER DE LA PAGE -->
|
||||||
<div id='HEADER'>
|
<div id='HEADER'>
|
||||||
<div class='notifbar'>
|
<div class='notifbar'>
|
||||||
<div class='member' data-num></div>
|
<?php
|
||||||
<div class='message'></div>
|
/* membres */
|
||||||
<div class='notification'></div>
|
if( $memberNotifNum > 0 ) echo "<div class='member' data-num='".$memberNotifNum."'></div>";
|
||||||
|
else echo "<div class='member'></div>";
|
||||||
|
|
||||||
|
/* messages */
|
||||||
|
if( $messageNotifNum > 0 ) echo "<div class='message' data-num='".$messageNotifNum."'></div>";
|
||||||
|
else echo "<div class='message'></div>";
|
||||||
|
|
||||||
|
/* notifications */
|
||||||
|
if( $notifNotifNum > 0 ) echo "<div class='notification' data-num='".$notifNotifNum."'></div>";
|
||||||
|
else echo "<div class='notification'></div>";
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='icon'></div>
|
<div class='icon'></div>
|
||||||
<input type='text' placeholder='Type for search' class='searchbar'>
|
<input type='text' placeholder='Type for search' class='searchbar'>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id='SUBHEADER'></div>
|
<div id='SUBHEADER'>
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
<span data-sectname='home' class='active'>Accueil </span>
|
||||||
|
<span data-sectname='groups'>Groupes </span>
|
||||||
|
<span data-sectname='case'>Suivi </span>
|
||||||
|
<span data-sectname='modules'>Modules </span>
|
||||||
|
<span data-sectname='marks'>Notes </span>
|
||||||
|
<span data-sectname='settings'>Paramètres </span>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- CONTENEUR DE LA PAGE -->
|
<!-- CONTENEUR DE LA PAGE -->
|
||||||
<div id='CONTAINER'>
|
<div id='CONTAINER'>
|
||||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod <br>
|
<div name='home'>Contenu de la section #HOME</div>
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
<div name='groups'>Contenu de la section #GROUPES</div>
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br><br><br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt <br>in culpa qui officia deserunt mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco <br>laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliq<br>uip ex ea commodo<br><br>
|
|
||||||
consequa<br>t. Duis au<br>te irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui<br> officia deserunt <br>mollit anim id est laborum.Lorem ips<br>um dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugi<br>at nulla pariatur. Excepteur <br>sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui of<br>ficia deserunt mollit anim id est laborum.kireloem<br>
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod<br>
|
|
||||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
|
|
||||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
|
|
||||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
|
|
||||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
|
|
||||||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<br>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,46 @@
|
||||||
/* VARIABLES */
|
/* VARIABLES */
|
||||||
var DOM = {
|
var DOM = {
|
||||||
header : document.querySelector('#HEADER'),
|
WRAPPER : document.querySelector('#WRAPPER'),
|
||||||
menu : document.querySelector('#MENU'),
|
MENU : document.querySelector('#MENU'),
|
||||||
authBtn : document.querySelector('#HEADER > a:last-child'),
|
HEADER : document.querySelector('#HEADER'),
|
||||||
loginForm : document.querySelector('#AUTH'),
|
SUBHEADER : document.querySelector('#SUBHEADER'),
|
||||||
loginFltr : document.querySelector('#AUTH_FILTER'),
|
SUBSECTIONS : document.querySelector("#SUBHEADER > nav"),
|
||||||
container : document.querySelector('#CONTAINER')
|
CONTAINER : document.querySelector('#CONTAINER'),
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* GESTION DE L'AFFICHAGE DU LOGIN */
|
/* GESTION DES SOUS-PARTIES */
|
||||||
DOM.authBtn.addEventListener('click', function(e){ // clic sur "Authentification"
|
DOM.SUBSECTIONS.addEventListener('click', function(e){
|
||||||
e.preventDefault(); // désactive l'action par défaut
|
|
||||||
if( e.target.className == 'active' )
|
if( e.target.tagName == 'SPAN' ){ // s'il s'agit bien d'un élément de nav
|
||||||
DOM.loginFltr.className = 'active';
|
|
||||||
|
// on essaie de récupérer l'ancien "lien"
|
||||||
|
var lastActive = document.querySelector('#SUBHEADER > nav > span.active');
|
||||||
|
if( lastActive != null ) // si on a trouvé qqch
|
||||||
|
lastActive.className = ''; // on le désactive
|
||||||
|
e.target.className = 'active'; // on signale celui cliqué comme "actif"
|
||||||
|
|
||||||
|
|
||||||
|
// on essaie de récupérer l'ancienne section active
|
||||||
|
var lastSection = document.querySelector('#CONTAINER div.active');
|
||||||
|
if( lastSection != null ) // si on a trouvé qqch
|
||||||
|
lastSection.className = ''; // on la désactive
|
||||||
|
|
||||||
|
// on active la page associée
|
||||||
|
var target = document.querySelector('#CONTAINER > div[name='+e.target.dataset.sectname+']');
|
||||||
|
if( target != null )
|
||||||
|
target.className = 'active';
|
||||||
|
}
|
||||||
|
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
/* GESTION DE CACHAGE DU LOGIN */
|
/* on active la section au chargement */
|
||||||
DOM.loginFltr.addEventListener('click', function(e){
|
// on essaie de récupérer le lien actif
|
||||||
e.preventDefault(); // désactive l'action par défaut
|
var lastActive = document.querySelector('#SUBHEADER > nav > span.active');
|
||||||
DOM.loginFltr.className = '';
|
if( lastActive != null ){ // si on trouve qqch
|
||||||
}, false);
|
|
||||||
|
// on cherche la section associée
|
||||||
|
var target = document.querySelector('#CONTAINER > div[name='+lastActive.dataset.sectname+']');
|
||||||
|
if( target != null ) // si on a trouvé qqch
|
||||||
|
target.className = 'active'; // on l'active
|
||||||
|
}
|
|
@ -15,10 +15,10 @@
|
||||||
width="32px"
|
width="32px"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="groups.svg"><metadata
|
sodipodi:docname="auth.svg"><metadata
|
||||||
id="metadata15"><rdf:RDF><cc:Work
|
id="metadata15"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs13" /><sodipodi:namedview
|
id="defs13" /><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
id="namedview11"
|
id="namedview11"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="14.75"
|
inkscape:zoom="14.75"
|
||||||
inkscape:cx="8.6358548"
|
inkscape:cx="-4.5166876"
|
||||||
inkscape:cy="18.025372"
|
inkscape:cy="18.025372"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -48,6 +48,6 @@
|
||||||
id="g7"><path
|
id="g7"><path
|
||||||
d="m 16,8 c 1.657,0 3,-1.343 3,-3 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 z m 6,3 c 0,0 0,-2 -2,-2 -0.5,0 -8,0 -8,0 0,0 -2,0 -2,2 l 0,7 c 0,2 2,2 2,2 l 0,10 8,0 0,-10 c 0,0 2,0 2,-2 0,-2 0,-7 0,-7 z"
|
d="m 16,8 c 1.657,0 3,-1.343 3,-3 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 z m 6,3 c 0,0 0,-2 -2,-2 -0.5,0 -8,0 -8,0 0,0 -2,0 -2,2 l 0,7 c 0,2 2,2 2,2 l 0,10 8,0 0,-10 c 0,0 2,0 2,-2 0,-2 0,-7 0,-7 z"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#60676d;fill-opacity:1"
|
style="fill:#889bab;fill-opacity:1"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ssssscscssccccsc" /></g></g></svg>
|
sodipodi:nodetypes="ssssscscssccccsc" /></g></g></svg>
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
@ -15,7 +15,7 @@
|
||||||
width="32px"
|
width="32px"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="auth.svg"><metadata
|
sodipodi:docname="auth@hover.svg"><metadata
|
||||||
id="metadata15"><rdf:RDF><cc:Work
|
id="metadata15"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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><defs
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
id="namedview11"
|
id="namedview11"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="14.75"
|
inkscape:zoom="14.75"
|
||||||
inkscape:cx="-30.821772"
|
inkscape:cx="-43.974314"
|
||||||
inkscape:cy="18.025372"
|
inkscape:cy="18.025372"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -48,6 +48,6 @@
|
||||||
id="g7"><path
|
id="g7"><path
|
||||||
d="m 16,8 c 1.657,0 3,-1.343 3,-3 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 z m 6,3 c 0,0 0,-2 -2,-2 -0.5,0 -8,0 -8,0 0,0 -2,0 -2,2 l 0,7 c 0,2 2,2 2,2 l 0,10 8,0 0,-10 c 0,0 2,0 2,-2 0,-2 0,-7 0,-7 z"
|
d="m 16,8 c 1.657,0 3,-1.343 3,-3 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 z m 6,3 c 0,0 0,-2 -2,-2 -0.5,0 -8,0 -8,0 0,0 -2,0 -2,2 l 0,7 c 0,2 2,2 2,2 l 0,10 8,0 0,-10 c 0,0 2,0 2,-2 0,-2 0,-7 0,-7 z"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#ffffff;fill-opacity:1"
|
style="fill:#2ecc6d;fill-opacity:1"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ssssscscssccccsc" /></g></g></svg>
|
sodipodi:nodetypes="ssssscscssccccsc" /></g></g></svg>
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
@ -15,10 +15,10 @@
|
||||||
width="32px"
|
width="32px"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="1445005302_group_full.svg"><metadata
|
sodipodi:docname="groups.svg"><metadata
|
||||||
id="metadata15"><rdf:RDF><cc:Work
|
id="metadata15"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs13" /><sodipodi:namedview
|
id="defs13" /><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
id="namedview11"
|
id="namedview11"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="7.375"
|
inkscape:zoom="7.375"
|
||||||
inkscape:cx="-10.305085"
|
inkscape:cx="-36.61017"
|
||||||
inkscape:cy="16"
|
inkscape:cy="16"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -48,4 +48,4 @@
|
||||||
id="g7"><path
|
id="g7"><path
|
||||||
d="M8,20c0-2,0-10,0-10s0.005-0.45,0.239-1C6.16,9,4,9,4,9s-2,0-2,2v7c0,2,2,2,2,2v10h6v-8C10,22,8,22,8,20z M8,8 c0.52,0,1.001-0.144,1.427-0.376c0.059-0.036,0.125-0.068,0.188-0.103C10.446,6.988,11,6.061,11,5c0-1.657-1.343-3-3-3 S5,3.343,5,5S6.343,8,8,8z M28,9h-4.238C23.995,9.55,24,10,24,10s0,8,0,10s-2,2-2,2v8h6V20c0,0,2,0,2-2s0-7,0-7S30,9,28,9z M22.38,7.519c0.065,0.035,0.134,0.068,0.194,0.105C23,7.856,23.48,8,24,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3 C21,6.059,21.552,6.985,22.38,7.519z M16,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3S14.343,8,16,8z M22,11c0,0,0-2-2-2 c-0.5,0-8,0-8,0s-2,0-2,2v7c0,2,2,2,2,2v10h8V20c0,0,2,0,2-2S22,11,22,11z"
|
d="M8,20c0-2,0-10,0-10s0.005-0.45,0.239-1C6.16,9,4,9,4,9s-2,0-2,2v7c0,2,2,2,2,2v10h6v-8C10,22,8,22,8,20z M8,8 c0.52,0,1.001-0.144,1.427-0.376c0.059-0.036,0.125-0.068,0.188-0.103C10.446,6.988,11,6.061,11,5c0-1.657-1.343-3-3-3 S5,3.343,5,5S6.343,8,8,8z M28,9h-4.238C23.995,9.55,24,10,24,10s0,8,0,10s-2,2-2,2v8h6V20c0,0,2,0,2-2s0-7,0-7S30,9,28,9z M22.38,7.519c0.065,0.035,0.134,0.068,0.194,0.105C23,7.856,23.48,8,24,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3 C21,6.059,21.552,6.985,22.38,7.519z M16,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3S14.343,8,16,8z M22,11c0,0,0-2-2-2 c-0.5,0-8,0-8,0s-2,0-2,2v7c0,2,2,2,2,2v10h8V20c0,0,2,0,2-2S22,11,22,11z"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#60676d;fill-opacity:1" /></g></g></svg>
|
style="fill:#889bab;fill-opacity:1" /></g></g></svg>
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
@ -15,10 +15,10 @@
|
||||||
width="32px"
|
width="32px"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="groups.svg"><metadata
|
sodipodi:docname="groups@hover.svg"><metadata
|
||||||
id="metadata15"><rdf:RDF><cc:Work
|
id="metadata15"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs13" /><sodipodi:namedview
|
id="defs13" /><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
id="namedview11"
|
id="namedview11"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="7.375"
|
inkscape:zoom="7.375"
|
||||||
inkscape:cx="-10.305085"
|
inkscape:cx="-36.61017"
|
||||||
inkscape:cy="16"
|
inkscape:cy="16"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -48,4 +48,4 @@
|
||||||
id="g7"><path
|
id="g7"><path
|
||||||
d="M8,20c0-2,0-10,0-10s0.005-0.45,0.239-1C6.16,9,4,9,4,9s-2,0-2,2v7c0,2,2,2,2,2v10h6v-8C10,22,8,22,8,20z M8,8 c0.52,0,1.001-0.144,1.427-0.376c0.059-0.036,0.125-0.068,0.188-0.103C10.446,6.988,11,6.061,11,5c0-1.657-1.343-3-3-3 S5,3.343,5,5S6.343,8,8,8z M28,9h-4.238C23.995,9.55,24,10,24,10s0,8,0,10s-2,2-2,2v8h6V20c0,0,2,0,2-2s0-7,0-7S30,9,28,9z M22.38,7.519c0.065,0.035,0.134,0.068,0.194,0.105C23,7.856,23.48,8,24,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3 C21,6.059,21.552,6.985,22.38,7.519z M16,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3S14.343,8,16,8z M22,11c0,0,0-2-2-2 c-0.5,0-8,0-8,0s-2,0-2,2v7c0,2,2,2,2,2v10h8V20c0,0,2,0,2-2S22,11,22,11z"
|
d="M8,20c0-2,0-10,0-10s0.005-0.45,0.239-1C6.16,9,4,9,4,9s-2,0-2,2v7c0,2,2,2,2,2v10h6v-8C10,22,8,22,8,20z M8,8 c0.52,0,1.001-0.144,1.427-0.376c0.059-0.036,0.125-0.068,0.188-0.103C10.446,6.988,11,6.061,11,5c0-1.657-1.343-3-3-3 S5,3.343,5,5S6.343,8,8,8z M28,9h-4.238C23.995,9.55,24,10,24,10s0,8,0,10s-2,2-2,2v8h6V20c0,0,2,0,2-2s0-7,0-7S30,9,28,9z M22.38,7.519c0.065,0.035,0.134,0.068,0.194,0.105C23,7.856,23.48,8,24,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3 C21,6.059,21.552,6.985,22.38,7.519z M16,8c1.657,0,3-1.343,3-3s-1.343-3-3-3s-3,1.343-3,3S14.343,8,16,8z M22,11c0,0,0-2-2-2 c-0.5,0-8,0-8,0s-2,0-2,2v7c0,2,2,2,2,2v10h8V20c0,0,2,0,2-2S22,11,22,11z"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#ffffff;fill-opacity:1" /></g></g></svg>
|
style="fill:#2ecc6d;fill-opacity:1" /></g></g></svg>
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
@ -15,7 +15,7 @@
|
||||||
id="svg4286"
|
id="svg4286"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="icon.svg"
|
sodipodi:docname="home.svg"
|
||||||
inkscape:export-filename="/home/xdrm/Bureau/GRAPHISM/logo/flask100.png"
|
inkscape:export-filename="/home/xdrm/Bureau/GRAPHISM/logo/flask100.png"
|
||||||
inkscape:export-xdpi="123.54987"
|
inkscape:export-xdpi="123.54987"
|
||||||
inkscape:export-ydpi="123.54987">
|
inkscape:export-ydpi="123.54987">
|
||||||
|
@ -28,9 +28,9 @@
|
||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="5.6"
|
inkscape:zoom="15.839192"
|
||||||
inkscape:cx="48.184781"
|
inkscape:cx="30.546706"
|
||||||
inkscape:cy="27.605616"
|
inkscape:cy="35.04825"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="g4521-8"
|
inkscape:current-layer="g4521-8"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title></dc:title>
|
<dc:title />
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -113,24 +113,24 @@
|
||||||
id="g4521-8">
|
id="g4521-8">
|
||||||
<path
|
<path
|
||||||
id="path4523-1"
|
id="path4523-1"
|
||||||
style="color:#000000;text-indent:0;text-transform:none;block-progression:tb;fill:#c3c7c7;fill-opacity:1"
|
style="color:#000000;text-indent:0;text-transform:none;block-progression:tb;fill:#a4b2be;fill-opacity:1"
|
||||||
d="m 8.9868,1030.4 0,7.8 c -1.8639,2.9 -3.8033,5.8 -5.625,8.8 -0.9343,1.5 -0.0087,3.8 1.7506,4.2 1.2656,0.3 2.5733,0.1 3.8564,0.2 3.1672,0 6.3372,0 9.5032,-0.1 2.044,-0.2 3.264,-2.8 2.077,-4.5 -1.813,-2.9 -3.721,-5.7 -5.562,-8.6 l 0,-7.8 -6.0002,0 z"
|
d="m 8.9868,1030.4 0,7.8 c -1.8639,2.9 -3.8033,5.8 -5.625,8.8 -0.9343,1.5 -0.0087,3.8 1.7506,4.2 1.2656,0.3 2.5733,0.1 3.8564,0.2 3.1672,0 6.3372,0 9.5032,-0.1 2.044,-0.2 3.264,-2.8 2.077,-4.5 -1.813,-2.9 -3.721,-5.7 -5.562,-8.6 l 0,-7.8 -6.0002,0 z"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
id="path4525-4"
|
id="path4525-4"
|
||||||
d="m 15.469805,1042.9 c 0,0.5358 -0.433988,0.9698 -0.969805,0.9698 -0.535817,0 -0.969805,-0.434 -0.969805,-0.9698 0,-0.5358 0.433988,-0.9698 0.969805,-0.9698 0.535817,0 0.969805,0.434 0.969805,0.9698 z"
|
d="m 15.469805,1042.9 c 0,0.5358 -0.433988,0.9698 -0.969805,0.9698 -0.535817,0 -0.969805,-0.434 -0.969805,-0.9698 0,-0.5358 0.433988,-0.9698 0.969805,-0.9698 0.535817,0 0.969805,0.434 0.969805,0.9698 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#60676d;fill-opacity:1" />
|
style="fill:#5c7182;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4529-2"
|
id="path4529-2"
|
||||||
d="m 12.580262,1042.5105 c 0,0.8731 -0.707167,1.5803 -1.580262,1.5803 -0.873095,0 -1.5802621,-0.7072 -1.5802621,-1.5803 0,-0.8731 0.7071671,-1.5803 1.5802621,-1.5803 0.873095,0 1.580262,0.7072 1.580262,1.5803 z"
|
d="m 12.580262,1042.5105 c 0,0.8731 -0.707167,1.5803 -1.580262,1.5803 -0.873095,0 -1.5802621,-0.7072 -1.5802621,-1.5803 0,-0.8731 0.7071671,-1.5803 1.5802621,-1.5803 0.873095,0 1.580262,0.7072 1.580262,1.5803 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#60676d;fill-opacity:1" />
|
style="fill:#5c7182;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4531-5"
|
id="path4531-5"
|
||||||
d="m 7.4729,1042.4 c -1.098,1.7 -2.2018,3.4 -3.2812,5.1 -0.6853,1.2 0.3032,2.8 1.6875,2.9 l 12.313,0 c 1.396,-0.1 2.274,-1.9 1.5,-3 -1.071,-1.7 -2.149,-3.4 -3.219,-5 l -9.0001,0 z"
|
d="m 7.4729,1042.4 c -1.098,1.7 -2.2018,3.4 -3.2812,5.1 -0.6853,1.2 0.3032,2.8 1.6875,2.9 l 12.313,0 c 1.396,-0.1 2.274,-1.9 1.5,-3 -1.071,-1.7 -2.149,-3.4 -3.219,-5 l -9.0001,0 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#60676d;fill-opacity:1" />
|
style="fill:#5c7182;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4527"
|
id="path4527"
|
||||||
style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#000000;fill-opacity:0.17258881"
|
style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#000000;fill-opacity:0.17258881"
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
|
@ -15,7 +15,7 @@
|
||||||
id="svg4286"
|
id="svg4286"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="icon_grayscale.svg"
|
sodipodi:docname="home@hover.svg"
|
||||||
inkscape:export-filename="/home/xdrm/Bureau/GRAPHISM/logo/flask100.png"
|
inkscape:export-filename="/home/xdrm/Bureau/GRAPHISM/logo/flask100.png"
|
||||||
inkscape:export-xdpi="123.54987"
|
inkscape:export-xdpi="123.54987"
|
||||||
inkscape:export-ydpi="123.54987">
|
inkscape:export-ydpi="123.54987">
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="5.6"
|
inkscape:zoom="5.6"
|
||||||
inkscape:cx="48.184781"
|
inkscape:cx="13.541924"
|
||||||
inkscape:cy="27.605616"
|
inkscape:cy="27.605616"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="g4521-8"
|
inkscape:current-layer="g4521-8"
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title></dc:title>
|
<dc:title />
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -120,17 +120,17 @@
|
||||||
id="path4525-4"
|
id="path4525-4"
|
||||||
d="m 15.469805,1042.9 c 0,0.5358 -0.433988,0.9698 -0.969805,0.9698 -0.535817,0 -0.969805,-0.434 -0.969805,-0.9698 0,-0.5358 0.433988,-0.9698 0.969805,-0.9698 0.535817,0 0.969805,0.434 0.969805,0.9698 z"
|
d="m 15.469805,1042.9 c 0,0.5358 -0.433988,0.9698 -0.969805,0.9698 -0.535817,0 -0.969805,-0.434 -0.969805,-0.9698 0,-0.5358 0.433988,-0.9698 0.969805,-0.9698 0.535817,0 0.969805,0.434 0.969805,0.9698 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#ac0000;fill-opacity:1" />
|
style="fill:#2ecc6d;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4529-2"
|
id="path4529-2"
|
||||||
d="m 12.580262,1042.5105 c 0,0.8731 -0.707167,1.5803 -1.580262,1.5803 -0.873095,0 -1.5802621,-0.7072 -1.5802621,-1.5803 0,-0.8731 0.7071671,-1.5803 1.5802621,-1.5803 0.873095,0 1.580262,0.7072 1.580262,1.5803 z"
|
d="m 12.580262,1042.5105 c 0,0.8731 -0.707167,1.5803 -1.580262,1.5803 -0.873095,0 -1.5802621,-0.7072 -1.5802621,-1.5803 0,-0.8731 0.7071671,-1.5803 1.5802621,-1.5803 0.873095,0 1.580262,0.7072 1.580262,1.5803 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#ac0000;fill-opacity:1" />
|
style="fill:#2ecc6d;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4531-5"
|
id="path4531-5"
|
||||||
d="m 7.4729,1042.4 c -1.098,1.7 -2.2018,3.4 -3.2812,5.1 -0.6853,1.2 0.3032,2.8 1.6875,2.9 l 12.313,0 c 1.396,-0.1 2.274,-1.9 1.5,-3 -1.071,-1.7 -2.149,-3.4 -3.219,-5 l -9.0001,0 z"
|
d="m 7.4729,1042.4 c -1.098,1.7 -2.2018,3.4 -3.2812,5.1 -0.6853,1.2 0.3032,2.8 1.6875,2.9 l 12.313,0 c 1.396,-0.1 2.274,-1.9 1.5,-3 -1.071,-1.7 -2.149,-3.4 -3.219,-5 l -9.0001,0 z"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#ac0000;fill-opacity:1" />
|
style="fill:#2ecc6d;fill-opacity:1" />
|
||||||
<path
|
<path
|
||||||
id="path4527"
|
id="path4527"
|
||||||
style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#000000;fill-opacity:0.17258881"
|
style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#000000;fill-opacity:0.17258881"
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
|
@ -16,7 +16,7 @@
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="marks_grayscale.svg"><sodipodi:namedview
|
sodipodi:docname="marks.svg"><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
borderopacity="1"
|
borderopacity="1"
|
||||||
|
@ -30,8 +30,8 @@
|
||||||
id="namedview3156"
|
id="namedview3156"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="1.8035714"
|
inkscape:zoom="1.8035714"
|
||||||
inkscape:cx="-70.693076"
|
inkscape:cx="-25.958044"
|
||||||
inkscape:cy="252"
|
inkscape:cy="250.49943"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
|
@ -43,16 +43,16 @@
|
||||||
d="m 129.5,65.40625 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l 0,326.78125 C 88.59375,455.59375 107,474 129.5,474 l 245.09375,0 c 22.5,0 40.90625,-18.40625 40.90625,-40.90625 l 0,-326.90625 c 0,-22.4 -18.40625,-40.78125 -40.90625,-40.78125 l -102.09375,0 c 0,11.2 -9.20625,20.40625 -20.40625,20.40625 -11.2,0 -20.40625,-9.20625 -20.40625,-20.40625 l -102.1875,0 z M 129.5,96 374.59375,96 c 6.1,0 10.21875,4.0875 10.21875,10.1875 l 0,326.90625 c 0,6.1 -4.11875,10.21875 -10.21875,10.21875 l -245.09375,0 c -6.1,0 -10.1875,-4.11875 -10.1875,-10.21875 l 0,-326.90625 C 119.3125,100.0875 123.4,96 129.5,96 z"
|
d="m 129.5,65.40625 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l 0,326.78125 C 88.59375,455.59375 107,474 129.5,474 l 245.09375,0 c 22.5,0 40.90625,-18.40625 40.90625,-40.90625 l 0,-326.90625 c 0,-22.4 -18.40625,-40.78125 -40.90625,-40.78125 l -102.09375,0 c 0,11.2 -9.20625,20.40625 -20.40625,20.40625 -11.2,0 -20.40625,-9.20625 -20.40625,-20.40625 l -102.1875,0 z M 129.5,96 374.59375,96 c 6.1,0 10.21875,4.0875 10.21875,10.1875 l 0,326.90625 c 0,6.1 -4.11875,10.21875 -10.21875,10.21875 l -245.09375,0 c -6.1,0 -10.1875,-4.11875 -10.1875,-10.21875 l 0,-326.90625 C 119.3125,100.0875 123.4,96 129.5,96 z"
|
||||||
transform="translate(45.6,168.9)"
|
transform="translate(45.6,168.9)"
|
||||||
id="path3"
|
id="path3"
|
||||||
style="fill:#60676d;fill-opacity:1" /><path
|
style="fill:#576b7b;fill-opacity:1" /><path
|
||||||
d="M 420.2,612.2 H 175.1 c -6.1,0 -10.2,-4.1 -10.2,-10.2 V 275.1 c 0,-6.1 4.1,-10.2 10.2,-10.2 h 245.1 c 6.1,0 10.2,4.1 10.2,10.2 V 602 c 0,6.1 -4.1,10.2 -10.2,10.2 z"
|
d="M 420.2,612.2 H 175.1 c -6.1,0 -10.2,-4.1 -10.2,-10.2 V 275.1 c 0,-6.1 4.1,-10.2 10.2,-10.2 h 245.1 c 6.1,0 10.2,4.1 10.2,10.2 V 602 c 0,6.1 -4.1,10.2 -10.2,10.2 z"
|
||||||
id="path4784"
|
id="path4784"
|
||||||
style="fill:#898f95;fill-opacity:1" /><g
|
style="fill:#657c8f;fill-opacity:1" /><g
|
||||||
id="g7"
|
id="g7"
|
||||||
style="fill:#7d868d;fill-opacity:1"><path
|
style="fill:#768c9e;fill-opacity:1"><path
|
||||||
d="m 252,24.5 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l -50.90625,0 0,40.90625 c 0,11.2 9.20625,20.375 20.40625,20.375 l 143,0 c 11.2,0 20.40625,-9.175 20.40625,-20.375 l 0,-40.90625 -51.09375,0 C 292.90625,42.90625 274.5,24.5 252,24.5 z m 0,20.5 c 11.2,0 20.40625,9.20625 20.40625,20.40625 0,7.690321 -4.27799,14.43264 -10.625,17.90625 -0.58572,0.320552 -1.19351,0.612039 -1.8125,0.875 -0.61055,0.259375 -1.23547,0.487695 -1.875,0.6875 -1.89039,0.590607 -3.91463,0.928145 -6,0.9375 -0.38156,0 -0.74837,-0.01018 -1.125,-0.03125 -0.31469,-0.01615 -0.62657,-0.06326 -0.9375,-0.09375 -0.0306,-0.0031 -0.0632,0.0033 -0.0937,0 -0.31073,-0.03192 -0.6309,-0.07908 -0.9375,-0.125 -0.0305,-0.0047 -0.0633,0.0048 -0.0937,0 C 248.6004,85.515274 248.30136,85.435832 248,85.375 238.73594,83.460938 231.6875,75.20625 231.6875,65.40625 l -0.0937,0 C 231.59375,54.20625 240.8,45 252,45 z"
|
d="m 252,24.5 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l -50.90625,0 0,40.90625 c 0,11.2 9.20625,20.375 20.40625,20.375 l 143,0 c 11.2,0 20.40625,-9.175 20.40625,-20.375 l 0,-40.90625 -51.09375,0 C 292.90625,42.90625 274.5,24.5 252,24.5 z m 0,20.5 c 11.2,0 20.40625,9.20625 20.40625,20.40625 0,7.690321 -4.27799,14.43264 -10.625,17.90625 -0.58572,0.320552 -1.19351,0.612039 -1.8125,0.875 -0.61055,0.259375 -1.23547,0.487695 -1.875,0.6875 -1.89039,0.590607 -3.91463,0.928145 -6,0.9375 -0.38156,0 -0.74837,-0.01018 -1.125,-0.03125 -0.31469,-0.01615 -0.62657,-0.06326 -0.9375,-0.09375 -0.0306,-0.0031 -0.0632,0.0033 -0.0937,0 -0.31073,-0.03192 -0.6309,-0.07908 -0.9375,-0.125 -0.0305,-0.0047 -0.0633,0.0048 -0.0937,0 C 248.6004,85.515274 248.30136,85.435832 248,85.375 238.73594,83.460938 231.6875,75.20625 231.6875,65.40625 l -0.0937,0 C 231.59375,54.20625 240.8,45 252,45 z"
|
||||||
transform="translate(45.6,168.9)"
|
transform="translate(45.6,168.9)"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#7d868d;fill-opacity:1" /></g><path
|
style="fill:#768c9e;fill-opacity:1" /></g><path
|
||||||
d="m 365.1,383.4 -92,91.9 -42.9,-43.9 -25.5,25.6 69.4,68.4 116.5,-116.5 z"
|
d="m 365.1,383.4 -92,91.9 -42.9,-43.9 -25.5,25.6 69.4,68.4 116.5,-116.5 z"
|
||||||
id="polygon13"
|
id="polygon13"
|
||||||
style="fill:#51565b;fill-opacity:1" /></svg>
|
style="fill:#455461;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
|
@ -16,7 +16,7 @@
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="marks.svg"><sodipodi:namedview
|
sodipodi:docname="marks@hover.svg"><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
borderopacity="1"
|
borderopacity="1"
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
id="namedview3156"
|
id="namedview3156"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="1.8035714"
|
inkscape:zoom="1.8035714"
|
||||||
inkscape:cx="36.871282"
|
inkscape:cx="-70.693076"
|
||||||
inkscape:cy="252"
|
inkscape:cy="252"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -43,15 +43,16 @@
|
||||||
d="m 129.5,65.40625 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l 0,326.78125 C 88.59375,455.59375 107,474 129.5,474 l 245.09375,0 c 22.5,0 40.90625,-18.40625 40.90625,-40.90625 l 0,-326.90625 c 0,-22.4 -18.40625,-40.78125 -40.90625,-40.78125 l -102.09375,0 c 0,11.2 -9.20625,20.40625 -20.40625,20.40625 -11.2,0 -20.40625,-9.20625 -20.40625,-20.40625 l -102.1875,0 z M 129.5,96 374.59375,96 c 6.1,0 10.21875,4.0875 10.21875,10.1875 l 0,326.90625 c 0,6.1 -4.11875,10.21875 -10.21875,10.21875 l -245.09375,0 c -6.1,0 -10.1875,-4.11875 -10.1875,-10.21875 l 0,-326.90625 C 119.3125,100.0875 123.4,96 129.5,96 z"
|
d="m 129.5,65.40625 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l 0,326.78125 C 88.59375,455.59375 107,474 129.5,474 l 245.09375,0 c 22.5,0 40.90625,-18.40625 40.90625,-40.90625 l 0,-326.90625 c 0,-22.4 -18.40625,-40.78125 -40.90625,-40.78125 l -102.09375,0 c 0,11.2 -9.20625,20.40625 -20.40625,20.40625 -11.2,0 -20.40625,-9.20625 -20.40625,-20.40625 l -102.1875,0 z M 129.5,96 374.59375,96 c 6.1,0 10.21875,4.0875 10.21875,10.1875 l 0,326.90625 c 0,6.1 -4.11875,10.21875 -10.21875,10.21875 l -245.09375,0 c -6.1,0 -10.1875,-4.11875 -10.1875,-10.21875 l 0,-326.90625 C 119.3125,100.0875 123.4,96 129.5,96 z"
|
||||||
transform="translate(45.6,168.9)"
|
transform="translate(45.6,168.9)"
|
||||||
id="path3"
|
id="path3"
|
||||||
style="fill:#455a64;fill-opacity:1" /><path
|
style="fill:#1c7a41;fill-opacity:1" /><path
|
||||||
d="M 420.2,612.2 H 175.1 c -6.1,0 -10.2,-4.1 -10.2,-10.2 V 275.1 c 0,-6.1 4.1,-10.2 10.2,-10.2 h 245.1 c 6.1,0 10.2,4.1 10.2,10.2 V 602 c 0,6.1 -4.1,10.2 -10.2,10.2 z"
|
d="M 420.2,612.2 H 175.1 c -6.1,0 -10.2,-4.1 -10.2,-10.2 V 275.1 c 0,-6.1 4.1,-10.2 10.2,-10.2 h 245.1 c 6.1,0 10.2,4.1 10.2,10.2 V 602 c 0,6.1 -4.1,10.2 -10.2,10.2 z"
|
||||||
id="path4784"
|
id="path4784"
|
||||||
style="fill:#ffffff" /><g
|
style="fill:#2ecc6d;fill-opacity:1" /><g
|
||||||
id="g7"><path
|
id="g7"
|
||||||
|
style="fill:#74e09f;fill-opacity:1"><path
|
||||||
d="m 252,24.5 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l -50.90625,0 0,40.90625 c 0,11.2 9.20625,20.375 20.40625,20.375 l 143,0 c 11.2,0 20.40625,-9.175 20.40625,-20.375 l 0,-40.90625 -51.09375,0 C 292.90625,42.90625 274.5,24.5 252,24.5 z m 0,20.5 c 11.2,0 20.40625,9.20625 20.40625,20.40625 0,7.690321 -4.27799,14.43264 -10.625,17.90625 -0.58572,0.320552 -1.19351,0.612039 -1.8125,0.875 -0.61055,0.259375 -1.23547,0.487695 -1.875,0.6875 -1.89039,0.590607 -3.91463,0.928145 -6,0.9375 -0.38156,0 -0.74837,-0.01018 -1.125,-0.03125 -0.31469,-0.01615 -0.62657,-0.06326 -0.9375,-0.09375 -0.0306,-0.0031 -0.0632,0.0033 -0.0937,0 -0.31073,-0.03192 -0.6309,-0.07908 -0.9375,-0.125 -0.0305,-0.0047 -0.0633,0.0048 -0.0937,0 C 248.6004,85.515274 248.30136,85.435832 248,85.375 238.73594,83.460938 231.6875,75.20625 231.6875,65.40625 l -0.0937,0 C 231.59375,54.20625 240.8,45 252,45 z"
|
d="m 252,24.5 c -22.5,0 -40.90625,18.40625 -40.90625,40.90625 l -50.90625,0 0,40.90625 c 0,11.2 9.20625,20.375 20.40625,20.375 l 143,0 c 11.2,0 20.40625,-9.175 20.40625,-20.375 l 0,-40.90625 -51.09375,0 C 292.90625,42.90625 274.5,24.5 252,24.5 z m 0,20.5 c 11.2,0 20.40625,9.20625 20.40625,20.40625 0,7.690321 -4.27799,14.43264 -10.625,17.90625 -0.58572,0.320552 -1.19351,0.612039 -1.8125,0.875 -0.61055,0.259375 -1.23547,0.487695 -1.875,0.6875 -1.89039,0.590607 -3.91463,0.928145 -6,0.9375 -0.38156,0 -0.74837,-0.01018 -1.125,-0.03125 -0.31469,-0.01615 -0.62657,-0.06326 -0.9375,-0.09375 -0.0306,-0.0031 -0.0632,0.0033 -0.0937,0 -0.31073,-0.03192 -0.6309,-0.07908 -0.9375,-0.125 -0.0305,-0.0047 -0.0633,0.0048 -0.0937,0 C 248.6004,85.515274 248.30136,85.435832 248,85.375 238.73594,83.460938 231.6875,75.20625 231.6875,65.40625 l -0.0937,0 C 231.59375,54.20625 240.8,45 252,45 z"
|
||||||
transform="translate(45.6,168.9)"
|
transform="translate(45.6,168.9)"
|
||||||
id="path9"
|
id="path9"
|
||||||
style="fill:#90a4ae;fill-opacity:1" /></g><path
|
style="fill:#74e09f;fill-opacity:1" /></g><path
|
||||||
d="m 365.1,383.4 -92,91.9 -42.9,-43.9 -25.5,25.6 69.4,68.4 116.5,-116.5 z"
|
d="m 365.1,383.4 -92,91.9 -42.9,-43.9 -25.5,25.6 69.4,68.4 116.5,-116.5 z"
|
||||||
id="polygon13"
|
id="polygon13"
|
||||||
style="fill:#455a64;fill-opacity:1" /></svg>
|
style="fill:#1d8346;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.6 KiB |
|
@ -14,7 +14,7 @@
|
||||||
id="svg2"
|
id="svg2"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="modules_grayscale.svg">
|
sodipodi:docname="modules.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs4" />
|
id="defs4" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.98994949"
|
inkscape:zoom="0.98994949"
|
||||||
inkscape:cx="-238.69216"
|
inkscape:cx="-434.66175"
|
||||||
inkscape:cy="223.42432"
|
inkscape:cy="223.42432"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
|
@ -57,12 +57,12 @@
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-187.7979,-368.72978)">
|
transform="translate(-187.7979,-368.72978)">
|
||||||
<path
|
<path
|
||||||
style="fill:#60676d;fill-opacity:1;stroke:none"
|
style="fill:#889bab;fill-opacity:1;stroke:none"
|
||||||
d="m 196.95714,405.84184 c -6.52926,6.52927 -6.50716,17.04832 0.0221,23.57759 l 9.1703,9.17029 51.50831,-51.50831 -9.1703,-9.17029 c -6.52927,-6.52927 -17.04833,-6.55137 -23.57759,-0.0221 l -27.95283,27.95283 z m 19.73272,43.28819 176.57781,176.57782 51.50831,-51.50831 -176.57781,-176.57782 -51.50831,51.50831 z m 184.73163,184.73165 70.35712,18.87091 -18.8488,-70.37923 -51.50832,51.50832 z"
|
d="m 196.95714,405.84184 c -6.52926,6.52927 -6.50716,17.04832 0.0221,23.57759 l 9.1703,9.17029 51.50831,-51.50831 -9.1703,-9.17029 c -6.52927,-6.52927 -17.04833,-6.55137 -23.57759,-0.0221 l -27.95283,27.95283 z m 19.73272,43.28819 176.57781,176.57782 51.50831,-51.50831 -176.57781,-176.57782 -51.50831,51.50831 z m 184.73163,184.73165 70.35712,18.87091 -18.8488,-70.37923 -51.50832,51.50832 z"
|
||||||
id="rect2996"
|
id="rect2996"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:#60676d;fill-opacity:1;stroke:none"
|
style="fill:#889bab;fill-opacity:1;stroke:none"
|
||||||
d="m 439.57212,368.72978 -7.44673,7.44671 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -11.13693,11.13693 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49613,10.49612 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71667 -11.13694,11.13693 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -6.89429,6.89429 55.3532,55.3532 92.29953,-92.29953 z m -105.64617,216.35258 -55.35321,-55.35321 -6.25347,6.25348 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -11.13692,11.13693 22.67161,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49612,10.49611 14.71666,14.71667 -4.15425,4.15425 -14.71667,-14.71667 -11.13692,11.13694 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -6.56283,6.56283 55.35321,55.35322 z"
|
d="m 439.57212,368.72978 -7.44673,7.44671 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -11.13693,11.13693 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49613,10.49612 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71667 -11.13694,11.13693 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -6.89429,6.89429 55.3532,55.3532 92.29953,-92.29953 z m -105.64617,216.35258 -55.35321,-55.35321 -6.25347,6.25348 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -11.13692,11.13693 22.67161,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49612,10.49611 14.71666,14.71667 -4.15425,4.15425 -14.71667,-14.71667 -11.13692,11.13694 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -6.56283,6.56283 55.35321,55.35322 z"
|
||||||
id="rect3786"
|
id="rect3786"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
@ -14,7 +14,7 @@
|
||||||
id="svg2"
|
id="svg2"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="modules.svg">
|
sodipodi:docname="modules@hover.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs4" />
|
id="defs4" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.98994949"
|
inkscape:zoom="0.98994949"
|
||||||
inkscape:cx="-238.69216"
|
inkscape:cx="-434.66175"
|
||||||
inkscape:cy="223.42432"
|
inkscape:cy="223.42432"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title></dc:title>
|
<dc:title />
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -57,12 +57,12 @@
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-187.7979,-368.72978)">
|
transform="translate(-187.7979,-368.72978)">
|
||||||
<path
|
<path
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#2ecc6d;fill-opacity:1;stroke:none"
|
||||||
d="m 196.95714,405.84184 c -6.52926,6.52927 -6.50716,17.04832 0.0221,23.57759 l 9.1703,9.17029 51.50831,-51.50831 -9.1703,-9.17029 c -6.52927,-6.52927 -17.04833,-6.55137 -23.57759,-0.0221 l -27.95283,27.95283 z m 19.73272,43.28819 176.57781,176.57782 51.50831,-51.50831 -176.57781,-176.57782 -51.50831,51.50831 z m 184.73163,184.73165 70.35712,18.87091 -18.8488,-70.37923 -51.50832,51.50832 z"
|
d="m 196.95714,405.84184 c -6.52926,6.52927 -6.50716,17.04832 0.0221,23.57759 l 9.1703,9.17029 51.50831,-51.50831 -9.1703,-9.17029 c -6.52927,-6.52927 -17.04833,-6.55137 -23.57759,-0.0221 l -27.95283,27.95283 z m 19.73272,43.28819 176.57781,176.57782 51.50831,-51.50831 -176.57781,-176.57782 -51.50831,51.50831 z m 184.73163,184.73165 70.35712,18.87091 -18.8488,-70.37923 -51.50832,51.50832 z"
|
||||||
id="rect2996"
|
id="rect2996"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#2ecc6d;fill-opacity:1;stroke:none"
|
||||||
d="m 439.57212,368.72978 -7.44673,7.44671 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -11.13693,11.13693 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49613,10.49612 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71667 -11.13694,11.13693 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -6.89429,6.89429 55.3532,55.3532 92.29953,-92.29953 z m -105.64617,216.35258 -55.35321,-55.35321 -6.25347,6.25348 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -11.13692,11.13693 22.67161,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49612,10.49611 14.71666,14.71667 -4.15425,4.15425 -14.71667,-14.71667 -11.13692,11.13694 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -6.56283,6.56283 55.35321,55.35322 z"
|
d="m 439.57212,368.72978 -7.44673,7.44671 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -11.13693,11.13693 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49613,10.49612 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71667 -11.13694,11.13693 22.67162,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49613,10.49611 14.71667,14.71667 -4.15425,4.15425 -14.71666,-14.71666 -6.89429,6.89429 55.3532,55.3532 92.29953,-92.29953 z m -105.64617,216.35258 -55.35321,-55.35321 -6.25347,6.25348 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -11.13692,11.13693 22.67161,22.67161 -3.91118,3.91119 -22.67161,-22.67161 -10.49612,10.49611 14.71666,14.71667 -4.15425,4.15425 -14.71667,-14.71667 -11.13692,11.13694 22.67161,22.67161 -3.91119,3.91118 -22.67161,-22.67161 -10.49611,10.49612 14.71666,14.71666 -4.15426,4.15426 -14.71667,-14.71667 -6.56283,6.56283 55.35321,55.35322 z"
|
||||||
id="rect3786"
|
id="rect3786"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
@ -30,7 +30,7 @@
|
||||||
id="namedview3221"
|
id="namedview3221"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="3.6875"
|
inkscape:zoom="3.6875"
|
||||||
inkscape:cx="-20.610169"
|
inkscape:cx="-73.220338"
|
||||||
inkscape:cy="32"
|
inkscape:cy="32"
|
||||||
inkscape:window-x="10"
|
inkscape:window-x="10"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -38,12 +38,12 @@
|
||||||
inkscape:current-layer="g3111" /><metadata
|
inkscape:current-layer="g3111" /><metadata
|
||||||
id="metadata3121"><rdf:RDF><cc:Work
|
id="metadata3121"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs3119" /><g
|
id="defs3119" /><g
|
||||||
id="g3111"><path
|
id="g3111"><path
|
||||||
d="m 36.167,32 c 0,2.30137 -1.86563,4.167 -4.167,4.167 -2.30137,0 -4.167,-1.86563 -4.167,-4.167 0,-2.30137 1.86563,-4.167 4.167,-4.167 2.30137,0 4.167,1.86563 4.167,4.167 z"
|
d="m 36.167,32 c 0,2.30137 -1.86563,4.167 -4.167,4.167 -2.30137,0 -4.167,-1.86563 -4.167,-4.167 0,-2.30137 1.86563,-4.167 4.167,-4.167 2.30137,0 4.167,1.86563 4.167,4.167 z"
|
||||||
id="circle3113"
|
id="circle3113"
|
||||||
style="fill:#60676d;fill-opacity:1" /><path
|
style="fill:#889bab;fill-opacity:1" /><path
|
||||||
d="M 55.192,27.87 49.367,26.778 C 49.013,25.6 48.549,24.47 47.975,23.407 l 3.37,-4.927 c 0.312,-0.456 0.248,-1.142 -0.143,-1.532 l -4.155,-4.156 c -0.391,-0.391 -1.076,-0.454 -1.532,-0.143 l -4.928,3.372 c -1.094,-0.59 -2.259,-1.063 -3.473,-1.42 L 36.028,8.807 C 35.925,8.264 35.396,7.824 34.843,7.824 h -5.877 c -0.553,0 -1.082,0.44 -1.185,0.983 l -1.097,5.851 c -1.165,0.356 -2.282,0.82 -3.334,1.392 l -4.866,-3.329 c -0.456,-0.312 -1.142,-0.248 -1.532,0.143 l -4.156,4.156 c -0.391,0.391 -0.454,1.076 -0.143,1.532 l 3.35,4.896 c -0.564,1.052 -1.021,2.168 -1.371,3.331 L 8.808,27.87 c -0.542,0.103 -0.982,0.632 -0.982,1.185 v 5.877 c 0,0.553 0.44,1.082 0.982,1.185 l 5.82,1.091 c 0.355,1.188 0.823,2.328 1.401,3.399 l -3.312,4.842 c -0.312,0.456 -0.248,1.142 0.143,1.532 l 4.155,4.156 c 0.391,0.391 1.076,0.454 1.532,0.143 l 4.84,-3.313 c 1.041,0.563 2.146,1.021 3.299,1.375 l 1.097,5.852 c 0.103,0.542 0.632,0.982 1.185,0.982 h 5.877 c 0.553,0 1.082,-0.44 1.185,-0.982 l 1.086,-5.796 c 1.201,-0.354 2.354,-0.821 3.438,-1.401 l 4.902,3.354 c 0.456,0.312 1.142,0.248 1.532,-0.143 l 4.155,-4.154 c 0.391,-0.391 0.454,-1.076 0.143,-1.532 l -3.335,-4.874 c 0.589,-1.084 1.063,-2.237 1.423,-3.44 l 5.819,-1.091 c 0.542,-0.103 0.982,-0.632 0.982,-1.185 v -5.877 c 0,-0.553 -0.441,-1.082 -0.983,-1.185 z M 32,42.085 c -5.568,0 -10.083,-4.515 -10.083,-10.086 0,-5.567 4.515,-10.083 10.083,-10.083 5.57,0 10.086,4.516 10.086,10.083 0,5.571 -4.517,10.086 -10.086,10.086 z"
|
d="M 55.192,27.87 49.367,26.778 C 49.013,25.6 48.549,24.47 47.975,23.407 l 3.37,-4.927 c 0.312,-0.456 0.248,-1.142 -0.143,-1.532 l -4.155,-4.156 c -0.391,-0.391 -1.076,-0.454 -1.532,-0.143 l -4.928,3.372 c -1.094,-0.59 -2.259,-1.063 -3.473,-1.42 L 36.028,8.807 C 35.925,8.264 35.396,7.824 34.843,7.824 h -5.877 c -0.553,0 -1.082,0.44 -1.185,0.983 l -1.097,5.851 c -1.165,0.356 -2.282,0.82 -3.334,1.392 l -4.866,-3.329 c -0.456,-0.312 -1.142,-0.248 -1.532,0.143 l -4.156,4.156 c -0.391,0.391 -0.454,1.076 -0.143,1.532 l 3.35,4.896 c -0.564,1.052 -1.021,2.168 -1.371,3.331 L 8.808,27.87 c -0.542,0.103 -0.982,0.632 -0.982,1.185 v 5.877 c 0,0.553 0.44,1.082 0.982,1.185 l 5.82,1.091 c 0.355,1.188 0.823,2.328 1.401,3.399 l -3.312,4.842 c -0.312,0.456 -0.248,1.142 0.143,1.532 l 4.155,4.156 c 0.391,0.391 1.076,0.454 1.532,0.143 l 4.84,-3.313 c 1.041,0.563 2.146,1.021 3.299,1.375 l 1.097,5.852 c 0.103,0.542 0.632,0.982 1.185,0.982 h 5.877 c 0.553,0 1.082,-0.44 1.185,-0.982 l 1.086,-5.796 c 1.201,-0.354 2.354,-0.821 3.438,-1.401 l 4.902,3.354 c 0.456,0.312 1.142,0.248 1.532,-0.143 l 4.155,-4.154 c 0.391,-0.391 0.454,-1.076 0.143,-1.532 l -3.335,-4.874 c 0.589,-1.084 1.063,-2.237 1.423,-3.44 l 5.819,-1.091 c 0.542,-0.103 0.982,-0.632 0.982,-1.185 v -5.877 c 0,-0.553 -0.441,-1.082 -0.983,-1.185 z M 32,42.085 c -5.568,0 -10.083,-4.515 -10.083,-10.086 0,-5.567 4.515,-10.083 10.083,-10.083 5.57,0 10.086,4.516 10.086,10.083 0,5.571 -4.517,10.086 -10.086,10.086 z"
|
||||||
id="path3115"
|
id="path3115"
|
||||||
style="fill:#60676d;fill-opacity:1" /></g></svg>
|
style="fill:#889bab;fill-opacity:1" /></g></svg>
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -16,7 +16,7 @@
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="settings.svg"><sodipodi:namedview
|
sodipodi:docname="settings@hover.svg"><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
borderopacity="1"
|
borderopacity="1"
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
id="namedview3221"
|
id="namedview3221"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="3.6875"
|
inkscape:zoom="3.6875"
|
||||||
inkscape:cx="-20.610169"
|
inkscape:cx="-73.220338"
|
||||||
inkscape:cy="32"
|
inkscape:cy="32"
|
||||||
inkscape:window-x="10"
|
inkscape:window-x="10"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -38,12 +38,12 @@
|
||||||
inkscape:current-layer="g3111" /><metadata
|
inkscape:current-layer="g3111" /><metadata
|
||||||
id="metadata3121"><rdf:RDF><cc:Work
|
id="metadata3121"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs3119" /><g
|
id="defs3119" /><g
|
||||||
id="g3111"><path
|
id="g3111"><path
|
||||||
d="m 36.167,32 c 0,2.30137 -1.86563,4.167 -4.167,4.167 -2.30137,0 -4.167,-1.86563 -4.167,-4.167 0,-2.30137 1.86563,-4.167 4.167,-4.167 2.30137,0 4.167,1.86563 4.167,4.167 z"
|
d="m 36.167,32 c 0,2.30137 -1.86563,4.167 -4.167,4.167 -2.30137,0 -4.167,-1.86563 -4.167,-4.167 0,-2.30137 1.86563,-4.167 4.167,-4.167 2.30137,0 4.167,1.86563 4.167,4.167 z"
|
||||||
id="circle3113"
|
id="circle3113"
|
||||||
style="fill:#ffffff;fill-opacity:1" /><path
|
style="fill:#2ecc6d;fill-opacity:1" /><path
|
||||||
d="M 55.192,27.87 49.367,26.778 C 49.013,25.6 48.549,24.47 47.975,23.407 l 3.37,-4.927 c 0.312,-0.456 0.248,-1.142 -0.143,-1.532 l -4.155,-4.156 c -0.391,-0.391 -1.076,-0.454 -1.532,-0.143 l -4.928,3.372 c -1.094,-0.59 -2.259,-1.063 -3.473,-1.42 L 36.028,8.807 C 35.925,8.264 35.396,7.824 34.843,7.824 h -5.877 c -0.553,0 -1.082,0.44 -1.185,0.983 l -1.097,5.851 c -1.165,0.356 -2.282,0.82 -3.334,1.392 l -4.866,-3.329 c -0.456,-0.312 -1.142,-0.248 -1.532,0.143 l -4.156,4.156 c -0.391,0.391 -0.454,1.076 -0.143,1.532 l 3.35,4.896 c -0.564,1.052 -1.021,2.168 -1.371,3.331 L 8.808,27.87 c -0.542,0.103 -0.982,0.632 -0.982,1.185 v 5.877 c 0,0.553 0.44,1.082 0.982,1.185 l 5.82,1.091 c 0.355,1.188 0.823,2.328 1.401,3.399 l -3.312,4.842 c -0.312,0.456 -0.248,1.142 0.143,1.532 l 4.155,4.156 c 0.391,0.391 1.076,0.454 1.532,0.143 l 4.84,-3.313 c 1.041,0.563 2.146,1.021 3.299,1.375 l 1.097,5.852 c 0.103,0.542 0.632,0.982 1.185,0.982 h 5.877 c 0.553,0 1.082,-0.44 1.185,-0.982 l 1.086,-5.796 c 1.201,-0.354 2.354,-0.821 3.438,-1.401 l 4.902,3.354 c 0.456,0.312 1.142,0.248 1.532,-0.143 l 4.155,-4.154 c 0.391,-0.391 0.454,-1.076 0.143,-1.532 l -3.335,-4.874 c 0.589,-1.084 1.063,-2.237 1.423,-3.44 l 5.819,-1.091 c 0.542,-0.103 0.982,-0.632 0.982,-1.185 v -5.877 c 0,-0.553 -0.441,-1.082 -0.983,-1.185 z M 32,42.085 c -5.568,0 -10.083,-4.515 -10.083,-10.086 0,-5.567 4.515,-10.083 10.083,-10.083 5.57,0 10.086,4.516 10.086,10.083 0,5.571 -4.517,10.086 -10.086,10.086 z"
|
d="M 55.192,27.87 49.367,26.778 C 49.013,25.6 48.549,24.47 47.975,23.407 l 3.37,-4.927 c 0.312,-0.456 0.248,-1.142 -0.143,-1.532 l -4.155,-4.156 c -0.391,-0.391 -1.076,-0.454 -1.532,-0.143 l -4.928,3.372 c -1.094,-0.59 -2.259,-1.063 -3.473,-1.42 L 36.028,8.807 C 35.925,8.264 35.396,7.824 34.843,7.824 h -5.877 c -0.553,0 -1.082,0.44 -1.185,0.983 l -1.097,5.851 c -1.165,0.356 -2.282,0.82 -3.334,1.392 l -4.866,-3.329 c -0.456,-0.312 -1.142,-0.248 -1.532,0.143 l -4.156,4.156 c -0.391,0.391 -0.454,1.076 -0.143,1.532 l 3.35,4.896 c -0.564,1.052 -1.021,2.168 -1.371,3.331 L 8.808,27.87 c -0.542,0.103 -0.982,0.632 -0.982,1.185 v 5.877 c 0,0.553 0.44,1.082 0.982,1.185 l 5.82,1.091 c 0.355,1.188 0.823,2.328 1.401,3.399 l -3.312,4.842 c -0.312,0.456 -0.248,1.142 0.143,1.532 l 4.155,4.156 c 0.391,0.391 1.076,0.454 1.532,0.143 l 4.84,-3.313 c 1.041,0.563 2.146,1.021 3.299,1.375 l 1.097,5.852 c 0.103,0.542 0.632,0.982 1.185,0.982 h 5.877 c 0.553,0 1.082,-0.44 1.185,-0.982 l 1.086,-5.796 c 1.201,-0.354 2.354,-0.821 3.438,-1.401 l 4.902,3.354 c 0.456,0.312 1.142,0.248 1.532,-0.143 l 4.155,-4.154 c 0.391,-0.391 0.454,-1.076 0.143,-1.532 l -3.335,-4.874 c 0.589,-1.084 1.063,-2.237 1.423,-3.44 l 5.819,-1.091 c 0.542,-0.103 0.982,-0.632 0.982,-1.185 v -5.877 c 0,-0.553 -0.441,-1.082 -0.983,-1.185 z M 32,42.085 c -5.568,0 -10.083,-4.515 -10.083,-10.086 0,-5.567 4.515,-10.083 10.083,-10.083 5.57,0 10.086,4.516 10.086,10.083 0,5.571 -4.517,10.086 -10.086,10.086 z"
|
||||||
id="path3115"
|
id="path3115"
|
||||||
style="fill:#ffffff;fill-opacity:1" /></g></svg>
|
style="fill:#2ecc6d;fill-opacity:1" /></g></svg>
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -15,10 +15,10 @@
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100%"
|
height="100%"
|
||||||
sodipodi:docname="ue_grayscale.svg"><metadata
|
sodipodi:docname="ue.svg"><metadata
|
||||||
id="metadata3350"><rdf:RDF><cc:Work
|
id="metadata3350"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs3348" /><sodipodi:namedview
|
id="defs3348" /><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
|
@ -28,12 +28,12 @@
|
||||||
guidetolerance="10"
|
guidetolerance="10"
|
||||||
inkscape:pageopacity="0"
|
inkscape:pageopacity="0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:window-width="789"
|
inkscape:window-width="1310"
|
||||||
inkscape:window-height="480"
|
inkscape:window-height="480"
|
||||||
id="namedview3346"
|
id="namedview3346"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="0.46825397"
|
inkscape:zoom="0.46825397"
|
||||||
inkscape:cx="252"
|
inkscape:cx="-162.30508"
|
||||||
inkscape:cy="252"
|
inkscape:cy="252"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -42,12 +42,12 @@
|
||||||
d="M297.6,495.4c-40.9,0-74.4-33.5-74.4-74.4s33.5-74.4,74.4-74.4V185.3C167.4,185.3,62,290.7,62,420.9 s105.4,235.6,235.6,235.6c54.6,0,105.4-18.6,146.3-50.8l-99.2-126.5C331.1,489.2,315,495.4,297.6,495.4z"
|
d="M297.6,495.4c-40.9,0-74.4-33.5-74.4-74.4s33.5-74.4,74.4-74.4V185.3C167.4,185.3,62,290.7,62,420.9 s105.4,235.6,235.6,235.6c54.6,0,105.4-18.6,146.3-50.8l-99.2-126.5C331.1,489.2,315,495.4,297.6,495.4z"
|
||||||
fill="#00BCD4"
|
fill="#00BCD4"
|
||||||
id="path3340"
|
id="path3340"
|
||||||
style="fill:#7c858c;fill-opacity:1" /><path
|
style="fill:#889bab;fill-opacity:1" /><path
|
||||||
d="M372.1,420.9h161.2c0-130.2-105.4-235.6-235.6-235.6v161.2C338.6,346.5,372.1,380,372.1,420.9z"
|
d="M372.1,420.9h161.2c0-130.2-105.4-235.6-235.6-235.6v161.2C338.6,346.5,372.1,380,372.1,420.9z"
|
||||||
fill="#448AFF"
|
fill="#448AFF"
|
||||||
id="path3342"
|
id="path3342"
|
||||||
style="fill:#5b6369;fill-opacity:1" /><path
|
style="fill:#647b8e;fill-opacity:1" /><path
|
||||||
d="M533.3,420.9H372.1c0,23.6-11.2,44.6-28.5,58.3l99.2,126.5C498.5,562.3,533.3,495.4,533.3,420.9z"
|
d="M533.3,420.9H372.1c0,23.6-11.2,44.6-28.5,58.3l99.2,126.5C498.5,562.3,533.3,495.4,533.3,420.9z"
|
||||||
fill="#3F51B5"
|
fill="#3F51B5"
|
||||||
id="path3344"
|
id="path3344"
|
||||||
style="fill:#494d51;fill-opacity:1" /></svg>
|
style="fill:#465562;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
@ -15,10 +15,10 @@
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100%"
|
height="100%"
|
||||||
sodipodi:docname="ue.svg"><metadata
|
sodipodi:docname="ue@hover.svg"><metadata
|
||||||
id="metadata3350"><rdf:RDF><cc:Work
|
id="metadata3350"><rdf:RDF><cc:Work
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
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="defs3348" /><sodipodi:namedview
|
id="defs3348" /><sodipodi:namedview
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
|
@ -28,12 +28,12 @@
|
||||||
guidetolerance="10"
|
guidetolerance="10"
|
||||||
inkscape:pageopacity="0"
|
inkscape:pageopacity="0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:window-width="789"
|
inkscape:window-width="1184"
|
||||||
inkscape:window-height="480"
|
inkscape:window-height="480"
|
||||||
id="namedview3346"
|
id="namedview3346"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="0.46825397"
|
inkscape:zoom="0.46825397"
|
||||||
inkscape:cx="252"
|
inkscape:cx="-162.30508"
|
||||||
inkscape:cy="252"
|
inkscape:cy="252"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="24"
|
inkscape:window-y="24"
|
||||||
|
@ -42,12 +42,12 @@
|
||||||
d="M297.6,495.4c-40.9,0-74.4-33.5-74.4-74.4s33.5-74.4,74.4-74.4V185.3C167.4,185.3,62,290.7,62,420.9 s105.4,235.6,235.6,235.6c54.6,0,105.4-18.6,146.3-50.8l-99.2-126.5C331.1,489.2,315,495.4,297.6,495.4z"
|
d="M297.6,495.4c-40.9,0-74.4-33.5-74.4-74.4s33.5-74.4,74.4-74.4V185.3C167.4,185.3,62,290.7,62,420.9 s105.4,235.6,235.6,235.6c54.6,0,105.4-18.6,146.3-50.8l-99.2-126.5C331.1,489.2,315,495.4,297.6,495.4z"
|
||||||
fill="#00BCD4"
|
fill="#00BCD4"
|
||||||
id="path3340"
|
id="path3340"
|
||||||
style="fill:#ffffff;fill-opacity:1" /><path
|
style="fill:#2ecc6d;fill-opacity:1" /><path
|
||||||
d="M372.1,420.9h161.2c0-130.2-105.4-235.6-235.6-235.6v161.2C338.6,346.5,372.1,380,372.1,420.9z"
|
d="M372.1,420.9h161.2c0-130.2-105.4-235.6-235.6-235.6v161.2C338.6,346.5,372.1,380,372.1,420.9z"
|
||||||
fill="#448AFF"
|
fill="#448AFF"
|
||||||
id="path3342"
|
id="path3342"
|
||||||
style="fill:#bfc1c3;fill-opacity:1" /><path
|
style="fill:#26a659;fill-opacity:1" /><path
|
||||||
d="M533.3,420.9H372.1c0,23.6-11.2,44.6-28.5,58.3l99.2,126.5C498.5,562.3,533.3,495.4,533.3,420.9z"
|
d="M533.3,420.9H372.1c0,23.6-11.2,44.6-28.5,58.3l99.2,126.5C498.5,562.3,533.3,495.4,533.3,420.9z"
|
||||||
fill="#3F51B5"
|
fill="#3F51B5"
|
||||||
id="path3344"
|
id="path3344"
|
||||||
style="fill:#84888c;fill-opacity:1" /></svg>
|
style="fill:#1d8346;fill-opacity:1" /></svg>
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |