Folder 1.06
Ce module permet le partage de fichiers dans une page standard.
14
folder/changes.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
1.06
|
||||||
|
- Supprime le placeholder du titre
|
||||||
|
1.05
|
||||||
|
- Méthode d'alignement des icônes de contrôle dans la feuille de style
|
||||||
|
1.04
|
||||||
|
= Option pour masquer ou afficher les boutons de contrôle
|
||||||
|
1.03
|
||||||
|
- Boutons pour replier ou déplier les dossiers
|
||||||
|
1.02
|
||||||
|
- Options d'ouverture des fichiers : download ; lightbox ; _blank
|
||||||
|
1.01
|
||||||
|
- Affiche uniquement les images dans Lity, force le téléchargement des autres ressources. Une option est à prévoir dans la configuration.
|
||||||
|
1.0
|
||||||
|
- Version initiale publiée
|
1
folder/enum.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"name":"folder","realName":"Partage de ressources","version":"1.06","update":"0.0","delete":true,"dataDirectory":""}
|
265
folder/folder.php
Normal file
@ -0,0 +1,265 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file is part of Zwii.
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @author Rémi Jean <remi.jean@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||||
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
|
||||||
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||||
|
* @link http://zwiicms.fr/
|
||||||
|
*/
|
||||||
|
|
||||||
|
class folder extends common
|
||||||
|
{
|
||||||
|
|
||||||
|
const VERSION = '1.06';
|
||||||
|
const REALNAME = 'Partage de ressources';
|
||||||
|
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
|
||||||
|
|
||||||
|
public static $actions = [
|
||||||
|
'config' => self::GROUP_EDITOR,
|
||||||
|
'index' => self::GROUP_VISITOR,
|
||||||
|
];
|
||||||
|
|
||||||
|
// Contenu du chemin sélectionné
|
||||||
|
public static $folders = '';
|
||||||
|
|
||||||
|
public static $sharePath = [
|
||||||
|
'site/file/source/'
|
||||||
|
];
|
||||||
|
|
||||||
|
public static $iconPack = [
|
||||||
|
'cla' => 'Classique',
|
||||||
|
'hct' => 'Contraste élevé',
|
||||||
|
'sqo' => 'Carré',
|
||||||
|
'viv' => 'Vivid'
|
||||||
|
];
|
||||||
|
|
||||||
|
public static $iconSize = [
|
||||||
|
'md' => 'Standard',
|
||||||
|
'lg' => 'Moyenne',
|
||||||
|
'xl' => 'Grande'
|
||||||
|
];
|
||||||
|
|
||||||
|
public static $target = [
|
||||||
|
'data-lity' => 'Images dans une lightbox (lity), sinon téléchargement',
|
||||||
|
'blank' => 'Nouvel onglet',
|
||||||
|
'download' => 'Téléchargement forcé',
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
|
||||||
|
// Générer l'affichage
|
||||||
|
self::$folders = $this->getFolderContent($this->getData(['module', $this->getUrl(0), 'path']), $this->getData(['module', $this->getUrl(0)]));
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'showBarEditButton' => true,
|
||||||
|
'showPageContent' => true,
|
||||||
|
'view' => 'index'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function config()
|
||||||
|
{
|
||||||
|
// Soumission du formulaire
|
||||||
|
if (
|
||||||
|
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
|
||||||
|
$this->isPost()
|
||||||
|
) {
|
||||||
|
$this->setData([
|
||||||
|
'module',
|
||||||
|
$this->getUrl(0),
|
||||||
|
[
|
||||||
|
'path' => preg_replace('/^\\./', '', $this->getInput('folderConfigPath')),
|
||||||
|
'title' => $this->getInput('folderConfigTitle'),
|
||||||
|
'sort' => $this->getInput('folderConfigSort', helper::FILTER_BOOLEAN),
|
||||||
|
'subfolder' => $this->getInput('folderConfigSubfolder', helper::FILTER_BOOLEAN),
|
||||||
|
'folder' => $this->getInput('folderConfigFolder', helper::FILTER_BOOLEAN),
|
||||||
|
'details' => $this->getInput('folderConfigDetails', helper::FILTER_BOOLEAN),
|
||||||
|
'folderstate' => $this->getInput('folderConfigFolderState', helper::FILTER_BOOLEAN),
|
||||||
|
'expandcontrol' => $this->getInput('folderConfigExpandControl', helper::FILTER_BOOLEAN),
|
||||||
|
'iconpack' => $this->getInput('folderConfigiconPack'),
|
||||||
|
'iconsize' => $this->getInput('folderConfigIconSize'),
|
||||||
|
'target' => $this->getInput('folderConfigTarget'),
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'redirect' => helper::baseUrl() . $this->getUrl(0),
|
||||||
|
'notification' => helper::translate('Modifications enregistrées'),
|
||||||
|
'state' => true
|
||||||
|
]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
self::$sharePath = $this->getSubdirectories('site/file/source');
|
||||||
|
self::$sharePath = array_flip(self::$sharePath);
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'view' => 'config'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getFolderContent($chemin, $config = [])
|
||||||
|
{
|
||||||
|
$showSubFolder = isset($config['subfolder']) ? $config['subfolder'] : true;
|
||||||
|
$sort = isset($config['sort']) ? $config['sort'] : true;
|
||||||
|
$showDetails = isset($config['details']) ? $config['details'] : false;
|
||||||
|
$initialFolderState = isset($config['folderstate']) ? $config['folderstate'] : 'collapsed';
|
||||||
|
$iconPack = isset($config['iconpack']) || !empty($config['iconpack']) ? $config['iconpack'] : 'classic';
|
||||||
|
$iconSize = isset($config['iconsize']) || !empty($config['iconsize']) ? $config['iconsize'] : 'md';
|
||||||
|
$target = isset($config['target']) || !empty($config['target']) ? $config['target'] : 'data-lity';
|
||||||
|
|
||||||
|
// Vérifier si le chemin existe et est un dossier
|
||||||
|
if (is_dir($chemin)) {
|
||||||
|
// Ouvrir le dossier
|
||||||
|
if ($dh = opendir($chemin)) {
|
||||||
|
// Initialiser les tableaux pour les sous-dossiers et les fichiers
|
||||||
|
$subDirectories = [];
|
||||||
|
$files = [];
|
||||||
|
|
||||||
|
// Parcourir les éléments du dossier
|
||||||
|
while (($element = readdir($dh)) !== false) {
|
||||||
|
// Exclure les éléments spéciaux
|
||||||
|
if ($element != '.' && $element != '..') {
|
||||||
|
// Construire le chemin complet de l'élément
|
||||||
|
$cheminComplet = $chemin . '/' . $element;
|
||||||
|
|
||||||
|
// Vérifier si c'est un dossier
|
||||||
|
if (is_dir($cheminComplet)) {
|
||||||
|
// Ajouter le dossier au tableau des sous-dossiers
|
||||||
|
$subDirectories[] = $element;
|
||||||
|
} else {
|
||||||
|
// Ajouter le fichier au tableau des fichiers
|
||||||
|
$files[] = $element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fermer le dossier
|
||||||
|
closedir($dh);
|
||||||
|
|
||||||
|
// Trier les sous-dossiers et les fichiers si nécessaire
|
||||||
|
if ($sort) {
|
||||||
|
sort($subDirectories);
|
||||||
|
sort($files);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialiser la liste des éléments
|
||||||
|
$items = '<ul>';
|
||||||
|
|
||||||
|
// Ajouter les sous-dossiers à la liste si configuré pour les afficher
|
||||||
|
if ($showSubFolder) {
|
||||||
|
foreach ($subDirectories as $subDirectory) {
|
||||||
|
$folderClass = '';
|
||||||
|
if ($initialFolderState == 'collapsed') {
|
||||||
|
$folderClass = 'collapsible';
|
||||||
|
}
|
||||||
|
$items .= '<li class="fiv-' . $iconPack . ' fiv-icon-folder ' . $folderClass . ' fiv-size-' . $iconSize . ' "><span class="toggle">' . $subDirectory . '</span><ul class="sub-items"';
|
||||||
|
if ($initialFolderState == 'collapsed') {
|
||||||
|
$items .= " style='display:none;'";
|
||||||
|
}
|
||||||
|
$items .= '>';
|
||||||
|
// Appeler récursivement la fonction pour ce sous-dossier
|
||||||
|
$items .= $this->getFolderContent($chemin . '/' . $subDirectory, $config);
|
||||||
|
$items .= '</ul></li>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ajouter les fichiers à la liste
|
||||||
|
foreach ($files as $file) {
|
||||||
|
$fileFullPath = $chemin . '/' . $file;
|
||||||
|
$fileInfo = '';
|
||||||
|
$fileExtension = pathinfo($fileFullPath, PATHINFO_EXTENSION); // Obtenir l'extension du fichier
|
||||||
|
$fileExtensionClass = strtolower($fileExtension); // Convertir l'extension en minuscules pour une classe CSS
|
||||||
|
if ($showDetails) {
|
||||||
|
$fileSize = filesize($fileFullPath);
|
||||||
|
$fileSizeFormatted = $this->formatSizeUnits($fileSize);
|
||||||
|
$fileInfo = '<div class="file-info-container">' . date('d/m/Y H:i', filemtime($fileFullPath)) . ' - ' . $fileSizeFormatted . '</div>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Redirige la cible vers un téléchargement lorsque le format n'est pas supporté par Lity pour éviter unefenêtre Lity vide.
|
||||||
|
// Génére l'attribut _blank
|
||||||
|
switch ($target) {
|
||||||
|
case 'data-lity':
|
||||||
|
$target = in_array($fileExtension, ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff', 'svg', 'ico', 'webp', 'avif'])
|
||||||
|
? 'data-lity'
|
||||||
|
: 'download';
|
||||||
|
break;
|
||||||
|
case 'blank':
|
||||||
|
$target = 'target="_blank"';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ajouter des balises d'ancrage autour du nom de fichier pour le rendre cliquable
|
||||||
|
$items .= '<li class=" fiv-' . $iconPack . ' fiv-icon-' . $fileExtensionClass . ' fiv-size-' . $iconSize . ' "><a href="' . $fileFullPath . '" ' . $target . ' ><div class="fileContainer"><div class="file-name">' . $file . '</div>' . $fileInfo . '</div></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fermer la liste
|
||||||
|
$items .= '</ul>';
|
||||||
|
|
||||||
|
return $items;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private function formatSizeUnits($bytes)
|
||||||
|
{
|
||||||
|
$units = array('octets', 'Ko', 'Mo', 'Go', 'To');
|
||||||
|
$i = 0;
|
||||||
|
while ($bytes >= 1024) {
|
||||||
|
$bytes /= 1024;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
return round($bytes, 2) . ' ' . $units[$i];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Liste les dossier contenus dans RFM
|
||||||
|
*/
|
||||||
|
private function getSubdirectories($dir, $basePath = '')
|
||||||
|
{
|
||||||
|
$subdirs = array();
|
||||||
|
// Ouvrez le répertoire spécifié
|
||||||
|
$dh = opendir($dir);
|
||||||
|
// Parcourez tous les fichiers et répertoires dans le répertoire
|
||||||
|
while (($file = readdir($dh)) !== false) {
|
||||||
|
// Ignorer les entrées de répertoire parent et actuel
|
||||||
|
if ($file == '.' || $file == '..') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// Construisez le chemin complet du fichier ou du répertoire
|
||||||
|
$path = $dir . '/' . $file;
|
||||||
|
// Vérifiez si c'est un répertoire
|
||||||
|
if (is_dir($path)) {
|
||||||
|
// Construisez la clé et la valeur pour le tableau associatif
|
||||||
|
$key = $basePath === '' ? ucfirst($file) : $basePath . '/' . $file;
|
||||||
|
$value = $path . '/';
|
||||||
|
// Ajouter la clé et la valeur au tableau associatif
|
||||||
|
$subdirs[$key] = $value;
|
||||||
|
// Appeler la fonction récursivement pour ajouter les sous-répertoires
|
||||||
|
$subdirs = array_merge($subdirs, $this->getSubdirectories($path, $key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Fermez le gestionnaire de dossier
|
||||||
|
closedir($dh);
|
||||||
|
return $subdirs;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
19
folder/view/config/config.css
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
/**
|
||||||
|
* This file is part of Zwii.
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @author Rémi Jean <remi.jean@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||||
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
|
||||||
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||||
|
* @link http://zwiicms.fr/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** NE PAS EFFACER
|
||||||
|
* admin.css
|
||||||
|
*/
|
||||||
|
|
90
folder/view/config/config.php
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<?php echo template::formOpen('folderConfig'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col1">
|
||||||
|
<?php echo template::button('folderConfigBack', [
|
||||||
|
'class' => 'buttonGrey',
|
||||||
|
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
|
||||||
|
'value' => template::ico('left')
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col2 offset9">
|
||||||
|
<?php echo template::submit('folderConfigSubmit'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class='row'>
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>
|
||||||
|
<?php echo helper::translate('Paramètres'); ?>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::select('folderConfigPath', $module::$sharePath, [
|
||||||
|
'label' => 'Dossier',
|
||||||
|
'class' => 'filemanager',
|
||||||
|
'selected' => $this->getData(['module', $this->getUrl(0), 'path'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('folderConfigTitle', [
|
||||||
|
'label' => 'Titre',
|
||||||
|
'value' => $this->getData(['module', $this->getUrl(0), 'title'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col3">
|
||||||
|
<?php echo template::select('folderConfigiconPack', $module::$iconPack, [
|
||||||
|
'label' => 'Thème des icônes',
|
||||||
|
'selected' => $this->getData(['module', $this->getUrl(0), 'iconpack'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col3">
|
||||||
|
<?php echo template::select('folderConfigIconSize', $module::$iconSize, [
|
||||||
|
'label' => 'Taille des icônes',
|
||||||
|
'selected' => $this->getData(['module', $this->getUrl(0), 'iconsize'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::select('folderConfigTarget', $module::$target, [
|
||||||
|
'label' => 'Cible des liens',
|
||||||
|
'selected' => $this->getData(['module', $this->getUrl(0), 'target'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::checkbox('folderConfigSort', true, 'Trier', [
|
||||||
|
'checked' => $this->getData(['module', $this->getUrl(0), 'sort'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::checkbox('folderConfigSubfolder', true, 'Inclure les sous-dossiers', [
|
||||||
|
'checked' => $this->getData(['module', $this->getUrl(0), 'subfolder'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('folderConfigDetails', true, 'Information des fichiers', [
|
||||||
|
'checked' => $this->getData(['module', $this->getUrl(0), 'details'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('folderConfigFolderState', true, 'Dossiers repliés', [
|
||||||
|
'checked' => $this->getData(['module', $this->getUrl(0), 'folderstate'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('folderConfigExpandControl', true, 'Icônes de contrôle', [
|
||||||
|
'checked' => $this->getData(['module', $this->getUrl(0), 'expandcontrol'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php echo template::formClose(); ?>
|
||||||
|
<div class="moduleVersion">Version n°
|
||||||
|
<?php echo $module::VERSION; ?>
|
||||||
|
</div>
|
1624
folder/view/index/file-icon-classic.css
Normal file
1707
folder/view/index/file-icon-high-contrast.css
Normal file
1626
folder/view/index/file-icon-square-o.css
Normal file
1622
folder/view/index/file-icon-vivid.css
Normal file
73
folder/view/index/icons/CHANGELOG.md
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
### 1.1 - In Progress
|
||||||
|
|
||||||
|
##### Fixed
|
||||||
|
|
||||||
|
- [Vivid] COFFEE icon background
|
||||||
|
|
||||||
|
##### Improved
|
||||||
|
|
||||||
|
- Created new [demo page](https://fileicons.org/)
|
||||||
|
|
||||||
|
##### New Sets
|
||||||
|
|
||||||
|
- High Contrast (`hct`)
|
||||||
|
- Extra (`ext`)
|
||||||
|
|
||||||
|
##### New Icons
|
||||||
|
|
||||||
|
- Classic (`cla`), High Contrast (`hct`), Square Outline (`sqo`), Vivid (`viv`)
|
||||||
|
- ACE, SIT
|
||||||
|
- ASM
|
||||||
|
- CDDA, VOX
|
||||||
|
- CHM, HLP
|
||||||
|
- CODE-WORKSPACE
|
||||||
|
- CODEKIT3, KIT
|
||||||
|
- CUR
|
||||||
|
- DATA
|
||||||
|
- ELF
|
||||||
|
- EML
|
||||||
|
- FON, FNT
|
||||||
|
- GRADLE
|
||||||
|
- ICMA, ICML
|
||||||
|
- IML
|
||||||
|
- INC
|
||||||
|
- INFO
|
||||||
|
- KT, KTS
|
||||||
|
- MNG
|
||||||
|
- OCX
|
||||||
|
- PBIX
|
||||||
|
- PPK
|
||||||
|
- RDL
|
||||||
|
- REG
|
||||||
|
- RST
|
||||||
|
- SESX
|
||||||
|
- SKETCH
|
||||||
|
- SWP
|
||||||
|
- TMX
|
||||||
|
- TPL
|
||||||
|
- TSX
|
||||||
|
- VCF
|
||||||
|
- WPD
|
||||||
|
- XCODEPROJ
|
||||||
|
- XLB, XLSB, XLC
|
||||||
|
- Extra (`ext`)
|
||||||
|
- FOLDER, FOLDER-OPEN
|
||||||
|
- FOLDER-ALT, FOLDER-OPEN-ALT
|
||||||
|
- FOLDER-BLUE, FOLDER-BLUE-OPEN
|
||||||
|
- FOLDER-ARCHIVE
|
||||||
|
- FOLDER-FAVORITE
|
||||||
|
- FOLDER-IDEA
|
||||||
|
- FOLDER-IMAGE
|
||||||
|
- FOLDER-LOCK
|
||||||
|
- FOLDER-MUSIC
|
||||||
|
- FOLDER-PHOTO
|
||||||
|
- FOLDER-TRASH
|
||||||
|
- FOLDER-TREE
|
||||||
|
- FOLDER-VIDEO
|
||||||
|
|
||||||
|
### 1.0
|
||||||
|
|
||||||
|
- Initial Release
|
14
folder/view/index/icons/LICENSE
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
|
||||||
|
files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
||||||
|
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
||||||
|
Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
||||||
|
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
205
folder/view/index/icons/README.md
Normal file
@ -0,0 +1,205 @@
|
|||||||
|
[![Author](https://img.shields.io/badge/author-Daniel%20M.%20Hendricks-lightgrey.svg?colorB=9900cc&style=flat-square)](https://www.danhendricks.com?utm_source=github.com&utm_medium=campaign&utm_content=button&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
[![License](https://img.shields.io/badge/license-MIT-yellow.svg?style=flat-square)](https://raw.githubusercontent.com/dmhendricks/file-icon-vectors/master/LICENSE)
|
||||||
|
[![Release](https://img.shields.io/github/release/dmhendricks/file-icon-vectors.svg?style=flat-square)](https://github.com/dmhendricks/file-icon-vectors/releases)
|
||||||
|
[![Icon Count](https://img.shields.io/badge/icon%20count-1170-%238F2A27?style=flat-square)](https://fileicons.org/?utm_source=github.com&utm_medium=referral&utm_content=button&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
[![GitHub Downloads](https://img.shields.io/packagist/dt/dmhendricks/file-icon-vectors.svg?label=%E2%86%93&style=flat-square)](https://github.com/dmhendricks/file-icon-vectors/releases)
|
||||||
|
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/file-icon-vectors/badge)](https://www.jsdelivr.com/package/npm/file-icon-vectors?utm_source=github.com&utm_medium=referral&utm_content=button&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
[![Twitter](https://img.shields.io/twitter/url/https/github.com/dmhendricks/file-icon-vectors.svg?style=social)](https://twitter.com/danielhendricks)
|
||||||
|
[![BrowserStack](https://img.shields.io/static/v1?style=social&label=BrowserStack&message=Passed&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzQ5NjEyQzJDMzUxMTFFOTlBNkZDNEVGRUQ3QUI4RDkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzQ5NjEyQzNDMzUxMTFFOTlBNkZDNEVGRUQ3QUI4RDkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NDk2MTJDMEMzNTExMUU5OUE2RkM0RUZFRDdBQjhEOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NDk2MTJDMUMzNTExMUU5OUE2RkM0RUZFRDdBQjhEOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhdfVWUAAAGAUExURXjIMP/Rhf/Xn4mHhwpRXnrY8CIXFv41Sk68OACv2QC+6svIAP5oEAC+6H7ToKa3nP9fF//AT/+tfPjVzpTPHf+6Rf1GLcbVAJDd8P/9+v/qyf/EY/+mNXHLidKyF126Mv/26anm8/+8TP/68P1jAFHO8lPAYu+SDqrh7v+xR/0eOgC/rIGvM7SvI9qKjAC+6lG5wf+SM/+2mOGnGf8NMgCcvLLEw5OZOv0yMfvARRfD7v+VSf9lZ/9mOqTs9lvAQ/+EK/+VY7Hr/f+cN0+7Lb2FMuqFG7tuOv9jEOCLLP93JKzj+ZDYwwC9s2LLrQB8k/9wEv+4R/9oD5/g1b3iAACtygCJo//w6MnHyPM5M+h3NuVyfcLPZP9MWKOYXMevu/+Xn5HG06nWAwDG8pzn6//lsZ/l85rik/+def/38fNoILPS3/1tF/+3Zf+sROmuICWPq3edprrG0VTW26jn/EhteD7CN9ibbgC8t/96NPmLQIjPY/9CKSQfIP///////+tAimMAAACAdFJOU/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AOAVLZwAAAj9JREFUeNpU0vtb0lAYB/CzCTgeDrQpGwyUyzZwwwyBmTRNELwgkYpQZkUXumktyrJ13eFf9z0CZd8ftufZZ9/znPOcFw1HIWezp+u9Xm/9xaw8nASNXsczfNk0c2VJOjGni2fXkRQ1KWeWdxKBSCSS2DuZZslflDepPX76LrS/P/+7343slWfkMRJque+djGXlIcuo301IH+URFjU+Z97ayAAEIfl8NtxN3GUIxWMNS+aTDS/QysHBij8YXOTC3b21N4DkFIrTH95alt/j+nw+z0owmE32A78UdYhS2JZg0aiV9/hc1zc1C7q4hbolgx0ilgd8vuG1HoK5rkxcT/B+kusHDEFGm5ot5b6kvZbnCh9Nua7/R5ILR9piDP3EVxgdowtPPzRR5I7IIpvi7bSeGSPEvzhCBjUp3rjQo5/H6PO8mt8CbCtxuixvPnut695J1f+1wnHhgAG4pmG7vBu6p6ej367O+cALRa7/SQQsahjzJ8kWaPrl+fmy9yIEVgnUBdhQ7BBj+8+uE9KBa7WaTntcf2EgwFHkAlSxtOpkQ61OpxWqUAuXqoKiyIgwUMVHoFtcpcJRclAJG7AqQUN1DlPlt5OO44A4laUFvi4oYgqujLB1qrjxfnv1JmRp54gvgMGowGXL8blDnpYbDfpPg7dpLy6PZkgVjCrW8Cg8rhpggjqZPjUuGoWmDWQ3CwOB9tR/cyuzoqC0B4OBoVASWfn6UJMUo4gAVBQmRf6beGA1xsQVJc7EVDL5dinAAO2UucfjcPEkAAAAAElFTkSuQmCC)](https://browserstack.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
|
||||||
|
# File Icon Images
|
||||||
|
|
||||||
|
A collection of file type/extension SVG icons, available free for use in your applications.
|
||||||
|
|
||||||
|
* Please post [feedback or issues](https://github.com/dmhendricks/file-icon-vectors/issues).
|
||||||
|
* I pay to license several of the icons used in these sets. [Donations](https://paypal.me/danielhendricks) are appreciated.
|
||||||
|
* :bulb: If you have an idea, such as new icon requests, additional collections/designs, and/or are willing to contribute a library/design, please [let me know](https://github.com/dmhendricks/file-icon-vectors/issues)! My time is limited, but I will get to it eventually.
|
||||||
|
* :star: If you use these icons to create something cool, [tell me](https://twitter.com/danielhendricks) about it!
|
||||||
|
|
||||||
|
### :pushpin: Demo: [View Icons](https://fileicons.org/)
|
||||||
|
|
||||||
|
## Icon Sets
|
||||||
|
|
||||||
|
Currently, there are three icon sets in the `dist/icons` directory:
|
||||||
|
|
||||||
|
* **Classic** - An expansion of the Redboot [free-file-icons](https://github.com/redbooth/free-file-icons) designs.
|
||||||
|
* **Vivid** - Inspired by [Erlen Masson](https://www.sketchappsources.com/svg-resource/1856-vector-file-type-icons-sketch-freebie-resource.html?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* **Square Outline** (in progress) - Modified from and inspired by [Cotne Nazarashvili](https://github.com/thecotne/square-file-icons)
|
||||||
|
|
||||||
|
**Next release:**
|
||||||
|
|
||||||
|
- Over 500 new icons
|
||||||
|
- A new set for dark backgrounds ([preview](https://fileicons.org/?branch=develop&view=high-contrast))
|
||||||
|
- CDNJS hosting
|
||||||
|
|
||||||
|
Once that is released, I'd like to focus on a webfont, ideally where you can create your own file icons with stacking, just like Font Awesome.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### NPM
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install file-icon-vectors
|
||||||
|
```
|
||||||
|
|
||||||
|
### Bower
|
||||||
|
|
||||||
|
```bash
|
||||||
|
bower install file-icon-vectors
|
||||||
|
```
|
||||||
|
|
||||||
|
:rotating_light: **NB!** Because I didn't use semver, the current release is not available from Bower. It will be corrected with the next release.
|
||||||
|
|
||||||
|
### Composer
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer require dmhendricks/file-icon-vectors
|
||||||
|
```
|
||||||
|
|
||||||
|
(I know, it doesn't below on Packagist, but 15% of my downloads are coming from there, so some people must prefer it.)
|
||||||
|
|
||||||
|
## Quick Start
|
||||||
|
|
||||||
|
To display a file icon, simply link to one or all of the icon set CSS files in the `css` directory:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<link rel="stylesheet" href="dist/file-icon-classic.min.css" />
|
||||||
|
<link rel="stylesheet" href="dist/file-icon-square-o.min.css" />
|
||||||
|
<link rel="stylesheet" href="dist/file-icon-vivid.min.css" />
|
||||||
|
|
||||||
|
<!-- Alternatively, you can load all sets: -->
|
||||||
|
<link rel="stylesheet" href="dist/file-icon-vectors.min.css" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### CDN: jsDelivr
|
||||||
|
|
||||||
|
```html
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/dist/file-icon-classic.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/dist/file-icon-square-o.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/dist/file-icon-vivid.min.css" />
|
||||||
|
|
||||||
|
<!-- Alternatively, you can load all sets: -->
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/dist/file-icon-vectors.min.css" />
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Combining Files
|
||||||
|
|
||||||
|
jsDelivr allows you to [combine](https://www.jsdelivr.com/features#combine) multiple files. Below is an example of linking both the Vivid and Square Outline sets with one URI:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<link rel="stylesheet" href="//cdn.jsdelivr.net/combine/npm/file-icon-vectors@1.0.0/dist/file-icon-vivid.min.css,npm/file-icon-vectors@1.0.0/dist/file-icon-square-o.min.css" />
|
||||||
|
```
|
||||||
|
|
||||||
|
This will become more beneficial with future releases that contain supplementary packs, web fonts, etc.
|
||||||
|
|
||||||
|
### CDN: unpkg
|
||||||
|
|
||||||
|
```html
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@1.0.0/dist/file-icon-classic.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@1.0.0/dist/file-icon-square-o.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@1.0.0/dist/file-icon-vivid.min.css" />
|
||||||
|
|
||||||
|
<!-- Alternatively, you can load all sets: -->
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@1.0.0/dist/file-icon-vectors.min.css" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### CDN: GitHack
|
||||||
|
|
||||||
|
Supports branches as endpoints (such as `master`).
|
||||||
|
|
||||||
|
```html
|
||||||
|
<link rel="stylesheet" href="https://rawcdn.githack.com/dmhendricks/file-icon-vectors/master/dist/file-icon-classic.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://rawcdn.githack.com/dmhendricks/file-icon-vectors/master/dist/file-icon-square-o.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://rawcdn.githack.com/dmhendricks/file-icon-vectors/master/dist/file-icon-vivid.min.css" />
|
||||||
|
|
||||||
|
<!-- Alternatively, you can load all sets: -->
|
||||||
|
<link rel="stylesheet" href="https://rawcdn.githack.com/dmhendricks/file-icon-vectors/master/dist/file-icon-vectors.min.css" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### WordPress
|
||||||
|
|
||||||
|
If you're using WordPress, you can load the icons by adding the following line to your theme's `functions.php` file:
|
||||||
|
|
||||||
|
```php
|
||||||
|
wp_enqueue_style( 'file-icon-vectors', 'https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/file-icon-vectors.min.css', null, null );
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Each set has its own CSS prefix:
|
||||||
|
|
||||||
|
- `cla` - Classic
|
||||||
|
- `viv` - Vivid
|
||||||
|
- `sqo` - Square Outline
|
||||||
|
|
||||||
|
The format for CSS classes is `fiv-[prefix]-[extension]`:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<span class="fiv-cla fiv-icon-ppt"></span>
|
||||||
|
<span class="fiv-cla fiv-icon-xls"></span>
|
||||||
|
<span class="fiv-viv fiv-icon-pdf"></span>
|
||||||
|
<span class="fiv-viv fiv-icon-wav"></span>
|
||||||
|
<span class="fiv-sqo fiv-icon-doc"></span>
|
||||||
|
```
|
||||||
|
|
||||||
|
If you want to override the size of the icons, you can do so with CSS:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<style>
|
||||||
|
.fiv-cla, .fiv-viv, .fiv-sqo { font-size: 3em; }
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, you may also use `.fiv-size-md`, `.fiv-size-lg` and `.fiv-size-xl` to modify the icon sizes:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<span class="fiv-viv fiv-icon-pdf fiv-size-lg"></span>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Catalog JSON
|
||||||
|
|
||||||
|
Each icon set has a `catalog.json` file that includes all icons included in the library. You can optionally use this to check for files that exist, and where missing, set an alternate icon.
|
||||||
|
|
||||||
|
For example, [fileicons.org](https://fileicons.org/) reads this file to dynamically create the icon lists for both release and development versions.
|
||||||
|
|
||||||
|
Generic icons include `blank.svg`, `folder.svg`, `image.svg`.
|
||||||
|
|
||||||
|
:rotating_light: **BREAKING CHANGE:** I will be removing the generic `folder.svg` from each collection in favor of the upcoming ["Extra"](https://fileicons.org/?branch=develop&view=extra) set. Follow this repo if you'd like to be notified when that happens.
|
||||||
|
|
||||||
|
## Special Thanks
|
||||||
|
|
||||||
|
- [jsDelivr](https://www.jsdelivr.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [GitHack](https://raw.githack.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), and [unpkg](https://unpkg.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
- [The File Extensions Database](https://fileinfo.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) and [Share Icon](https://www.shareicon.net/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
- [SVG Optimizer](https://github.com/svg/svgo/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [imagemin](https://github.com/imagemin/imagemin/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) and [SVGOMG](https://jakearchibald.github.io/svgomg/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
- [Gulp](https://gulpjs.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) and [Sass](https://sass-lang.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
- [Markdown Editor](https://jbt.github.io/markdown-editor/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) by James Taylor
|
||||||
|
|
||||||
|
Even though I'm paying for them, thanks also to [Adobe](https://www.adobe.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [The Noun Project](https://thenounproject.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [FlatIcon](https://www.flaticon.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [Icons8](https://icons8.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) and [iconscout](https://iconscout.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) for providing great tools and services. :+1: :smile:
|
||||||
|
|
||||||
|
[![Analytics](https://ga-beacon.appspot.com/UA-126205765-1/dmhendricks/file-icon-vectors?flat)](https://ga-beacon.appspot.com/?utm_source=github.com&utm_medium=campaign&utm_content=button&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
|
||||||
|
## Legal Stuff
|
||||||
|
|
||||||
|
All icons used in the creation of this library were licensed MIT, Creative Commons ([attribution](#attribution)) or purchased royalty-free. Any exceptions noted below. All logos are copyright their respective owners.
|
||||||
|
|
||||||
|
If you feel that you have a copyright issue, please feel free to [report it](https://github.com/dmhendricks/file-icon-vectors/issues).
|
||||||
|
|
||||||
|
### Attribution
|
||||||
|
|
||||||
|
* [Android](https://www.flaticon.com/free-icon/android-logo_61120?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icon provided by [Google](https://www.flaticon.com/authors/google?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) via [flaticon.com](https://www.flaticon.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [Apple](https://github.com/simple-icons/simple-icons/blob/develop/icons/apple.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [Debian](https://github.com/simple-icons/simple-icons/blob/develop/icons/debian.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [Internet Explorer](https://github.com/simple-icons/simple-icons/blob/develop/icons/internetexplorer.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icons provided by [Simple Icons](https://simpleicons.org/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [Adobe Flash](https://github.com/vscode-icons/vscode-icons/blob/master/icons/file_type_flash.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icon provided by [vscode-icons](https://github.com/vscode-icons/vscode-icons/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [QuickTime](https://www.flaticon.com/free-icon/quicktime_732104?utm_source=github.com&utm_medium=campaign&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [Chrome](https://www.flaticon.com/free-icon/chrome_732205?utm_source=github.com&utm_medium=campaign&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) and [Firefox](https://www.flaticon.com/free-icon/firefox_732023?utm_source=github.com&utm_medium=campaign&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icons provided by [Pixel Perfect](https://www.flaticon.com/authors/pixel-perfect?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) via [flaticon.com](https://www.flaticon.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [.NET](https://github.com/konpa/devicon/blob/master/icons/dot-net/dot-net-original.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [CoffeeScript](https://github.com/konpa/devicon/blob/master/icons/coffeescript/coffeescript-original.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [Git](https://github.com/konpa/devicon/blob/master/icons/git/git-plain.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors), [RedHat](https://github.com/konpa/devicon/blob/master/icons/redhat/redhat-plain.svg?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icons provided by [Devicon](http://konpa.github.io/devicon/)
|
||||||
|
* [Nintendo Switch](https://www.flaticon.com/free-icon/nintendo-switch_871377?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icon provided by [flaticon.com](https://www.flaticon.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [BitTorrent](http://www.icons101.com/icon/id_73504/setid_2388/Minimalist_Black_Icons__WIP_by_noshery/bittorrent?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icon provided by [noshery](http://www.icons101.com/artist/id_2388/noshery) from [icons101.com](http://www.icons101.com/?utm_source=github.com&utm_medium=campaign&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [GIMP](https://icons8.com/icon/39867/gimp), [PowerShell](https://icons8.com/icon/59499/powershell) icons provided by [Icons8 LLC](https://icons8.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [Sass](https://www.onlinewebfonts.com/icon/411905), [Globe](https://www.onlinewebfonts.com/icon/336552) icons provided by [oNline Web Fonts](http://www.onlinewebfonts.com?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* Classic set [Folder Icon](https://www.iconfinder.com/icons/173016/close_folder_icon) made by [Snip Master](https://www.iconfinder.com/snipicons) from [Iconfinder](https://www.iconfinder.com?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [GNU](https://commons.wikimedia.org/wiki/File:Gnu-head-30-years-anniversary.svg) icon from [Be..anyone](https://commons.wikimedia.org/wiki/User:Be..anyone) at [Wikimedia Commons](https://commons.wikimedia.org/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [Classic Windows](https://commons.wikimedia.org/wiki/File:Microsoft_Logo_Wingdings_Font.svg) icon from [Wdwdbot](https://commons.wikimedia.org/wiki/User:Wdwdbot) at [Wikimedia Commons](https://commons.wikimedia.org/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
* [Maven](https://www.onlinewebfonts.com/icon/161017?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors) icon provided by [OnlineWebFonts](https://www.onlinewebfonts.com/?utm_source=github.com&utm_medium=referral&utm_content=link&utm_campaign=dmhendricks%2Ffile-icon-vectors)
|
||||||
|
|
||||||
|
## Screenshot
|
||||||
|
|
||||||
|
![Icon Samples](https://dmhendricks.github.io/demo/file-icon-vectors/assets/images/screenshot.png "Sample Icons")
|
1
folder/view/index/icons/classic/3g2.svg
Normal file
After Width: | Height: | Size: 5.7 KiB |
1
folder/view/index/icons/classic/3ga.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M9 85.9l3.7-.4c.1.9.4 1.7 1 2.2.5.5 1.2.7 1.9.7.8 0 1.5-.3 2-.9.5-.6.8-1.4.8-2.4s-.3-1.7-.8-2.3c-.5-.6-1.2-.8-1.9-.8-.5 0-1.1.1-1.8.3l.4-3.1c1 0 1.8-.2 2.4-.7.5-.5.8-1.1.8-1.9 0-.7-.2-1.2-.6-1.6s-.9-.6-1.6-.6c-.7 0-1.2.2-1.7.7-.5.5-.8 1.1-.9 2l-3.6-.6c.2-1.2.6-2.2 1.1-2.9s1.2-1.3 2.1-1.7c.9-.4 1.9-.6 3-.6 1.9 0 3.4.6 4.6 1.8.9 1 1.4 2.1 1.4 3.3 0 1.7-1 3.1-2.9 4.2 1.2.2 2.1.8 2.8 1.6.7.8 1 1.9 1 3.1 0 1.7-.6 3.2-1.9 4.5-1.3 1.2-2.9 1.8-4.8 1.8-1.8 0-3.3-.5-4.5-1.6-1.1-1.1-1.8-2.4-2-4.1zm26-2v-3.4h8.8v7.9c-.9.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.7c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.5s2.2-2.8 3.9-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.9 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .7c-.3-1-.8-1.7-1.6-2.3-.8-.6-1.8-.8-2.9-.8-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.1 1.6 5.3 1.1 1.2 2.5 1.8 4.2 1.8.9 0 1.7-.2 2.6-.5.9-.3 1.6-.7 2.2-1.2v-2.5H35zm30.6 7.3h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
folder/view/index/icons/classic/3gp.svg
Normal file
After Width: | Height: | Size: 5.6 KiB |
1
folder/view/index/icons/classic/7z.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.98}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.88" x2="36" y2="101.125" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#efc402"/><stop offset=".038" stop-color="#f1c829"/><stop offset=".147" stop-color="#f4d264"/><stop offset=".258" stop-color="#f7dc8b"/><stop offset=".372" stop-color="#f9e5ac"/><stop offset=".488" stop-color="#fbecc7"/><stop offset=".606" stop-color="#fcf3dd"/><stop offset=".728" stop-color="#fef9ee"/><stop offset=".856" stop-color="#fffdf9"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill="url(#SVGID_1_)"/><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill-opacity="0" stroke="#ba9c02" stroke-width="2"/></g><path d="M20.6 75.9v-3.5h13v2.8c-1.1 1.1-2.2 2.6-3.3 4.6-1.1 2-2 4.1-2.5 6.3-.6 2.2-.9 4.2-.9 6h-3.7c.1-2.8.6-5.6 1.7-8.4 1.1-2.9 2.5-5.4 4.3-7.7h-8.6zm14.6 16v-3.6l10.5-12.9h-9.3V72H51v3.1L40.1 88.6h11.3V92H35.2z" fill="#a07802"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="44.942" y1="74.326" x2="58.348" y2="87.733" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#fff"/><stop offset=".234" stop-color="#fffefb"/><stop offset=".369" stop-color="#fefaf1"/><stop offset=".481" stop-color="#fdf5e4"/><stop offset=".579" stop-color="#fcf0d2"/><stop offset=".669" stop-color="#fae9bc"/><stop offset=".752" stop-color="#f9e2a2"/><stop offset=".831" stop-color="#f7da83"/><stop offset=".905" stop-color="#f4d15d"/><stop offset=".975" stop-color="#f1c827"/><stop offset="1" stop-color="#efc402"/></linearGradient><path d="M44.9.9l26.8 26.8H44.9V.9z" fill="url(#SVGID_2_)"/><path d="M44.9.9l26.8 26.8H44.9V.9z" fill-opacity="0" stroke="#ba9c02" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="33.617" y1="40.689" x2="33.617" y2="98.148" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#a47d03"/><stop offset=".533" stop-color="#debe00"/><stop offset=".639" stop-color="#cfad04"/><stop offset="1" stop-color="#a07802"/></linearGradient><path d="M38 15.8h-8.4v-5H38v5zm0 8.9h-8.4v5H38v-5zm0-20.8h-8.4v5H38v-5zm0 13.8h-8.4v5H38v-5zm0 13.9h-8.4v5H38v-5zm.7 24.6c0 2.8-2.3 5.1-5.1 5.1s-5.1-2.3-5.1-5.1v-.5l1.7-14.6c0-1.9 1.5-3.4 3.4-3.4 1.8 0 3.3 1.5 3.4 3.3l1.6 14.4c.1.4.1.6.1.8zm-1.6-.1c0-1.9-1.6-3.5-3.5-3.5s-3.5 1.6-3.5 3.5 1.6 3.5 3.5 3.5c2-.1 3.5-1.7 3.5-3.5z" opacity=".98" fill="url(#SVGID_3_)"/><path d="M32.5 41.6l-2.3-4.5v-2.3l2.3-2.2h2.2l2.3 2.2v2.3l-2.3 4.5h-2.2z" fill="#fff" opacity=".98"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/aa.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M36.7 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zM57 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3l7.8-19.9H49l8 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/aac.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M26.1 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H5.9l7.8-19.9H18l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm27.7 7.9h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3L34 71.3h4.3l8 19.9zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm22.5.6l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7 1.7-1.8 4-2.7 6.8-2.7 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.8-.9-1.5 0-2.7.5-3.6 1.6-1 .8-1.4 2.5-1.4 4.9 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.2-1.8 1.6-3.2z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/ac.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="63.461" x2="36.8" y2="30.461"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.3 53.7v9.4c0 .2-.2.4-.4.4H22.7c-.2 0-.4-.2-.4-.4v-.8c0-.2.2-.4.4-.4H24l14.6-14.6-15.2-15.2c-.1-.1-.1-.2-.1-.3v-1c0-.2.2-.4.4-.4h27.2c.2 0 .4.2.4.4v9.4c0 .2-.2.4-.4.4h-1.1c-.2 0-.4-.2-.4-.4 0-4-2.3-7.3-6.5-7.3H32l12.4 12.4c.1.1.1.4 0 .5L32.3 58H43c2.8 0 5.3-1.8 6.2-4.4.1-.2.2-.3.4-.3H51c.1 0 .3.2.3.4z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M36.5 91.9h-4.4l-1.8-4.6h-8l-1.7 4.6h-4.3l7.8-20h4.3l8.1 20zM29.1 84l-2.8-7.4-2.7 7.4h5.5zm22.4.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.5-4.3-2.5-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.8-.8-2.9-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
folder/view/index/icons/classic/accdb.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
folder/view/index/icons/classic/accdt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st3{fill:#fff}.st4{fill:#f2f2f2}</style><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#a03537" stroke-width="2"/><path class="st3" d="M17.5 91.1h-2.9l-1.1-2.9H8.2l-1.1 2.9H4.3l5.1-12.9h2.8l5.3 12.9zM12.6 86l-1.8-4.8L9 86h3.6zm14.7.3l2.6.8c-.4 1.4-1 2.5-2 3.1-.9.7-2.1 1-3.5 1-1.7 0-3.2-.6-4.3-1.8-1.1-1.2-1.7-2.8-1.7-4.8 0-2.1.6-3.8 1.7-5 1.1-1.2 2.6-1.8 4.4-1.8 1.6 0 2.9.5 3.9 1.4.6.6 1 1.3 1.3 2.4l-2.6.6c-.2-.7-.5-1.2-1-1.6S25 80 24.3 80c-1 0-1.8.3-2.4 1s-.9 1.8-.9 3.3c0 1.6.3 2.8.9 3.5.6.7 1.4 1 2.3 1 .7 0 1.3-.2 1.8-.7.7-.1 1.1-.8 1.3-1.8zm13.2 0l2.6.8c-.4 1.4-1 2.5-2 3.1-.9.7-2.1 1-3.5 1-1.7 0-3.2-.6-4.3-1.8-1.1-1.2-1.7-2.8-1.7-4.8 0-2.1.6-3.8 1.7-5 1.1-1.2 2.6-1.8 4.4-1.8 1.6 0 2.9.5 3.9 1.4.6.6 1 1.3 1.3 2.4l-2.6.6c-.2-.7-.5-1.2-1-1.6-.5-.4-1.1-.6-1.8-.6-1 0-1.8.3-2.4 1s-.9 1.8-.9 3.3c0 1.6.3 2.8.9 3.5.6.7 1.4 1 2.3 1 .7 0 1.3-.2 1.8-.7.7-.1 1.1-.8 1.3-1.8zm4.8-8.1h4.8c1.1 0 1.9.1 2.5.2.8.2 1.4.6 2 1.2.5.6 1 1.3 1.3 2.1.3.8.4 1.8.4 3 0 1.1-.1 2-.4 2.7-.3.9-.8 1.7-1.4 2.3-.5.4-1.1.8-1.9 1-.6.2-1.4.3-2.3.3h-5V78.2zm2.7 2.2v8.5h2c.7 0 1.3 0 1.6-.1.4-.1.8-.3 1.1-.5s.5-.7.7-1.2c.2-.6.3-1.4.3-2.4s-.1-1.8-.3-2.3c-.2-.5-.4-.9-.8-1.2-.3-.3-.7-.5-1.2-.6-.4-.1-1.1-.1-2.2-.1H48zm13.5 10.7V80.4h-3.9v-2.2H68v2.2h-3.9v10.7h-2.6z"/><path class="st4" d="M54 48.1c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="28.972" y1="47.222" x2="43.028" y2="61.278" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 47.8c0 2.2-6 3.9-13.5 3.9S22.5 50 22.5 47.8s6-3.9 13.5-3.9 13.5 1.7 13.5 3.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18" y1="45.9" x2="54" y2="45.9" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 48.3v11.2S22.5 64 36 64s18-4.5 18-4.5V48.3s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_3_)"/><path class="st4" d="M54 32.3c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="28.954" y1="63.004" x2="43.01" y2="77.06" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 31.9c0 2.2-6 3.9-13.5 3.9s-13.5-1.7-13.5-3.9S28.5 28 36 28c7.5.1 13.5 1.8 13.5 3.9z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18" y1="61.6" x2="54" y2="61.6" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 32.6v11.2s4.5 4.5 18 4.5 18-4.5 18-4.5V32.6s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_5_)"/><path class="st3" d="M54 16.6c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="28.972" y1="78.722" x2="43.028" y2="92.778" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 16.3c0 2.2-6 3.9-13.5 3.9s-13.5-1.7-13.5-3.9 6-3.9 13.5-3.9 13.5 1.7 13.5 3.9z" fill="url(#SVGID_6_)"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="18" y1="77.4" x2="54" y2="77.4" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 16.8V28s4.5 4.5 18 4.5S54 28 54 28V16.8s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_7_)"/><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_8_)"/><path d="M44.1 1l27.2 26.7H44.1V1z" fill-opacity="0" stroke="#a03537" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 4.7 KiB |
1
folder/view/index/icons/classic/ace.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.98}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.88" x2="36" y2="101.125" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#efc402"/><stop offset=".038" stop-color="#f1c829"/><stop offset=".147" stop-color="#f4d264"/><stop offset=".258" stop-color="#f7dc8b"/><stop offset=".372" stop-color="#f9e5ac"/><stop offset=".488" stop-color="#fbecc7"/><stop offset=".606" stop-color="#fcf3dd"/><stop offset=".728" stop-color="#fef9ee"/><stop offset=".856" stop-color="#fffdf9"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill="url(#SVGID_1_)"/><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill-opacity="0" stroke="#ba9c02" stroke-width="2"/></g><path d="M26.8 92.2h-4.4l-1.7-4.5h-8l-1.6 4.5H6.8l7.8-19.9h4.2l8 19.9zm-7.4-7.9l-2.7-7.4-2.7 7.4h5.4zm22.3.6l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8s-3.2 1.6-5.3 1.6c-2.6 0-4.8-.9-6.5-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7 1.7-1.8 4-2.7 6.7-2.7 2.4 0 4.4.7 5.9 2.2.9.9 1.6 2.1 2 3.7l-4 1c-.2-1-.7-1.8-1.5-2.4s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.5 1.6 1.1 0 2-.3 2.8-1 .9-.9 1.4-2 1.8-3.4zm7.3 7.3V72.3h14.8v3.4H53V80h10v3.4H53v5.4h11.1v3.4H49z" fill="#a07802"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="44.942" y1="74.326" x2="58.348" y2="87.733" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#fff"/><stop offset=".234" stop-color="#fffefb"/><stop offset=".369" stop-color="#fefaf1"/><stop offset=".481" stop-color="#fdf5e4"/><stop offset=".579" stop-color="#fcf0d2"/><stop offset=".669" stop-color="#fae9bc"/><stop offset=".752" stop-color="#f9e2a2"/><stop offset=".831" stop-color="#f7da83"/><stop offset=".905" stop-color="#f4d15d"/><stop offset=".975" stop-color="#f1c827"/><stop offset="1" stop-color="#efc402"/></linearGradient><path d="M44.9.9l26.8 26.8H44.9V.9z" fill="url(#SVGID_2_)"/><path d="M44.9.9l26.8 26.8H44.9V.9z" fill-opacity="0" stroke="#ba9c02" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="33.617" y1="40.689" x2="33.617" y2="98.148" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#a47d03"/><stop offset=".533" stop-color="#debe00"/><stop offset=".639" stop-color="#cfad04"/><stop offset="1" stop-color="#a07802"/></linearGradient><path d="M38 15.8h-8.4v-5H38v5zm0 8.9h-8.4v5H38v-5zm0-20.8h-8.4v5H38v-5zm0 13.8h-8.4v5H38v-5zm0 13.9h-8.4v5H38v-5zm.7 24.6c0 2.8-2.3 5.1-5.1 5.1s-5.1-2.3-5.1-5.1v-.5l1.7-14.6c0-1.9 1.5-3.4 3.4-3.4 1.8 0 3.3 1.5 3.4 3.3l1.6 14.4c.1.4.1.6.1.8zm-1.6-.1c0-1.9-1.6-3.5-3.5-3.5s-3.5 1.6-3.5 3.5 1.6 3.5 3.5 3.5c2-.1 3.5-1.7 3.5-3.5z" opacity=".98" fill="url(#SVGID_3_)"/><path d="M32.5 41.6l-2.3-4.5v-2.3l2.3-2.2h2.2l2.3 2.2v2.3l-2.3 4.5h-2.2z" opacity=".98" fill="#fff"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/adn.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st3{fill:#fff}.st4{fill:#f2f2f2}</style><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#a03537" stroke-width="2"/><path class="st3" d="M26.1 91.1h-4.4l-1.8-4.5h-8.1l-1.7 4.5H5.8l7.9-19.8H18l8.1 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6-12h7.4c1.7 0 3 .1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4H28V71.2zm4.1 3.4v13.1h3c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.2-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zm16.3 16.5V71.2h4l8.3 13.2V71.2h3.8V91h-4.1l-8.1-12.9V91h-3.9z"/><path class="st4" d="M54 48.1c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="28.972" y1="47.222" x2="43.028" y2="61.278" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 47.8c0 2.2-6 3.9-13.5 3.9S22.5 50 22.5 47.8s6-3.9 13.5-3.9 13.5 1.7 13.5 3.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18" y1="45.9" x2="54" y2="45.9" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 48.3v11.2S22.5 64 36 64s18-4.5 18-4.5V48.3s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_3_)"/><path class="st4" d="M54 32.3c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="28.954" y1="63.004" x2="43.01" y2="77.06" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 31.9c0 2.2-6 3.9-13.5 3.9s-13.5-1.7-13.5-3.9S28.5 28 36 28c7.5.1 13.5 1.8 13.5 3.9z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18" y1="61.6" x2="54" y2="61.6" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 32.6v11.2s4.5 4.5 18 4.5 18-4.5 18-4.5V32.6s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_5_)"/><path class="st3" d="M54 16.6c0 2.5-8.1 4.5-18 4.5s-18-2-18-4.5 8.1-4.5 18-4.5 18 2 18 4.5z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="28.972" y1="78.722" x2="43.028" y2="92.778" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M49.5 16.3c0 2.2-6 3.9-13.5 3.9s-13.5-1.7-13.5-3.9 6-3.9 13.5-3.9 13.5 1.7 13.5 3.9z" fill="url(#SVGID_6_)"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="18" y1="77.4" x2="54" y2="77.4" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M18 16.8V28s4.5 4.5 18 4.5S54 28 54 28V16.8s-2.2 3.9-18 4.2c-15.8.3-18-4.2-18-4.2z" fill="url(#SVGID_7_)"/><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#cf9fa0"/><stop offset="1" stop-color="#a03537"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_8_)"/><path d="M44.1 1l27.2 26.7H44.1V1z" fill-opacity="0" stroke="#a03537" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
folder/view/index/icons/classic/ai.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M43.3 91.1h-4.4l-1.8-4.5H29l-1.7 4.5H23l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9L33 75.9l-2.7 7.4h5.5zm9.5 7.9V71.2h4.1V91h-4.1z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#b)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
folder/view/index/icons/classic/aif.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M33.9 91.2h-4.4l-1.8-4.5h-8L18 91.2h-4.3l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.5 7.9V71.3H40v19.9h-4.1zm8 0V71.3h13.8v3.4H48v4.7h8.4v3.4H48v8.5h-4.1z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/aifc.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M23.7 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H3.5l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6 7.9V71.3h4.1v19.9h-4.1zm7.9 0V71.3h13.8v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4.1zm30-7.3l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8s-3.2 1.6-5.3 1.6c-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7 1.7-1.8 4-2.7 6.8-2.7 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.8-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.9 1.3-2 1.6-3.4z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/aiff.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M25.3 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H5.1l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9L15 75.9l-2.7 7.4h5.5zm9.5 7.9V71.3h4.1v19.9h-4.1zm8 0V71.3h13.8v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4.1zm17.1 0V71.3h13.8v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4.1z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/ait.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M33.9 91.1h-4.4l-1.8-4.5h-8.1L18 91.1h-4.3l7.9-19.8h4.3l8 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6 7.9V71.2h4V91h-4zm12.5 0V74.6h-6v-3.4h16v3.4h-6v16.5h-4z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#b)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
folder/view/index/icons/classic/amr.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M24.5 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H4.3l7.8-19.9h4.3l8.1 19.9zM17 83.3l-2.8-7.4-2.7 7.4H17zm9.6 7.9V71.3h6.1l3.6 13.6 3.6-13.6H46v19.9h-3.8V75.5l-4 15.7h-3.9l-4-15.7v15.7h-3.7zm23.5 0V71.3h8.5c2.2 0 3.7.2 4.7.5s1.8 1 2.3 1.9c.6.9.9 2 .9 3.1 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.8c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.2l2.5 3.9h-4.9l-2.9-4.3c-1-1.5-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.1-1.1-.2-2-.2h-.8v8.3h-4.2zm4-11.5h3c1.9 0 3.2-.1 3.6-.2s.9-.4 1.1-.8c.3-.4.4-.9.4-1.5 0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1H54v5z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/ani.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.005" x2="36.2" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#006b69"/><stop offset=".124" stop-color="#00807f"/><stop offset=".262" stop-color="#009393"/><stop offset=".41" stop-color="#00a3a3"/><stop offset=".571" stop-color="#00b0af"/><stop offset=".752" stop-color="#08b8b7"/><stop offset="1" stop-color="#14bbbb"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill-opacity="0" stroke="#006e6c" stroke-width="2"/></g><path d="M32.2 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5h-4.3L20 71.2h4.3l7.9 19.9zm-7.4-7.9L22 75.9l-2.7 7.4h5.5zm9.6 7.9V71.2h3.9l8.2 13.2V71.2h3.7V91h-4l-8.1-12.9V91h-3.7zm20 0V71.2h4V91h-4z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.458" y1="60.1" x2="36.458" y2="18"><stop offset=".005" stop-color="#008281"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M51.4 18H21.5c-1.5 0-2.6 1.2-2.6 2.6 0 1.5 1.2 2.6 2.6 2.6h.1v2.6c0 5.5 3.3 10.4 8.5 12.4.3.1.5.4.5.7v.2c0 .3-.2.6-.5.7-5.1 2-8.5 6.9-8.5 12.4v2.6h-.1c-1.5 0-2.6 1.2-2.6 2.6 0 1.5 1.2 2.6 2.6 2.6h29.8c1.5 0 2.6-1.2 2.6-2.6 0-1.5-1.2-2.6-2.6-2.6h-.1v-2.6c0-5.5-3.3-10.4-8.5-12.4-.3-.1-.5-.4-.5-.7v-.2c0-.3.2-.6.5-.7 5.1-2 8.5-6.9 8.5-12.4v-2.6h.1c1.5 0 2.6-1.2 2.6-2.6.1-1.4-1.1-2.6-2.5-2.6zm-3.6 7.9c0 4-2.5 7.7-6.2 9.1-1.6.6-2.7 2.2-2.7 3.9v.2c0 1.7 1.1 3.3 2.7 3.9 3.8 1.5 6.2 5.1 6.2 9.1v2.6H25.1v-2.6c0-4 2.5-7.7 6.2-9.1 1.6-.6 2.7-2.2 2.7-3.9v-.2c0-1.7-1.1-3.3-2.7-3.9a9.74 9.74 0 0 1-6.2-9.1v-2.6h22.6v2.6zm-19.1 4.4c-.2-.4-.2-.8.2-1.1.1-.1.3-.1.4-.1h14.1c.4 0 .8.3.8.8 0 .2 0 .3-.1.4-.9 1.2-2 2.1-3.4 2.7-1.5.6-2.7 1.6-3.4 3-.3.5-.9.7-1.4.4-.2-.1-.3-.2-.4-.4-.7-1.4-1.9-2.5-3.4-3-1.3-.5-2.5-1.5-3.4-2.7zm10 15.9c.7.7 1.7 1.1 2.7 1.1 1.9 0 3.5 1.3 3.9 3.1v.2c.1.4.1.8.1 1.2 0 .5-.3.9-.8.9H28.2c-.5 0-.9-.4-.9-.9 0-.4.1-.9.2-1.3v-.2c.5-1.8 2.1-3 3.9-3 1 0 2-.4 2.7-1 .5-.5 1-1.1 1.3-1.7.2-.4.7-.6 1.1-.5.3.1.6.3.7.6.5.5.9 1 1.5 1.5z" fill="url(#SVGID_2_)"/><g class="st0"><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.214" y1="74.229" x2="58.667" y2="87.682" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d6ede8"/><stop offset=".297" stop-color="#d3ebe6"/><stop offset=".44" stop-color="#c7e3df"/><stop offset=".551" stop-color="#b7d8d5"/><stop offset=".645" stop-color="#a0cbc9"/><stop offset=".729" stop-color="#84bab9"/><stop offset=".804" stop-color="#62a7a7"/><stop offset=".874" stop-color="#349394"/><stop offset=".938" stop-color="#007f7f"/><stop offset=".998" stop-color="#006b6a"/><stop offset="1" stop-color="#006b69"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#006e6c" stroke-width="2" stroke-linejoin="bevel"/></g></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/apk.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><path d="M26.1 91.1h-4.4l-1.8-4.5h-8l-1.7 4.5H6l7.8-19.8h4.3l8 19.8zm-7.5-7.8l-2.8-7.4-2.7 7.4h5.5zm9.6 7.8V71.3h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1v-.1zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1zM47 91.1V71.3h4v8.8l8.2-8.8h5.4L57.1 79l8 12.1h-5.2l-5.5-9.3-3.4 3.3v6h-4z" fill="#4c6c7b"/><g opacity=".9"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.75" y1="64.1" x2="35.75" y2="14.75"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M23.4 51.7c0 1.2.8 2.1 2.1 2.1h2.1V61c0 1.6 1.4 3.1 3.1 3.1 1.6 0 3.1-1.4 3.1-3.1v-7.2h4.1V61c0 1.6 1.4 3.1 3.1 3.1s3.1-1.4 3.1-3.1v-7.2H46c1.2 0 2.1-.8 2.1-2.1V31.1H23.4v20.6zm-5.1-20.6c-1.6 0-3.1 1.4-3.1 3.1v14.4c0 1.6 1.4 3.1 3.1 3.1 1.6 0 3.1-1.4 3.1-3.1V34.2c0-1.7-1.5-3.1-3.1-3.1zm34.9 0c-1.6 0-3.1 1.4-3.1 3.1v14.4c0 1.6 1.4 3.1 3.1 3.1s3.1-1.4 3.1-3.1V34.2c0-1.7-1.4-3.1-3.1-3.1zM42.9 19.2l2.7-2.7c.4-.4.4-1 0-1.4s-1-.4-1.4 0l-3.1 3.1c-1.4-1-3.3-1.4-5.3-1.4s-3.9.4-5.6 1.2l-2.9-3.1c-.4-.2-1.2-.2-1.6 0-.2.4-.2 1.2 0 1.6l2.7 2.7c-2.9 2.3-4.9 5.8-4.9 9.9h24.7c-.1-4.2-2.2-7.9-5.3-9.9zm-11.3 5.7h-2.1v-2.1h2.1v2.1zm10.3 0h-2.1v-2.1h2.1v2.1z" fill="url(#b)"/></g><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.036" y1="25.814" x2="58.536" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/app.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5H8l7.8-19.8H20l8 19.8zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm9.5 7.9V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1zm14.5 16.5V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6H55c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="34.962" y1="37.847" x2="34.962" y2="88.47" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M55.1 36.3c-.1-1-.3-1.9-.6-2.9l4.7-2.7-5-8.6-4.7 2.7c-1.3-1.4-2.9-2.6-4.6-3.6l1.4-5.1-9.7-2.7-1.4 5.1c-1 0-1.9 0-2.9.1s-1.9.3-2.9.6l-2.7-4.7-8.7 4.9 2.7 4.7c-1.4 1.4-2.6 2.9-3.6 4.6l-5.2-1.4L9.4 37l5.2 1.4c0 1 0 1.9.2 2.9.1 1 .3 1.9.6 2.9l-4.7 2.7 5 8.6 4.7-2.7c1.3 1.4 2.9 2.6 4.6 3.6l-1.4 5.1 9.7 2.7 1.4-5.1c1 0 1.9 0 2.9-.1s1.9-.3 2.9-.6l2.7 4.7 8.7-4.9-2.7-4.7c1.4-1.3 2.6-2.9 3.6-4.6l5.2 1.4 2.7-9.6-5.2-1.4c-.2-1-.2-2-.4-3zM36.1 47c-4.5.6-8.7-2.7-9.3-7.1-.6-4.5 2.7-8.6 7.2-9.2 4.5-.6 8.7 2.7 9.3 7.1.5 4.5-2.7 8.6-7.2 9.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
folder/view/index/icons/classic/applescript.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="74.231" x2="36.632" y2="32.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="74.606" x2="36.632" y2="31.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.7 32.2H26.9c-3.5 0-6.5 2.9-6.5 6.5v29.1H14c0 3.5 2.9 6.5 6.5 6.5h25.9c3.5 0 6.5-2.9 6.5-6.5V41.9h6.5v-3.2c-.2-3.6-3.1-6.5-6.7-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V38.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 38.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" opacity=".9" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.584" y1="63.736" x2="36.584" y2="46.096"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33 63.4c-.3-.2-.7-.5-.9-.8-.3-.3-.5-.7-.8-1.1-.6-.8-1-1.7-1.3-2.7-.4-1.1-.5-2.2-.5-3.2 0-1.2.2-2.2.7-3 .4-.7.9-1.2 1.5-1.6.6-.4 1.4-.6 2.1-.6.3 0 .5 0 .8.1.2.1.5.2.8.3.4.2.6.2.7.3.2.1.4.1.6.1.1 0 .3 0 .5-.1.1 0 .3-.1.6-.2s.5-.2.7-.3c.3-.1.5-.2.8-.2.3 0 .6-.1.8 0 .5 0 1 .1 1.4.3.7.3 1.4.8 1.8 1.4-.2.1-.4.3-.5.4-.4.3-.7.7-.9 1.1-.3.6-.5 1.2-.5 1.9 0 .8.2 1.5.6 2.1.3.4.7.8 1.1 1.1.2.2.4.3.6.3-.1.3-.2.5-.3.8-.3.6-.6 1.2-.9 1.7-.3.5-.6.8-.8 1-.3.4-.6.6-.9.8-.3.2-.7.3-1.1.3-.3 0-.5 0-.8-.1-.2-.1-.4-.1-.6-.2-.2-.1-.4-.2-.7-.2-.1-.1-.4-.1-.7-.1-.3 0-.6 0-.9.1-.2.1-.4.1-.7.2-.3.1-.5.2-.6.2-.2.1-.5.1-.7.1-.3.1-.7 0-1-.2zm5-13.6c-.5.2-1 .4-1.4.3-.1-.5 0-1 .2-1.5s.4-.9.7-1.2c.3-.4.7-.7 1.2-.9.5-.2.9-.4 1.4-.4.1.5 0 1-.2 1.5s-.4.9-.7 1.3c-.4.4-.8.7-1.2.9z" opacity=".9" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#e)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/asax.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm30 5.1h-3.5l-1.4-3.6h-6.4l-1.3 3.6h-3.4L42 74.1h3.4l6.4 15.7zm-6-6.2l-2.2-5.8-2.1 5.8h4.3zm6.1 6.2l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/asc.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M27.3 89.8h-4.4l-1.8-4.6h-8l-1.7 4.6H7.2l7.8-20h4.3l8 20zm-7.5-7.9L17 74.5l-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4s1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2s-1.5 1.7-2.7 2.2-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.8-1.2-.9-2-2.6-2.3-4.8zm32.5-.9l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7s-2.6-4.3-2.6-7.5c0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.6 1.6c1.1 0 2-.3 2.8-1s1.2-1.7 1.5-3.2z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.0 KiB |
1
folder/view/index/icons/classic/ascx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm25.8-.7l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.9 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.6 1.4-2.8zm4.3 5.8l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/asf.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
folder/view/index/icons/classic/ash.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M27.9 91.9h-3.8L22.6 88h-6.9l-1.4 3.9h-3.7l6.7-17.2H21l6.9 17.2zm-6.4-6.8l-2.4-6.4-2.3 6.4h4.7zm7.4 1.2l3.4-.3c.2 1.1.6 2 1.2 2.5s1.5.8 2.5.8c1.1 0 2-.2 2.5-.7s.8-1 .8-1.7c0-.4-.1-.8-.4-1s-.7-.5-1.2-.7c-.4-.1-1.3-.4-2.8-.8-1.9-.5-3.2-1-3.9-1.7-1.1-.9-1.6-2.1-1.6-3.5 0-.9.2-1.7.7-2.5s1.2-1.3 2.1-1.7 2.1-.6 3.4-.6c2.2 0 3.8.5 4.9 1.4s1.7 2.2 1.7 3.8l-3.5.2c-.1-.9-.5-1.5-1-1.9s-1.2-.6-2.2-.6c-1 0-1.8.2-2.4.6-.4.3-.6.6-.6 1.1 0 .4.2.8.5 1 .4.4 1.5.8 3.2 1.1s2.9.8 3.7 1.2 1.4 1 1.9 1.7.7 1.7.7 2.7c0 1-.3 1.9-.8 2.8s-1.3 1.5-2.3 1.9-2.2.6-3.7.6c-2.2 0-3.8-.5-5-1.5s-1.6-2.3-1.8-4.2zm16.9 5.6V74.7h3.5v6.8H56v-6.8h3.5v17.2H56v-7.5h-6.8v7.5h-3.4z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
folder/view/index/icons/classic/ashx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h3.2v6.2h6.3v-6.2h3.2v15.7h-3.2v-6.9h-6.3v6.9h-3.2zm14.5 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/asm.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" stroke="#7191a1" stroke-width="2" fill="none"/><path d="M25 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5H5l7.8-19.8H17l8 19.8zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.4-1-2.2-2.7-2.4-4.9zm19.5 6.5V71.2h6l3.6 13.5L59 71.2h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.7z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="33.5" y1="25" x2="33.5" y2="21"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#b)" d="M15 21h37v4H15z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="40.5" y1="34" x2="40.5" y2="30"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#c)" d="M22 30h37v4H22z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="33.5" y1="43" x2="33.5" y2="39"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#d)" d="M15 39h37v4H15z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="40.5" y1="52" x2="40.5" y2="48"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#e)" d="M22 48h37v4H22z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="31.5" y1="61" x2="31.5" y2="57"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#f)" d="M13 57h37v4H13z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#g)"/><path d="M45.1 1L72 27.7H45.1V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/asmx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M19.9 89.8h-3.5L15 86.2H8.6l-1.3 3.6H3.9l6.2-15.7h3.4l6.4 15.7zM14 83.6l-2.2-5.8-2.1 5.8H14zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h4.8l2.9 10.7L47 74.1h4.8v15.7h-3V77.4l-3.2 12.4h-3.1l-3.1-12.4v12.4h-3zm16.9 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/asp.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 89.8h-4.4l-1.8-4.5h-8l-1.7 4.5H7.9L15.7 70H20l8 19.8zM20.6 82l-2.8-7.4-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.3-4.9zm19.7 6.4V70h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1s-1 1.5-1.7 2-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H53v7.5h-4.1zm4-16.5V79h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8s-1-.8-1.6-.9c-.5-.1-1.5-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/aspx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M21.9 89.8h-3.5L17 86.2h-6.4l-1.3 3.6H5.9l6.2-15.7h3.4l6.4 15.7zM16 83.6l-2.2-5.8-2.1 5.8H16zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.5.4-1.1.6-1.7.7-.8.2-1.9.2-3.3.2h-2.1v5.9h-3.2zm3.2-13.1v4.5h1.8c1.3 0 2.1-.1 2.5-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.2-.1-2.3-.1h-1.6zm10 13.1l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7L61 81.7l5.4 8.1h-3.9L59 84.4l-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/asx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M27.6 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H7.4l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm8.6 1.4l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.6 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.6 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.9-1.7s-1.9-2.7-2.2-4.9zm17.8 6.5l6.9-10.4-6.2-9.5h4.7l4 6.4 4-6.4h4.7L58.3 81l6.9 10.2h-4.9l-4.5-6.9-4.5 6.9h-4.8z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
folder/view/index/icons/classic/au.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M36.2 91.2h-4.4L30 86.6h-8l-1.7 4.5H16l7.8-19.9h4.3l8.1 20zm-7.5-7.9L26 75.9l-2.7 7.4h5.4zm9.6-12h4.1V82c0 1.7 0 2.8.2 3.3.2.8.6 1.5 1.2 2 .7.5 1.5.7 2.7.7 1.2 0 2-.2 2.6-.7.6-.5.9-1 1.1-1.7.1-.7.2-1.8.2-3.4v-11h4.1v10.4c0 2.4-.1 4.1-.3 5.1-.2 1-.6 1.8-1.2 2.5s-1.4 1.2-2.4 1.6c-1 .4-2.3.6-3.9.6-1.9 0-3.4-.2-4.4-.7-1-.4-1.8-1-2.4-1.7s-1-1.4-1.1-2.2c-.3-1.1-.4-2.8-.4-5V71.3z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/aup.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="97.1" x2="36.15" y2="-1.1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><linearGradient id="surface1_1_" gradientUnits="userSpaceOnUse" x1="36.9" y1="22.602" x2="36.9" y2="61.552"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path id="surface1" d="M36.9 22.6c-4.4 0-8.4 1.2-11.4 3.3-3 2.1-5 5.3-5 9v5.3c-2.4 1.8-4.1 5.7-4.1 10.1 0 6.1 3.3 11.3 7.2 11.3 1 0 2-.4 3.1-1V40c-.6-.4-1.3-.7-2-.9v-4.2c0-2.1 1.1-4.1 3.3-5.6 2.2-1.6 5.4-2.6 9-2.6 3.6 0 6.8 1 9 2.6s3.3 3.5 3.3 5.6v4.2c-.7.2-1.4.5-2 .9v20.3c1 .6 2 1 3.1 1 3.9 0 7.2-5.1 7.2-11.3 0-4.3-1.7-8.1-4.1-9.9v-5.3c0-3.6-2-6.8-5-9-3.2-2-7.2-3.2-11.6-3.2zm0 18l-4.5 8.8-2.7-3.7-1 1.4V54l1-1.2 3.5 4.5 3.7-7.6 3.7 7.6 3.5-4.5 1 1.2v-6.8l-1-1.4-2.7 3.7-4.5-8.9z" fill="url(#surface1_1_)"/><path d="M27.1 91.2h-4.4l-1.8-4.5h-8l-1.7 4.5H6.9l7.8-19.9H19l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6-12h4.1V82c0 1.7.1 2.8.2 3.3.2.8.6 1.5 1.2 2 .7.5 1.5.7 2.7.7s2-.2 2.6-.7.9-1 1.1-1.7c.1-.7.2-1.8.2-3.4v-11h4.1v10.4c0 2.4-.1 4.1-.3 5.1s-.6 1.8-1.2 2.5-1.4 1.2-2.4 1.6-2.3.6-3.9.6c-1.9 0-3.4-.2-4.4-.7-1-.4-1.8-1-2.4-1.7s-1-1.4-1.1-2.2c-.3-1.1-.4-2.8-.4-5l-.1-10.5zm20.3 19.9V71.3H56c2.5 0 4.1.1 4.8.3 1.2.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.6v5.6h2.2c1.6 0 2.7-.1 3.2-.3s1-.5 1.3-1c.3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.347" y1="12.751" x2="50.809" y2="21.184" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/avi.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style/><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="101" x2="36.2" y2="3.005" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#e2cde4"/><stop offset=".17" stop-color="#e0cae2"/><stop offset=".313" stop-color="#dbc0dd"/><stop offset=".447" stop-color="#d2b1d4"/><stop offset=".575" stop-color="#c79dc7"/><stop offset=".698" stop-color="#ba84b9"/><stop offset=".819" stop-color="#ab68a9"/><stop offset=".934" stop-color="#9c4598"/><stop offset="1" stop-color="#932a8e"/></linearGradient><path d="M45.2 1l27 26.7V99H.2V1h45z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27 26.7V99H.2V1h45z" fill-opacity="0" stroke="#882383" stroke-width="2"/><path d="M33.5 91.1h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3l7.8-19.8h4.3l8.1 19.8zM26 83.2l-2.8-7.4-2.7 7.4H26zm12.7 7.9l-7.2-19.8h4.4L41 85.9l4.9-14.7h4.3L43 91.1h-4.3zm13.4 0V71.2h4V91h-4z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.2" y1="50.023" x2="18.2" y2="50.023" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#963491"/><stop offset="1" stop-color="#70136b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.511" y1="51.716" x2="65.211" y2="51.716" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#963491"/><stop offset="1" stop-color="#70136b"/></linearGradient><path d="M64.3 55.5c-1.7-.2-3.4-.3-5.1-.3-7.3-.1-13.3 1.6-18.8 3.7S29.6 63.6 23.3 64c-3.4.2-7.3-.6-8.5-2.4-.8-1.3-.8-3.5-1-5.7-.6-5.7-1.6-11.7-2.4-17.3.8-.9 2.1-1.3 3.4-1.7.4 1.1.2 2.7.6 3.8 7.1.7 13.6-.4 20-1.5 6.3-1.1 12.4-2.2 19.4-2.6 3.4-.2 6.9-.2 10.3 0m-9.9 15.3c.5-.2 1.1-.3 1.9-.2.2-3.7.3-7.3.3-11.2-6.2.2-11.9.9-17 2.2.2 4 .4 7.8.3 12 4-1.1 7.7-2.5 12.6-2.7m2-12.1h1.1c.4-.4.2-1.2.2-1.9-1.5-.6-1.8 1-1.3 1.9zm3.9-.2h1.5V38h-1.3c0 .7-.4.9-.2 1.7zm4 0c.5-.1.8 0 1.1.2.4-.3.2-1.2.2-1.9h-1.3v1.7zm-11.5.3h.9c.4-.3.2-1.2.2-1.9-1.4-.4-1.6 1.2-1.1 1.9zm-4 .4c.7.2.8-.3 1.5-.2v-1.7c-1.5-.4-1.7.6-1.5 1.9zm-3.6-1.1c0 .6-.1 1.4.2 1.7.5.1.5-.4 1.1-.2-.2-.6.5-2-.4-1.9-.1.4-.8.1-.9.4zm-31.5.8c.4-.1 1.1.6 1.3 0-.5 0-.1-.8-.2-1.1-.7.2-1.3.3-1.1 1.1zm28.3-.4c-.3.3.2 1.1 0 1.9.6.2.6-.3 1.1-.2-.2-.6.5-2-.4-1.9-.1.3-.4.2-.7.2zm-3.5 2.8c.5-.1.9-.2 1.3-.4.2-.8-.4-.9-.2-1.7h-.9c-.3.3-.1 1.3-.2 2.1zm26.9-1.8c-2.1-.1-3.3-.2-5.5-.2-.5 3.4 0 7.8-.5 11.2 2.4 0 3.6.1 5.8.3M33.4 41.6c.5.2.1 1.2.2 1.7.5-.1 1.1-.2 1.5-.4.6-1.9-.9-2.4-1.7-1.3zm-4.7.6v1.9c.9.2 1.2-.2 1.9-.2-.1-.7.2-1.7-.2-2.1-.5.2-1.3.1-1.7.4zm-5.3.6c.3.5 0 1.6.4 2.1.7.1.8-.4 1.5-.2-.1-.7-.3-1.2-.2-2.1-.8-.2-.9.3-1.7.2zm-7.5 2H17c.2-.9-.4-1.2-.2-2.1-.4.1-1.2-.3-1.3.2.6.2-.1 1.7.4 1.9zm3.4 1c.1 4.1.9 9.3 1.4 13.7 8 .1 13.1-2.7 19.2-4.5-.5-3.9.1-8.7-.7-12.2-6.2 1.6-12.1 3.2-19.9 3zm.5-.8h1.1c.4-.5-.2-1.2 0-2.1h-1.5c.1.7.1 1.6.4 2.1zm-5.4 7.8c.2 0 .3.2.4.4-.4-.7-.7.5-.2.6.1-.2 0-.4.2-.4.3.5-.8.7-.2.8.7-.5 1.3-1.2 2.4-1.5-.1 1.5.4 2.4.4 3.8-.7.5-1.7.7-1.9 1.7 1.2.7 2.5 1.2 4.2 1.3-.7-4.9-1.1-8.8-1.6-13.7-2.2.3-4-.8-5.1-.9.9.8.6 2.5.8 3.6 0-.2 0-.4.2-.4-.1.7.1 1.7-.2 2.1.7.3.5-.2.4.9m44.6 3.2h1.1c.3-.3.2-1.1.2-1.7h-1.3v1.7zm-4-1.4v1.3c.4.4.7-.2 1.5 0v-1.5c-.6 0-1.2 0-1.5.2zm7.6 1.4h1.3v-1.5h-1.3c.1.5 0 1 0 1.5zm-11-1v1.3h1.1c.3-.3.4-1.7-.2-1.7-.1.4-.8.1-.9.4zm-3.6.4c.1.6-.3 1.7.4 1.7 0-.3.5-.2.9-.2-.2-.5.4-1.8-.4-1.7-.1.3-.6.2-.9.2zm-3.4 1v1.5c.7.2.6-.4 1.3-.2-.2-.5.4-1.8-.4-1.7-.1.3-.8.2-.9.4zM15 57c.7-.5 1.3-1.7.2-2.3-.7.4-.8 1.6-.2 2.3zm26.1-1.3c-.1.7.4.8.2 1.5.9 0 1.2-.6 1.1-1.7-.4-.5-.8.1-1.3.2zm-3 2.7c1 0 1.2-.8 1.1-1.9h-.9c-.3.4-.1 1.3-.2 1.9zm-3.6-.4v1.7c.6-.1 1.3-.2 1.5-.8-.6 0 .3-1.6-.6-1.3 0 .4-.7.1-.9.4zM16 60.8c-.4-.7-.2-2-1.3-1.9.2.7.2 2.7 1.3 1.9zm13.8-.9c.5 0 .1.9.2 1.3.8.1 1.2-.2 1.7-.4v-1.7c-.9-.1-1.6.1-1.9.8zm-4.7.6c0 .8-.1 1.7.4 1.9 0-.5.8-.1 1.1-.2.3-.3-.2-1.1 0-1.9-.7-.2-1 .1-1.5.2zM19 62.3v-1.7c-.5 0-.6-.4-1.3-.2-.1 1.1 0 2.1 1.3 1.9zm2.5.2h1.3c.2-.9-.3-1.1-.2-1.9h-1.3c-.1.9.2 1.2.2 1.9z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="45.269" y1="74.206" x2="58.769" y2="87.706" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f9eff6"/><stop offset=".378" stop-color="#f8edf5"/><stop offset=".515" stop-color="#f3e6f1"/><stop offset=".612" stop-color="#ecdbeb"/><stop offset=".69" stop-color="#e3cce2"/><stop offset=".757" stop-color="#d7b8d7"/><stop offset=".817" stop-color="#caa1c9"/><stop offset=".871" stop-color="#bc88bb"/><stop offset=".921" stop-color="#ae6cab"/><stop offset=".965" stop-color="#9f4d9b"/><stop offset="1" stop-color="#932a8e"/></linearGradient><path d="M45.2 1l27 26.7h-27V1z" fill="url(#SVGID_4_)"/><path d="M45.2 1l27 26.7h-27V1z" fill-opacity="0" stroke="#882383" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 4.6 KiB |
1
folder/view/index/icons/classic/axd.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M26.2 89.8h-4.4L20 85.3h-8.1l-1.7 4.6H5.9l7.9-20h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm7.7 7.9l6.9-10.5-6.3-9.5h4.8l4.1 6.4 4-6.4h4.7l-6.3 9.7 6.9 10.3h-4.9l-4.5-6.9-4.5 6.9h-4.9zm20.9-20h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8.8.9 1.5 2 1.9 3.2.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4h-7.7V69.8zm4.1 3.4v13.3h3.1c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.4-.2h-1.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/aze.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.953" x2="36" y2="100.95" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28.6 91.1h-4.3l-1.7-4.4h-7.8l-1.6 4.4H9l7.6-19.3h4.2l7.8 19.3zm-7.3-7.6l-2.7-7.2-2.6 7.2h5.3zm7.7 7.6v-3.5l10.3-12.5h-9.1v-3.3h14.3v3l-10.7 13h11.1v3.3H29zm18.3 0V71.8h14.5v3.3H51.3v4.3h9.8v3.3h-9.8V88h10.9v3.3H47.3z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19.103" y1="40.285" x2="55" y2="40.285"><stop offset="0" stop-color="#ffce85"/><stop offset=".137" stop-color="#ffca7c"/><stop offset=".365" stop-color="#ffc062"/><stop offset=".656" stop-color="#ffaf39"/><stop offset=".994" stop-color="#ff9800"/></linearGradient><path d="M43 62.6c9.9-8.8 1.4-20.1-1.3-21.3.3 1.4.2 3.7-1.1 5-.7-3.4-3.3-7.7-7.1-9.1.6 4.8-2.3 8.3-3.4 10-1 1.6-6.8 9.7-.9 15.4-14-4.4-10.6-18.5-6.4-24.7C27 31.4 32 26.1 30.9 18c6.8 2.4 11.5 9.6 12.7 15.2 2.3-2.2 2.6-6.1 2-8.3 4.8 2 19.8 28.9-2.6 37.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.068" y1="74.155" x2="58.568" y2="87.655" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
folder/view/index/icons/classic/bak.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.037" y1="74.187" x2="58.537" y2="87.687" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M8.4 71.8h8c1.6 0 2.8.1 3.5.2s1.5.4 2.1.8 1.1 1 1.5 1.7.6 1.5.6 2.3c0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.8c1.2.4 2.2 1 2.8 1.8s1 1.9 1 3c0 .9-.2 1.8-.6 2.7s-1 1.5-1.7 2.1c-.7.5-1.6.8-2.7 1-.7.1-2.3.1-4.9.1H8.4V71.8zm4 3.4v4.6h2.7c1.6 0 2.6 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.6c0-.6-.2-1.1-.5-1.5s-.9-.6-1.5-.7c-.4 0-1.6-.1-3.5-.1h-2.3zm0 7.9v5.4h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.6-.2-1.7-.3-3.6-.3h-3.3zm34.2 8.8h-4.4l-1.8-4.6h-8l-1.7 4.6h-4.3l7.8-20h4.3l8.1 20zM39.2 84l-2.8-7.4-2.7 7.4h5.5zm9.6 7.9v-20h4v8.9l8.2-8.9h5.4L59 79.6l8 12.2h-5.2l-5.5-9.4-3.3 3.3v6.1h-4.2z" fill="#4c6c7b"/><g opacity=".85"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="27.2" y1="52.571" x2="27.2" y2="76" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M15.5 24v23.4h8.8V32.8h14.6V24H15.5z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="41.85" y1="35" x2="41.85" y2="64.3" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M27.2 35.7V65h29.3V35.7H27.2z" fill="url(#d)"/></g></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
folder/view/index/icons/classic/bash.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M6.4 76.1h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.8 2.2 1.4s.8 1.5.8 2.4c0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.7-2.1.7-.5.1-1.8.1-3.8.1H6.4V76.1zm3.2 2.7v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.3 1.3-.6.3-.3.5-.7.5-1.2s-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.6-.3 0-1.2-.1-2.7-.1H9.6zm0 6.2v4.2h2.9c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.2-1.4-.2-2.8-.2H9.6zm26.9 6.9H33l-1.4-3.6h-6.3L24 91.9h-3.4l6.1-15.7h3.4l6.4 15.7zm-5.8-6.2l-2.2-5.8-2.1 5.8h4.3zm6.7 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3s1.3.7 2.3.7c1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.2-.3-.6-.5-1.1-.7-.4-.1-1.2-.4-2.5-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6.9-.4 1.9-.5 3.1-.5 2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.4-.4-1.1-.5-2-.5-.9 0-1.6.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 2.9 1.1s2.7.7 3.4 1.1c.7.4 1.3.9 1.7 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.4.6-2 0-3.5-.5-4.6-1.4-1.1-1-1.7-2.4-1.9-4.1zm15.5 5.1V76.1h3.2v6.2h6.2v-6.2h3.2v15.7h-3.2V85h-6.2v6.9h-3.2z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
folder/view/index/icons/classic/bat.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M10.1 71.2h8c1.6 0 2.8.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7s.6 1.5.6 2.3c0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8.7.8 1 1.8 1 3 0 .9-.2 1.8-.6 2.6s-1 1.5-1.7 2-1.6.8-2.7.9c-.7.1-2.3.1-4.9.1H10V71.2zm4.1 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.5-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3zm34.1 8.7h-4.4l-1.7-4.5h-8l-1.6 4.5h-4.3L36 71.2h4.3l8 19.9zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm11.9 7.9V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
folder/view/index/icons/classic/bin.svg
Normal file
After Width: | Height: | Size: 7.6 KiB |
1
folder/view/index/icons/classic/blank.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="1" x2="36" y2="99" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.068" y1="72.204" x2="58.568" y2="85.705" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
folder/view/index/icons/classic/bmp.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.005" x2="36.2" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#006b69"/><stop offset=".124" stop-color="#00807f"/><stop offset=".262" stop-color="#009393"/><stop offset=".41" stop-color="#00a3a3"/><stop offset=".571" stop-color="#00b0af"/><stop offset=".752" stop-color="#08b8b7"/><stop offset="1" stop-color="#14bbbb"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill-opacity="0" stroke="#006e6c" stroke-width="2"/></g><path d="M7.5 71.2h8c1.6 0 2.8.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8s1 1.8 1 3c0 .9-.2 1.8-.6 2.6s-1 1.5-1.7 2-1.6.8-2.7.9c-.7.1-2.3.1-4.9.1H7.5V71.2zm4 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.5-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3zm16.1 8.7V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6zm23.3 0V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H55v7.5h-4.1zm4-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.214" y1="74.229" x2="58.667" y2="87.682" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d6ede8"/><stop offset=".297" stop-color="#d3ebe6"/><stop offset=".44" stop-color="#c7e3df"/><stop offset=".551" stop-color="#b7d8d5"/><stop offset=".645" stop-color="#a0cbc9"/><stop offset=".729" stop-color="#84bab9"/><stop offset=".804" stop-color="#62a7a7"/><stop offset=".874" stop-color="#349394"/><stop offset=".938" stop-color="#007f7f"/><stop offset=".998" stop-color="#006b6a"/><stop offset="1" stop-color="#006b69"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#SVGID_2_)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#006e6c" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.25" y1="37.353" x2="36.25" y2="85.161" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#008281"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M62.7 56.8c-1.6-.8-4.6-6.6-9.2-7-4-.3-9.1-1.8-11.9-2-3.5-5.8-9.5-15-14.5-19.9l13.8.7C37.2 19.8 27.7 23 27.7 23l6.4-5.3c-8.2-3.3-11.6 4.7-11.6 4.7-8.5-4.7-12.9 3.3-12.9 3.3l8.8.6C8.4 29.1 11.2 39 11.2 39l8.9-8c-1.9 4.4 2.3 7.5 2.3 7.5L25 27.7s9.3 10.6 12.2 21.4c-3.7 1.9-9.5 5-14 5.6-6.2.8-13.5 5-13.5 5v4.9h53.1l-.1-7.8z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/bowerrc.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.2" x2="36" y2="100.2" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="73.425" x2="58.575" y2="86.925" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.667" y1="22.485" x2="36.667" y2="68.113" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.667" y1="77.765" x2="36.667" y2="31.637"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M59.8 53.1c-.5-.2-1.1-.5-1.6-.6-3.2-.7-6.3-1.4-9.5-2-2.3-.4-4.7-.7-7-1 .2-1.6.5-1.8 2.2-2.1.9 1.5.9 1.5 2.7 1.3 3.8-.4 6.2-2.6 6.9-6.5.5-2.9 1.1-5.7 3.3-7.8v-.2c-4-1.2-9.2 1.5-12.4 6.7-1.5-.2-2.4-.7-3.1-2.2-1.7-4.1-5-6.6-9.6-6.8-8.3-.3-15.8 4.5-19.1 12.2-3.2 7.6-2.2 15 1.5 22.2 1.5 2.9 3.4 5.5 6.2 7.3 2.4 1.5 4.6 1.1 6.2-1.3l.3-.3.7 1.9c.2.6.5 1.3.7 1.9.6 1.3 2 1.9 3.3 1.4.3-.1.8-.1 1.1 0 1.4.5 2.8.5 3.9-.7.2-.2.6-.2.9-.2 2 .1 3.1-.6 3.9-2.4.1-.2.2-.3.3-.4 1.3-1 1.6-2.1 1-3.7-.4-.9-.9-1.8-1.4-2.7-.3-.6-.7-1.3-1.2-2.1 2.2.7 4.1 1.5 5.9-.2.4.2.7.4 1 .5 1.8.8 4.2.5 5.3-.7.4-.5.8-.5 1.4-.5 2.3.2 4.9-.5 5.3-3.2 2.4-.5 3.5-1.5 3.7-3.6.3-2-.6-3.3-2.8-4.2zm-14-5.7c-.2 0-.6-.4-.7-.7-.2-.4-.2-.9-.4-1.7l1.9.7c.9-.6 1.7.3 3 .5-1.3.9-2.5 1.2-3.8 1.2zm8.1-11.9c-.9 3.2-1.9 6.4-2.9 9.8-1.2-1-2-1.7-3.1-2.6l3.5-5.4c-1.9 1.2-3.1 3-4.1 5l-1.6-.9c1.2-3 5.2-5.8 8.2-5.9zm-13.2 6c2.6.1 4.9 1.3 7 2.9.1.1.2.4.3.8-2.4-.8-4.4-.5-6.5.2-.6.2-1.3.1-2 .1v.3l3.8-.2v.3l-3.9 1.8c-1-1.4-.6-4.7.5-5.9.2-.1.5-.3.8-.3zm5.9 13.6v.3c4.1.8 8.1 1.6 12.2 2.4-.5 1.3-1.5 1.7-3.8 1.7-.1 2.2-1.1 2.8-4.5 2.6-.7 2-2.5 2.5-5.6 1.3-1.7 1.8-3.5 1.2-5.5.4-.4 3-1.8 5.3-4.4 6.8-2.4 1.4-5.1 1.2-7.7.7C16.8 69 10.7 58.8 13.5 48c2.1-8 8.6-13.5 16.7-13.9 3.9-.2 7.4 1.8 9 5.3.2.3.2 1 0 1.2-2.2 2.7-2.2 5.6-.8 8.6.3.7.2 1.1-.2 1.6-1.9 2.3-4.4 3.7-7.1 4.6l-.4.1c3.2-.1 6.3-.6 8.6-3.2.6-.7 1.2-.9 2-.7 4.4.7 8.7 1.4 13.1 2.1 1.1.2 2.2.5 3.3.8.8.2 1.4.8 1.6 1.8-4.3-.4-8.5-.8-12.7-1.2zM33.5 43.5c0-1.5-1.2-2.7-2.7-2.6-1.4 0-2.6 1.4-2.6 2.7.1 1.4 1.3 2.6 2.7 2.6 1.4 0 2.6-1.2 2.6-2.7zm-4.2-1.2c0-.9.9-1.1 1.7-1 .7 0 1.5.2 1.5 1 0 .9-1 1-1.9 1.3-.5-.4-1.3-.8-1.3-1.3z" opacity=".9" fill="url(#c)" stroke="url(#d)" stroke-width=".5" stroke-miterlimit="10"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/bpg.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.005" x2="36.2" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#006b69"/><stop offset=".124" stop-color="#00807f"/><stop offset=".262" stop-color="#009393"/><stop offset=".41" stop-color="#00a3a3"/><stop offset=".571" stop-color="#00b0af"/><stop offset=".752" stop-color="#08b8b7"/><stop offset="1" stop-color="#14bbbb"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill-opacity="0" stroke="#006e6c" stroke-width="2"/></g><path d="M8 71.2h8c1.6 0 2.8.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8s1 1.8 1 3c0 .9-.2 1.8-.6 2.6s-1 1.5-1.7 2-1.6.8-2.7.9c-.6.2-2.2.2-4.8.3H8V71.2zm4 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.5-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1H12zm0 7.9v5.3h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3H12zm16.1 8.7V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1zm23.9 9.2v-3.3h8.7v7.9c-.8.8-2.1 1.5-3.7 2.1-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3S48 88 47.2 86.4c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.5s2.1-2.8 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.5s2.3 2.5 2.7 4.3l-4 .7c-.3-1-.8-1.7-1.6-2.3-.8-.6-1.7-.8-2.9-.8-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 4.9c0 2.4.5 4.1 1.6 5.3s2.4 1.8 4.1 1.8c.8 0 1.7-.2 2.5-.5s1.6-.7 2.2-1.2v-2.5h-4.4z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.214" y1="74.229" x2="58.667" y2="87.682" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d6ede8"/><stop offset=".297" stop-color="#d3ebe6"/><stop offset=".44" stop-color="#c7e3df"/><stop offset=".551" stop-color="#b7d8d5"/><stop offset=".645" stop-color="#a0cbc9"/><stop offset=".729" stop-color="#84bab9"/><stop offset=".804" stop-color="#62a7a7"/><stop offset=".874" stop-color="#349394"/><stop offset=".938" stop-color="#007f7f"/><stop offset=".998" stop-color="#006b6a"/><stop offset="1" stop-color="#006b69"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#SVGID_2_)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#006e6c" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.25" y1="37.353" x2="36.25" y2="85.161" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#008281"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M62.7 56.8c-1.6-.8-4.6-6.6-9.2-7-4-.3-9.1-1.8-11.9-2-3.5-5.8-9.5-15-14.5-19.9l13.8.7C37.2 19.8 27.7 23 27.7 23l6.4-5.3c-8.2-3.3-11.6 4.7-11.6 4.7-8.5-4.7-12.9 3.3-12.9 3.3l8.8.6C8.4 29.1 11.2 39 11.2 39l8.9-8c-1.9 4.4 2.3 7.5 2.3 7.5L25 27.7s9.3 10.6 12.2 21.4c-3.7 1.9-9.5 5-14 5.6-6.2.8-13.5 5-13.5 5v4.9h53.1l-.1-7.8z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
folder/view/index/icons/classic/browser.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="35.722" y1="76.59" x2="35.722" y2="30.81"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M26.4 64.3c2.5-1 5.1-1.7 7.9-1.8v-7.3h-9.6c.1 3.1.7 6.2 1.7 9.1zm-5.3-28.1c1.1 1.1 2.5 2.1 3.8 2.8 1.1-2.7 2.7-5.1 4.5-7.4-3.2 1-5.9 2.5-8.3 4.6zM45 43.1c-2.5 1-5.1 1.7-7.9 1.8v7.3h9.6c-.1-3.1-.6-6.2-1.7-9.1zm-10.7 1.8c-2.8-.2-5.4-.8-7.9-1.8-1 2.9-1.6 6.1-1.7 9.2h9.6v-7.4zm-6.8-4.5c2.2.9 4.5 1.4 6.8 1.6V30.8H34l-1.2 1.3c-2.3 2.5-4 5.4-5.3 8.3zm19.2 14.7h-9.6v7.3c2.8.2 5.4.8 7.9 1.8 1.1-2.8 1.6-5.9 1.7-9.1zM37.1 42c2.4-.2 4.7-.7 6.8-1.6-1.3-3-3.1-5.8-5.3-8.3l-1-1.2h-.5V42zm13.3-5.9C48 34 45.2 32.5 42 31.6c1.8 2.3 3.3 4.7 4.5 7.4 1.4-.7 2.7-1.6 3.9-2.9zM34.3 65.4c-2.4.2-4.7.7-6.8 1.6 1.3 2.9 3.1 5.8 5.2 8.3l1.1 1.2h.4l.1-11.1zM21.8 52.3c.1-3.6.9-7.1 2-10.4-1.7-.9-3.2-2.1-4.7-3.5l-.1-.1c-3.4 3.8-5.7 8.6-6 14.2l8.8-.2zm27.8 2.8c-.1 3.6-.9 7.1-2 10.4 1.7.9 3.2 2.1 4.7 3.5l.2.2c3.4-3.8 5.7-8.6 6-14.2 0 .1-8.9.1-8.9.1zm2.7-16.8c-1.4 1.3-3 2.6-4.7 3.5 1.2 3.3 1.9 6.8 2 10.4h8.9c-.3-5.4-2.6-10.4-6-14.2l-.2.3zm-2 32.9c-1.1-1.1-2.5-2.1-3.8-2.8-1.1 2.7-2.7 5.1-4.5 7.4 3.2-1 6.1-2.5 8.3-4.6zm-31.2-2.1c1.4-1.3 3-2.6 4.7-3.5-1.2-3.3-1.9-6.8-2-10.4H13c.4 5.4 2.6 10.4 6 14.2l.1-.3zm5.8-.8c-1.3.8-2.7 1.8-3.8 2.8 2.4 2.1 5.2 3.6 8.4 4.5-1.9-2.1-3.5-4.6-4.6-7.3zM44 67c-2.2-.9-4.5-1.4-6.8-1.6v11.2h.4l1.2-1.3c2.1-2.5 3.9-5.4 5.2-8.3z" opacity=".85" fill="url(#c)"/></svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
folder/view/index/icons/classic/bz2.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.98}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.88" x2="36" y2="101.125" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#efc402"/><stop offset=".038" stop-color="#f1c829"/><stop offset=".147" stop-color="#f4d264"/><stop offset=".258" stop-color="#f7dc8b"/><stop offset=".372" stop-color="#f9e5ac"/><stop offset=".488" stop-color="#fbecc7"/><stop offset=".606" stop-color="#fcf3dd"/><stop offset=".728" stop-color="#fef9ee"/><stop offset=".856" stop-color="#fffdf9"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill="url(#SVGID_1_)"/><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill-opacity="0" stroke="#ba9c02" stroke-width="2"/></g><path d="M11.5 72.3h8c1.6 0 2.7.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.3 1.8-.8 2.6s-1.2 1.4-2 1.8c1.2.4 2.1 1 2.8 1.8s1 1.8 1 3c0 .9-.2 1.8-.6 2.6-.4.9-1 1.5-1.7 2s-1.6.8-2.7.9c-.7.1-2.3.1-4.8.1h-6.8V72.3zm4 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7.4-.4.6-.9.6-1.6 0-.6-.2-1.1-.5-1.5-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.4 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3zm14.3 8.7v-3.6l10.5-12.9H31v-3.4h14.6v3.1l-11 13.4H46v3.4H29.8zm30.7-3.6v3.5H47.2c.1-1.3.6-2.6 1.3-3.8s2.2-2.8 4.3-4.8c1.7-1.6 2.8-2.7 3.2-3.3.5-.8.8-1.6.8-2.3 0-.8-.2-1.5-.7-2s-1.1-.7-1.9-.7c-.8 0-1.4.2-1.9.7s-.7 1.3-.8 2.4l-3.8-.4c.2-2.1.9-3.6 2.1-4.5 1.2-.9 2.7-1.4 4.5-1.4 2 0 3.5.5 4.6 1.6 1.1 1.1 1.7 2.4 1.7 3.9 0 .9-.2 1.7-.5 2.6-.3.8-.8 1.7-1.5 2.5-.5.6-1.3 1.4-2.5 2.5s-2 1.8-2.3 2.2c-.3.4-.6.7-.8 1.1h7.5z" fill="#a07802"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="44.942" y1="74.326" x2="58.348" y2="87.733" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#fff"/><stop offset=".234" stop-color="#fffefb"/><stop offset=".369" stop-color="#fefaf1"/><stop offset=".481" stop-color="#fdf5e4"/><stop offset=".579" stop-color="#fcf0d2"/><stop offset=".669" stop-color="#fae9bc"/><stop offset=".752" stop-color="#f9e2a2"/><stop offset=".831" stop-color="#f7da83"/><stop offset=".905" stop-color="#f4d15d"/><stop offset=".975" stop-color="#f1c827"/><stop offset="1" stop-color="#efc402"/></linearGradient><path d="M44.9.9l26.8 26.8H44.9V.9z" fill="url(#SVGID_2_)"/><path d="M44.9.9l26.8 26.8H44.9V.9z" fill-opacity="0" stroke="#ba9c02" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="33.617" y1="40.689" x2="33.617" y2="98.148" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#a47d03"/><stop offset=".533" stop-color="#debe00"/><stop offset=".639" stop-color="#cfad04"/><stop offset="1" stop-color="#a07802"/></linearGradient><path d="M38 15.8h-8.4v-5H38v5zm0 8.9h-8.4v5H38v-5zm0-20.8h-8.4v5H38v-5zm0 13.8h-8.4v5H38v-5zm0 13.9h-8.4v5H38v-5zm.7 24.6c0 2.8-2.3 5.1-5.1 5.1s-5.1-2.3-5.1-5.1v-.5l1.7-14.6c0-1.9 1.5-3.4 3.4-3.4 1.8 0 3.3 1.5 3.4 3.3l1.6 14.4c.1.4.1.6.1.8zm-1.6-.1c0-1.9-1.6-3.5-3.5-3.5s-3.5 1.6-3.5 3.5 1.6 3.5 3.5 3.5c2-.1 3.5-1.7 3.5-3.5z" opacity=".98" fill="url(#SVGID_3_)"/><path d="M32.5 41.6l-2.3-4.5v-2.3l2.3-2.2h2.2l2.3 2.2v2.3l-2.3 4.5h-2.2z" fill="#fff" opacity=".98"/></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
folder/view/index/icons/classic/bzempty.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M6 81.6h3.7c.7 0 1.3 0 1.6.1.4.1.7.2 1 .4.3.2.5.5.7.8.2.3.3.7.3 1.1 0 .4-.1.8-.4 1.2-.2.4-.6.6-1 .8.6.2 1 .4 1.3.8s.5.9.5 1.4c0 .4-.1.8-.3 1.2-.2.4-.5.7-.8 1-.3.2-.8.4-1.3.4-.3 0-1.1.1-2.3.1H6v-9.3zm1.9 1.5v2.2h2.6c.3 0 .6-.1.8-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.2-.7-.2-.2-.4-.3-.7-.3H7.9zm0 3.7v2.5h1.7c.7 0 1.1 0 1.3-.1.3-.1.5-.2.7-.4.2-.2.3-.5.3-.8 0-.3-.1-.5-.2-.7-.1-.2-.3-.3-.6-.4-.3-.1-.8-.1-1.7-.1H7.9zm6.7 4.1v-1.7l4.9-6h-4.3v-1.6H22V83l-5.1 6.3h5.3v1.6h-7.6zm8.7 0v-9.3h6.9v1.6h-5v2.1h4.7v1.6h-4.7v2.5h5.2V91h-7.1zm8.7 0v-9.3h2.8l1.7 6.3 1.7-6.3H41v9.3h-1.7v-7.3l-1.8 7.3h-1.8l-1.8-7.3v7.3H32zm10.8 0v-9.3h3c1.1 0 1.9 0 2.2.1.5.1 1 .4 1.3.9.4.5.5 1.1.5 1.8 0 .6-.1 1.1-.3 1.4-.2.4-.5.7-.8.9-.3.2-.6.4-1 .4-.4.1-1.1.1-1.9.1h-1.2v3.5h-1.8zm1.9-7.7v2.6h1c.7 0 1.2 0 1.5-.1.2-.1.4-.2.6-.5.2-.2.2-.5.2-.7 0-.3-.1-.6-.3-.8-.2-.2-.5-.4-.8-.4-.2 0-.7-.1-1.4-.1h-.8zm8.9 7.7v-7.7h-2.8v-1.6h7.4v1.6h-2.8v7.7h-1.8zm8.3 0V87l-3.4-5.4h2.2l2.2 3.7 2.1-3.7h2.2L63.8 87v3.9h-1.9z" fill="#4c6c7b"/><g opacity=".8"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="46.713" y1="29.6" x2="46.713" y2="50" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M49.9 50c5.7 7.9 2.1 18.2-7.6 20.4-4.7-6.8 2.7-12.9 7.6-20.4z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="29.653" y1="29.5" x2="29.653" y2="70.5" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.4 68.3l.3.2c1.8 1.2 3.8 1.8 5.9 2-1.8-3.9-1.5-8.4.9-11.9l6.8-10c3.7-5.6 2.2-13.2-3.4-16.9l-.3-.2c-1.8-1.2-3.8-1.8-5.9-2 1.8 3.9 1.5 8.4-.9 11.9l-6.8 10c-3.7 5.6-2.2 13.2 3.4 16.9z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="44.231" y1="43.167" x2="44.231" y2="60.897" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M41.9 56.8s1.9-2.6 3-4.2l2.9-4.2c3.5-5.1-2.6-9.3-3.5-9.3.8 1.6 0 4.8-1 6.3l-2.9 4.2c-1.5 2.5-.9 5.7 1.5 7.2z" fill="url(#e)"/></g></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/c.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" stroke="#7191a1" stroke-width="2" fill="none"/><path d="M40.5 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7S27 84.4 27 81.3c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2 1.5 3.4 1.5c1.1 0 2-.3 2.8-1 .8-.7 1.3-1.8 1.7-3.2z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="13.15" y1="22" x2="54.15" y2="22" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 22h41v4h-41v-4z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.15" y1="33.75" x2="60.15" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 33.7h41v4.1h-41v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="13.15" y1="45.75" x2="54.15" y2="45.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 45.7h41v4.1h-41v-4.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="19.15" y1="58" x2="60.15" y2="58" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 58h41v4h-41v-4z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#f)"/><path d="M45.1 1L72 27.7H45.1V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
folder/view/index/icons/classic/cab.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.98}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.88" x2="36" y2="101.125" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#efc402"/><stop offset=".038" stop-color="#f1c829"/><stop offset=".147" stop-color="#f4d264"/><stop offset=".258" stop-color="#f7dc8b"/><stop offset=".372" stop-color="#f9e5ac"/><stop offset=".488" stop-color="#fbecc7"/><stop offset=".606" stop-color="#fcf3dd"/><stop offset=".728" stop-color="#fef9ee"/><stop offset=".856" stop-color="#fffdf9"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill="url(#SVGID_1_)"/><path d="M44.9.9l26.8 26.8v71.5H.2V.9h44.7z" fill-opacity="0" stroke="#ba9c02" stroke-width="2"/></g><path d="M20.7 84.9l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.6 0-4.8-.9-6.5-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7 1.7-1.8 4-2.7 6.7-2.7 2.4 0 4.4.7 5.9 2.2.9.9 1.6 2.1 2 3.7l-4 1c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.5 1.6 1.1 0 2-.3 2.8-1 .9-.9 1.5-2 1.8-3.4zM46 92.2h-4.4l-1.7-4.5h-8l-1.6 4.5H26l7.8-19.9H38l8 19.9zm-7.4-7.9l-2.7-7.4-2.7 7.4h5.4zm9.6-12h8c1.6 0 2.7.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.2 1.8-.8 2.6s-1.2 1.4-2 1.8c1.2.4 2.1 1 2.8 1.8.7.9 1 1.8 1 3 0 .9-.2 1.8-.6 2.6-.4.9-1 1.5-1.7 2s-1.6.8-2.7.9c-.7.1-2.3.1-4.8.1h-6.8V72.3zm4 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7.4-.4.6-.9.6-1.6 0-.6-.2-1.1-.5-1.5-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.4 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3z" fill="#a07802"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="44.942" y1="74.326" x2="58.348" y2="87.733" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#fff"/><stop offset=".234" stop-color="#fffefb"/><stop offset=".369" stop-color="#fefaf1"/><stop offset=".481" stop-color="#fdf5e4"/><stop offset=".579" stop-color="#fcf0d2"/><stop offset=".669" stop-color="#fae9bc"/><stop offset=".752" stop-color="#f9e2a2"/><stop offset=".831" stop-color="#f7da83"/><stop offset=".905" stop-color="#f4d15d"/><stop offset=".975" stop-color="#f1c827"/><stop offset="1" stop-color="#efc402"/></linearGradient><path d="M44.9.9l26.8 26.8H44.9V.9z" fill="url(#SVGID_2_)"/><path d="M44.9.9l26.8 26.8H44.9V.9z" fill-opacity="0" stroke="#ba9c02" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="33.617" y1="40.689" x2="33.617" y2="98.148" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#a47d03"/><stop offset=".533" stop-color="#debe00"/><stop offset=".639" stop-color="#cfad04"/><stop offset="1" stop-color="#a07802"/></linearGradient><path d="M38 15.8h-8.4v-5H38v5zm0 8.9h-8.4v5H38v-5zm0-20.8h-8.4v5H38v-5zm0 13.8h-8.4v5H38v-5zm0 13.9h-8.4v5H38v-5zm.7 24.6c0 2.8-2.3 5.1-5.1 5.1s-5.1-2.3-5.1-5.1v-.5l1.7-14.6c0-1.9 1.5-3.4 3.4-3.4 1.8 0 3.3 1.5 3.4 3.3l1.6 14.4c.1.4.1.6.1.8zm-1.6-.1c0-1.9-1.6-3.5-3.5-3.5s-3.5 1.6-3.5 3.5 1.6 3.5 3.5 3.5c2-.1 3.5-1.7 3.5-3.5z" opacity=".98" fill="url(#SVGID_3_)"/><path d="M32.5 41.6l-2.3-4.5v-2.3l2.3-2.2h2.2l2.3 2.2v2.3l-2.3 4.5h-2.2z" fill="#fff" opacity=".98"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
folder/view/index/icons/classic/cad.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#b)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.6 83.3l3.7 1.1c-.6 2-1.5 3.5-2.8 4.5s-3 1.5-5 1.5c-2.5 0-4.5-.8-6.1-2.5C9.8 86.2 9 83.9 9 81c0-3.1.8-5.4 2.4-7.1 1.6-1.7 3.7-2.5 6.3-2.5 2.3 0 4.1.7 5.6 2 .8.8 1.5 1.9 1.9 3.4l-3.7.9c-.2-1-.7-1.7-1.4-2.3-.7-.6-1.6-.8-2.6-.8-1.4 0-2.5.5-3.4 1.5s-1.3 2.6-1.3 4.8c0 2.3.4 4 1.3 5 .8 1 2 1.5 3.3 1.5 1 0 1.9-.3 2.6-.9.8-.9 1.3-1.9 1.6-3.2zm23.7 6.8h-4.1l-1.6-4.2h-7.5l-1.5 4.2h-4l7.3-18.4h4l7.4 18.4zm-6.9-7.3L35.8 76l-2.5 6.8h5.1zm8.9-11.2h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3 .4 1.2.6 2.6.6 4.4 0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4h-7.1V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#c)"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/caf.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.15" y1="2.887" x2="36.15" y2="101.126" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".012" stop-color="#5b5794"/><stop offset=".182" stop-color="#7b77aa"/><stop offset=".352" stop-color="#9896bf"/><stop offset=".521" stop-color="#b2b2d2"/><stop offset=".687" stop-color="#c7c9e2"/><stop offset=".848" stop-color="#d6d9ec"/><stop offset="1" stop-color="#dbdff0"/></linearGradient><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.8v71.4H0V.9h45.2z" fill-opacity="0" stroke="#2d3293" stroke-width="2"/></g><path d="M22.4 83.9l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8s-3.2 1.6-5.3 1.6c-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7 1.7-1.8 4-2.7 6.8-2.7 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.8-.9-1.5 0-2.7.5-3.6 1.6-1 .8-1.4 2.5-1.4 4.9 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.2-1.8 1.6-3.2zm25.5 7.3h-4.4l-1.8-4.5h-8L32 91.2h-4.3l7.8-19.9h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.7 7.9V71.3h13.8v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4.1z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.321" y1="87.273" x2="50.783" y2="78.839" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#595593"/><stop offset=".07" stop-color="#706ca2"/><stop offset=".159" stop-color="#8988b5"/><stop offset=".255" stop-color="#a3a5c8"/><stop offset=".359" stop-color="#babfd9"/><stop offset=".471" stop-color="#ced5e7"/><stop offset=".598" stop-color="#dee6f2"/><stop offset=".751" stop-color="#e9f3fa"/><stop offset="1" stop-color="#ecf8fe"/></linearGradient><path d="M45.2.9l27.1 26.8H45.2V.9z" fill="url(#SVGID_2_)"/><path d="M45.2.9l27.1 26.8H45.2V.9z" fill-opacity="0" stroke="#2d3293" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.776" y1="56.174" x2="57.726" y2="56.174" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#352c7f"/><stop offset=".074" stop-color="#3e3786"/><stop offset=".266" stop-color="#544f96"/><stop offset=".457" stop-color="#6763a5"/><stop offset=".645" stop-color="#7572b1"/><stop offset=".827" stop-color="#7e7cba"/><stop offset="1" stop-color="#8180bd"/></linearGradient><path d="M14.8 39.3h6.5l13-10v33l-13-10h-6.5v-13zm26.1 10.2v2.9c.1 0 1.6 0 3.2-.8s3.4-2.7 3.4-5.8c0-3.1-1.7-5-3.4-5.8-1.6-.8-3.1-.8-3.2-.8v2.9h.1c.4 0 1.4.2 2.1.7.8.5 1.4 1.2 1.4 3 0 2-.8 2.6-1.8 3.2-.5.2-1 .4-1.3.4-.2 0-.3 0-.4.1h-.1zm0 5.1v2.9c.1 0 2.8 0 5.8-1.4 2.9-1.4 6-4.6 5.9-10.1.1-5.6-3-8.7-5.9-10.1-2.9-1.4-5.6-1.4-5.8-1.4v2.9h.3c.8.1 3.1.4 4.9 1.6 1.9 1.2 3.5 3.1 3.5 7.1 0 4.6-2.1 6.5-4.3 7.5-1.1.6-2.2.8-3.1 1-.4.1-.8.1-1 .1-.2-.1-.3-.1-.3-.1zm0 5v2.9c.1 0 4.1 0 8.3-2.1 4.2-2 8.5-6.5 8.5-14.6.1-8.1-4.3-12.6-8.5-14.6-4.2-2.1-8.2-2.1-8.3-2.1V32h.6c1.3.1 4.8.6 7.7 2.5 2.9 1.9 5.5 5.1 5.6 11.3-.1 7-3.4 10.2-6.9 12-1.7.9-3.5 1.3-4.9 1.5-.7.1-1.2.2-1.6.2-.3.1-.5.1-.5.1zm0-27.5z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/cal.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="35.75" y1="3.096" x2="35.75" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill="url(#a)"/><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.85" y1="4.085" x2="35.85" y2="38.441" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#ef4136"/><stop offset="1" stop-color="#be1e2d"/></linearGradient><path d="M.7 63.6h70.2v34.3H.7V63.6z" fill="url(#b)"/><path d="M21.8 82.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.1.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.2zm25.5 7.3h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3L35 70.3h4.3l8 19.8zm-7.5-7.9L37 74.8l-2.7 7.4h5.5zm9.8 7.9V70.4h4v16.3h10.1V90H49.6z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="1025.8" y1="947.945" x2="1025.8" y2="986.7" gradientTransform="matrix(1 0 0 -1 -990 1005.111)"><stop offset="0" stop-color="#879ca8"/><stop offset="1" stop-color="#4d6a78"/></linearGradient><path d="M18.2 54.4v-6.2h7.2v6.2h-7.2zm8.8 0v-6.2h8v6.2h-8zm-8.8-7.6v-6.9h7.2v6.9h-7.2zm8.8 0v-6.9h8v6.9h-8zm-8.8-8.3v-6.2h7.2v6.2h-7.2zm18.4 15.9v-6.2h8v6.2h-8zM27 38.5v-6.2h8v6.2h-8zm19.2 15.9v-6.2h7.2v6.2h-7.2zm-9.6-7.6v-6.9h8v6.9h-8zm-8.8-18.7c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7H27c.4 0 .8.3.8.7v6.2zm18.4 18.7v-6.9h7.2v6.9h-7.2zm-9.6-8.3v-6.2h8v6.2h-8zm9.6 0v-6.2h7.2v6.2h-7.2zm.8-10.4c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7h1.6c.4 0 .8.3.8.7v6.2zm9.6-1.4c0-1.5-1.4-2.8-3.2-2.8h-3.2v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1H31v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1h-3.2c-1.7 0-3.2 1.3-3.2 2.8v27.7c0 1.5 1.4 2.8 3.2 2.8h35.1c1.7 0 3.2-1.3 3.2-2.8V26.7z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="44.825" y1="74.224" x2="58.325" y2="87.724" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M44.8 1l27 26.7h-27V1z" fill="url(#d)"/><path d="M44.8 1l27 26.7h-27V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
folder/view/index/icons/classic/catalog.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
["3g2","3ga","3gp","7z","aa","aac","ac","accdb","accdt","ace","adn","ai","aif","aifc","aiff","ait","amr","ani","apk","app","applescript","asax","asc","ascx","asf","ash","ashx","asm","asmx","asp","aspx","asx","au","aup","avi","axd","aze","bak","bash","bat","bin","blank","bmp","bowerrc","bpg","browser","bz2","bzempty","c","cab","cad","caf","cal","cd","cdda","cer","cfg","cfm","cfml","cgi","chm","class","cmd","code-workspace","codekit","coffee","coffeelintignore","com","compile","conf","config","cpp","cptx","cr2","crdownload","crt","crypt","cs","csh","cson","csproj","css","csv","cue","cur","dart","dat","data","db","dbf","deb","default","dgn","dist","diz","dll","dmg","dng","doc","docb","docm","docx","dot","dotm","dotx","download","dpj","ds_store","dsn","dtd","dwg","dxf","editorconfig","el","elf","eml","enc","eot","eps","epub","eslintignore","exe","f4v","fax","fb2","fla","flac","flv","fnt","folder","fon","gadget","gdp","gem","gif","gitattributes","gitignore","go","gpg","gpl","gradle","gz","h","handlebars","hbs","heic","hlp","hs","hsl","htm","html","ibooks","icns","ico","ics","idx","iff","ifo","image","img","iml","in","inc","indd","inf","info","ini","inv","iso","j2","jar","java","jpe","jpeg","jpg","js","json","jsp","jsx","key","kf8","kmk","ksh","kt","kts","kup","less","lex","licx","lisp","lit","lnk","lock","log","lua","m","m2v","m3u","m3u8","m4","m4a","m4r","m4v","map","master","mc","md","mdb","mdf","me","mi","mid","midi","mk","mkv","mm","mng","mo","mobi","mod","mov","mp2","mp3","mp4","mpa","mpd","mpe","mpeg","mpg","mpga","mpp","mpt","msg","msi","msu","nef","nes","nfo","nix","npmignore","ocx","odb","ods","odt","ogg","ogv","ost","otf","ott","ova","ovf","p12","p7b","pages","part","pcd","pdb","pdf","pem","pfx","pgp","ph","phar","php","pid","pkg","pl","plist","pm","png","po","pom","pot","potx","pps","ppsx","ppt","pptm","pptx","prop","ps","ps1","psd","psp","pst","pub","py","pyc","qt","ra","ram","rar","raw","rb","rdf","rdl","reg","resx","retry","rm","rom","rpm","rpt","rsa","rss","rst","rtf","ru","rub","sass","scss","sdf","sed","sh","sit","sitemap","skin","sldm","sldx","sln","sol","sphinx","sql","sqlite","step","stl","svg","swd","swf","swift","swp","sys","tar","tax","tcsh","tex","tfignore","tga","tgz","tif","tiff","tmp","tmx","torrent","tpl","ts","tsv","ttf","twig","txt","udf","vb","vbproj","vbs","vcd","vcf","vcs","vdi","vdx","vmdk","vob","vox","vscodeignore","vsd","vss","vst","vsx","vtx","war","wav","wbk","webinfo","webm","webp","wma","wmf","wmv","woff","woff2","wps","wsf","xaml","xcf","xfl","xlm","xls","xlsm","xlsx","xlt","xltm","xltx","xml","xpi","xps","xrb","xsd","xsl","xspf","xz","yaml","yml","z","zip","zsh"]
|
1
folder/view/index/icons/classic/cd.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M30.5 82.4l4 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.4 1.6-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8 1.7-1.8 4-2.8 6.9-2.8 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.8-.9c-1.5 0-2.7.5-3.7 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.6 1.6c1.1 0 2-.3 2.8-1 .7-.6 1.3-1.7 1.6-3.2zM38 69.8h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8s1.5 2 1.9 3.2c.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4H38V69.8zm4.1 3.4v13.3h3.1c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8s.8-1 1.1-1.9.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.4-.2h-1.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="37" y1="56.5" x2="37" y2="36.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M44.2 52.2l.6-1.5c.9-2.8 1.8-5.7 2.7-8.5.3-1.1.7-2.2 1.4-3.1 1.1-1.5 2.6-2.3 4.3-2.5.7-.1 1.4-.2 2.1-.2H62c-.1.1-.1.2-.1.3-.8 1.4-1.5 2.8-2.3 4.2l-4.2 7.2c-.9 1.5-1.9 3-3.1 4.4-.8 1-1.7 2-2.8 2.7-.8.5-1.6.8-2.5.8h-9.9c-1 0-1.8-.4-2.5-1-1-.9-1.6-2.2-2.1-3.4-.9-2.3-1.4-4.8-2-7.2-.3-1.1-.6-2.3-.9-3.4 0-.1-.1-.1-.1-.2l-.2.2c-1.3 1.3-2.4 2.7-3.4 4.2-.3.4-.4.9-.5 1.4-.6 1.8-1.1 3.6-1.7 5.3-.6 1.7-1.6 3-3.3 3.8-1 .5-2 .7-3.1.7-1.6 0-3.2 0-4.8.1-.4 0-.4 0-.3-.4.7-2.5 1.5-5 2.6-7.4 1.1-2.5 2.4-4.8 4.1-6.9 1.1-1.5 2.4-2.8 3.9-3.8.8-.5 1.6-.9 2.6-1H36c1.8 0 3.1.7 4.1 2.2.6.9 1 1.9 1.4 2.9.7 2.1 1.2 4.2 1.7 6.3l.9 3.6c0 .1 0 .2.1.2z" fill="url(#c)"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
folder/view/index/icons/classic/cdda.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M16 84.3l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.9-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 2 0 3.5.6 4.8 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.9 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.7 1.3-2.8zm5.9-10h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.9.3h-6.1V74.3zm3.2 2.7v10.4h2.4c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7.3-.3.6-.8.8-1.5.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8-.5-1.2-.9-1.5-.9-.6-1.5-.7c-.3-.1-1.2-.1-2.5-.1h-1.5zM38 74.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.9.3H38V74.3zm3.2 2.7v10.4h2.4c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7s.6-.8.8-1.5c.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8-.5-1.2-.9-1.5c-.4-.4-.9-.6-1.5-.7-.3-.1-1.2-.1-2.5-.1h-1.5zm27.3 13.1H65l-1.4-3.6h-6.4l-1.3 3.6h-3.4l6.2-15.7h3.4l6.4 15.7zm-5.9-6.3L60.4 78l-2.2 5.8h4.4z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><g opacity=".85"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.25" y1="65.367" x2="36.25" y2="20.819"><stop offset="0" stop-color="#adccdc"/><stop offset=".633" stop-color="#4c6c7b"/></linearGradient><path d="M43.1 58V41.3l9.8-1.6c-1.6-8.3-8.8-14.6-17.6-14.6-9.9 0-17.9 8-17.9 17.9 0 9.9 8 17.9 17.9 17.9 1 0 1.9-.1 2.8-.2.7-1.2 2-2.1 3.6-2.6.5 0 .9-.1 1.4-.1zm-4.5-31.3l-1.9 8.4h-1.9l-1.4-8.4c2-1 5.2 0 5.2 0zm-3.3 23c-3.7 0-6.6-3-6.6-6.6 0-3.7 3-6.6 6.6-6.6s6.6 3 6.6 6.6c0 3.7-2.9 6.6-6.6 6.6zm0-11.7c-2.8 0-5.1 2.3-5.1 5.1s2.3 5.1 5.1 5.1 5.1-2.3 5.1-5.1-2.3-5.1-5.1-5.1zm0 8.7c-2 0-3.6-1.6-3.6-3.6s1.6-3.6 3.6-3.6 3.6 1.6 3.6 3.6-1.6 3.6-3.6 3.6zm2.3 17.2c.1.5.3.9.6 1.3-.9.1-1.9.2-2.8.2C23 65.4 13 55.4 13 43.1s10-22.3 22.3-22.3c10.9 0 20 7.9 21.9 18.2l-2.2.4C53.3 30.1 45.1 23 35.3 23c-11.1 0-20.1 9-20.1 20.1 0 11.1 9 20.1 20.1 20.1.7 0 1.5 0 2.2-.1 0 .2 0 .5.1.8zm21.9-23.6v19.3c0 1.6-1.2 2.9-3.1 3.3-2 .5-4-.3-4.4-1.9-.4-1.6.9-3.2 3-3.8.9-.2 1.8-.2 2.6.1V45.7l-10.4 1.9v14.5c0 1.4-1.2 2.7-3 3.2-2 .5-4.1-.5-4.4-1.9-.4-1.6.9-3.2 3-3.7.9-.2 1.8-.2 2.5.1V42.6l14.2-2.3z" fill="url(#c)"/></g><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#d)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
folder/view/index/icons/classic/cer.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h14.9v3.4H32.7v4.4h10.1v3.4H32.7v5.5h11.2V92H28.6zm18.7 0v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/cfg.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.3 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5S18 75 16.9 75c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3zm7.4 7.4v-20h13.7v3.4h-9.7V80h8.4v3.4h-8.4v8.5h-4zm26.4-7.4v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.6-.9-2.7-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.7z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 4.2 KiB |
1
folder/view/index/icons/classic/cfm.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19" y1="39.207" x2="19" y2="67.397" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19" y1="37.568" x2="19" y2="69.036" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#b)" stroke="url(#c)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.7" y1="35.5" x2="36.7" y2="70.5" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="36.701" y1="34.75" x2="36.701" y2="71.25" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#d)" stroke="url(#e)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="54.2" y1="38.948" x2="54.2" y2="67.31" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="54.2" y1="37.307" x2="54.2" y2="68.946" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#f)" stroke="url(#g)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="74.187" x2="58.537" y2="87.687" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M20.9 84.4l3.8 1.2c-.6 2.1-1.6 3.7-2.9 4.7-1.4 1-3.1 1.5-5.2 1.5-2.6 0-4.7-.9-6.4-2.6C8.5 87.4 7.7 85 7.7 82c0-3.2.8-5.7 2.5-7.5s3.9-2.7 6.6-2.7c2.4 0 4.3.7 5.8 2.1.9.8 1.6 2 2 3.6l-3.9.9c-.2-1-.7-1.8-1.4-2.4s-1.6-.9-2.7-.9c-1.4 0-2.6.5-3.5 1.5s-1.4 2.7-1.4 5c0 2.4.4 4.2 1.3 5.2s2 1.6 3.5 1.6c1 0 1.9-.3 2.7-1 .8-.5 1.3-1.5 1.7-3zm7.2 7.1V72.2h13.4v3.3H32v4.6h8.2v3.3H32v8.2l-3.9-.1zm16.6 0V72.2h5.9l3.5 13.2 3.5-13.2h5.9v19.3h-3.7V76.3L56 91.5h-3.8l-3.9-15.2v15.2h-3.6z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
folder/view/index/icons/classic/cfml.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19.014" y1="60.793" x2="19.014" y2="32.603"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.014" y1="62.432" x2="19.014" y2="30.964"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#b)" stroke="url(#c)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.686" y1="64.5" x2="36.686" y2="29.5"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="36.687" y1="65.25" x2="36.687" y2="28.75"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#d)" stroke="url(#e)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="54.186" y1="61.052" x2="54.186" y2="32.69"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="54.186" y1="62.691" x2="54.186" y2="31.05"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#f)" stroke="url(#g)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M17.4 85.8l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8.6-.6 1.1-1.5 1.3-2.6zm5.9 5.7V75.8h10.9v2.7h-7.7v3.7h6.6v2.7h-6.6v6.7h-3.2zm13.5 0V75.8h4.8l2.9 10.7 2.9-10.7h4.8v15.7h-3V79.1L46 91.5h-3l-3.1-12.4v12.4h-3.1zm18.7 0V75.9h3.2v13h8v2.7H55.5z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
folder/view/index/icons/classic/cgi.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.254" y1="65.191" x2="42.722" y2="45.327"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#b)" d="M16.2 55.5L30.9 65v-7H56v-5H30.9v-6.9z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="29.677" y1="49.355" x2="41.146" y2="29.491"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#c)" d="M41.5 36.6H16.4v5.1h25.1v6.9l14.7-9.4-14.7-9.5z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M26 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.8-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.2-1.8 1.6-3.3zm16.7 0v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.6-.9-2.8-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.6zM55 91.9v-20h4v20h-4z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/chm.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" stroke="#827100" stroke-width="2" fill="none"/><path d="M22.6 85.8l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.2-4.2 1.2-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.3-2-5.8 0-2.6.7-4.6 2-6 1.4-1.4 3.1-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.1.7c-.2-.8-.6-1.4-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.9 1.2s-1.1 2.2-1.1 4c0 2 .4 3.4 1.1 4.2.7.8 1.7 1.3 2.8 1.3.8 0 1.6-.3 2.2-.8.7-.5 1.1-1.3 1.4-2.5zm5.8 5.8V76h3.2v6.1h6.3V76h3.2v15.6h-3.2v-6.8h-6.3v6.8h-3.2zm15.9 0V76h4.8L52 86.6 54.8 76h4.8v15.6h-3V79.3l-3.1 12.3h-3.1l-3.1-12.3v12.3h-3z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="37" y1="68.5" x2="37" y2="21.5"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M58.5 21.5H25.2c-4.9 0-9.8 2-9.8 7.8v39.2h35.2V29.3H20.4c0-2.9 2-3.9 3.9-3.9h30.4v39.2l3.9-3.9V21.5z" fill="url(#b)"/><path d="M31.5 51c0-4.1 4.7-4.7 4.7-7.6 0-1.3-1.2-2.3-2.7-2.3-1.6 0-3 1.2-3 1.2l-2-2.5s1.9-2 5.3-2c3.2 0 6.1 2 6.1 5.3 0 4.7-4.9 5.2-4.9 8.2v1.1h-3.5V51zm0 3.8H35v3.3h-3.5v-3.3z" fill="#dacb7a"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" stroke="#827100" stroke-width="2" stroke-linejoin="round" fill="none"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
folder/view/index/icons/classic/class.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="21.45" y1="61.55" x2="21.45" y2="21.95"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M14.4 44.1v-4.9c1-.1 1.8-.2 2.3-.5.5-.2.9-.7 1.3-1.2.4-.6.6-1.3.8-2.2.1-.7.2-1.8.2-3.4 0-2.7.1-4.5.4-5.6.2-1 .7-1.9 1.3-2.5s1.6-1.1 2.8-1.5c.8-.2 2.1-.4 3.9-.4h1.1v4.9c-1.5 0-2.5.1-2.9.3-.4.2-.7.4-1 .8-.2.3-.3.9-.3 1.8s-.1 2.5-.2 4.9c-.1 1.4-.2 2.5-.5 3.4-.3.8-.7 1.5-1.1 2.1-.4.5-1.1 1.1-2 1.7.8.5 1.5 1 2 1.6s.9 1.4 1.2 2.3.5 2.1.5 3.6c.1 2.3.1 3.7.1 4.4 0 .9.1 1.5.3 1.9.2.4.6.6 1 .8.4.2 1.4.3 2.9.3v4.9h-1.1c-1.8 0-3.3-.1-4.2-.4-1-.3-1.8-.8-2.5-1.5s-1.1-1.5-1.4-2.5c-.2-1-.3-2.6-.3-4.8 0-2.5-.1-4.2-.3-4.9-.3-1.1-.8-1.9-1.4-2.4-.7-.6-1.6-1-2.9-1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="51.7" y1="61.45" x2="51.7" y2="21.95"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M58.7 44.1c-1 .1-1.8.2-2.3.5-.5.2-.9.7-1.3 1.2-.4.6-.6 1.3-.8 2.2-.1.7-.2 1.8-.2 3.4 0 2.7-.1 4.5-.4 5.6-.2 1.1-.7 1.9-1.3 2.5-.6.6-1.6 1.1-2.8 1.5-.8.2-2.1.4-3.9.4h-1.1v-4.9c1.5 0 2.4-.1 2.9-.3s.8-.5 1-.8c.2-.3.3-.9.3-1.8 0-.8.1-2.4.2-4.8.1-1.4.3-2.6.6-3.4.3-.9.7-1.6 1.2-2.2s1.1-1.1 1.9-1.6c-1-.7-1.8-1.3-2.2-1.9-.6-.9-1.1-2.1-1.3-3.4-.2-1-.3-3.1-.3-6.3 0-1-.1-1.7-.3-2.1-.2-.3-.5-.6-.9-.8-.4-.2-1.4-.3-3-.3V22h1.1c1.8 0 3.3.1 4.2.4 1 .3 1.8.8 2.5 1.5s1.1 1.5 1.4 2.5c.2 1 .4 2.6.4 4.8 0 2.5.1 4.1.3 4.9.3 1.1.8 1.9 1.4 2.3.6.5 1.6.7 2.8.8l-.1 4.9z" fill="url(#c)"/></g><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M14.3 86.5l2.7.8c-.4 1.5-1.1 2.6-2 3.3-.9.7-2.2 1.1-3.6 1.1-1.8 0-3.3-.6-4.5-1.9-1.2-1.2-1.7-2.9-1.7-5.1 0-2.3.6-4 1.8-5.3 1.2-1.3 2.7-1.9 4.6-1.9 1.7 0 3 .5 4.1 1.5.6.6 1.1 1.4 1.4 2.5l-2.7.6c-.2-.7-.5-1.3-1-1.7-.5-.4-1.1-.6-1.9-.6-1 0-1.8.4-2.5 1.1-.7 1-1 2.1-1 3.8 0 1.7.3 2.9.9 3.7.6.7 1.4 1.1 2.4 1.1.7 0 1.4-.2 1.9-.7.5-.5.9-1.3 1.1-2.3zm5.1 5V78.1h2.7v11.2H29v2.3h-9.6zm23.8 0h-3l-1.2-3h-5.4l-1.1 3.1h-2.9L34.9 78h2.9l5.4 13.5zm-5-5.3l-1.9-5-1.8 5h3.7zm5.8.9l2.7-.3c.2.9.5 1.6 1 2 .5.4 1.2.6 2 .6.9 0 1.6-.2 2-.6.4-.4.7-.8.7-1.3 0-.3-.1-.6-.3-.8-.2-.2-.5-.4-1-.6-.3-.1-1.1-.3-2.2-.6-1.5-.4-2.5-.8-3.1-1.3-.8-.7-1.3-1.7-1.3-2.7 0-.7.2-1.3.6-1.9.4-.6 1-1.1 1.7-1.4.7-.3 1.6-.5 2.7-.5 1.7 0 3 .4 3.9 1.1.9.7 1.3 1.7 1.4 3l-2.7.1c-.1-.7-.4-1.2-.8-1.5-.4-.3-1-.5-1.7-.5-.8 0-1.4.2-1.9.5-.3.2-.4.5-.4.8 0 .3.1.6.4.8.3.3 1.2.6 2.5.9 1.3.3 2.3.6 3 1 .6.3 1.1.8 1.5 1.4.4.6.5 1.3.5 2.2 0 .8-.2 1.5-.6 2.2-.4.7-1 1.2-1.8 1.5-.8.3-1.8.5-3 .5-1.7 0-3-.4-4-1.2-1.1-.7-1.7-1.9-1.8-3.4zm12.6 0l2.7-.3c.2.9.5 1.6 1 2 .5.4 1.2.6 2 .6.9 0 1.6-.2 2-.6.4-.4.7-.8.7-1.3 0-.3-.1-.6-.3-.8-.2-.2-.5-.4-1-.6-.3-.1-1.1-.3-2.2-.6-1.5-.4-2.5-.8-3.1-1.3-.8-.7-1.3-1.7-1.3-2.7 0-.7.2-1.3.6-1.9.4-.6 1-1.1 1.7-1.4.7-.3 1.6-.5 2.7-.5 1.7 0 3 .4 3.9 1.1.9.7 1.3 1.7 1.4 3l-2.7.1c-.1-.7-.4-1.2-.8-1.5-.4-.3-1-.5-1.7-.5-.8 0-1.4.2-1.9.5-.3.2-.4.5-.4.8 0 .3.1.6.4.8.3.3 1.2.6 2.5.9 1.3.3 2.3.6 3 1 .6.3 1.1.8 1.5 1.4.4.6.5 1.3.5 2.2 0 .8-.2 1.5-.6 2.2-.4.7-1 1.2-1.8 1.5-.8.3-1.8.5-3 .5-1.7 0-3-.4-4-1.2-1-.7-1.6-1.9-1.8-3.4z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
folder/view/index/icons/classic/cmd.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18.8 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.5 2.7-1.5 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.7-3.2zm7.3 7.3V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6zm23.3-19.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/code-workspace.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.722" y1="22.496" x2="35.722" y2="68.104" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 57.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V44.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V73c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V46c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" opacity=".8" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
folder/view/index/icons/classic/codekit.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="20.514" y1="61.793" x2="20.514" y2="33.603"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="20.514" y1="63.979" x2="20.514" y2="31.418"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M13.5 45.7l14-12.1v6.1l-9.5 8v.1l9.5 7.9v6.1l-14-12.1v-4z" fill="url(#b)" stroke="url(#c)" stroke-width="2" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="52.686" y1="62.052" x2="52.686" y2="33.69"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="52.686" y1="64.238" x2="52.686" y2="31.504"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M45.7 55.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V50l-14 12.1v-6.3z" fill="url(#d)" stroke="url(#e)" stroke-width="2" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#f)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M11.2 86.8l2 .8c-.3 1.4-.8 2.5-1.5 3.1-.7.7-1.6 1-2.7 1-1.4 0-2.5-.6-3.3-1.8-.9-1.2-1.3-2.8-1.3-4.8 0-2.1.4-3.8 1.3-5 .9-1.2 2-1.8 3.5-1.8 1.2 0 2.3.5 3 1.4.5.6.8 1.3 1 2.4l-2 .6c-.1-.7-.4-1.2-.8-1.6s-.8-.6-1.4-.6c-.8 0-1.4.3-1.8 1-.5.7-.7 1.8-.7 3.3 0 1.6.2 2.8.7 3.5s1.1 1 1.8 1c.5 0 1-.2 1.4-.7s.6-.9.8-1.8zm3.3-1.6c0-1.3.2-2.4.5-3.3.2-.7.5-1.2.9-1.8s.8-.9 1.3-1.2c.6-.3 1.4-.5 2.2-.5 1.5 0 2.7.6 3.6 1.8.9 1.2 1.4 2.8 1.4 4.9 0 2.1-.4 3.7-1.3 4.9-.9 1.2-2.1 1.8-3.6 1.8s-2.7-.6-3.6-1.8c-1-1.2-1.4-2.8-1.4-4.8zm2.1-.1c0 1.5.3 2.6.8 3.3s1.2 1.1 2 1.1 1.5-.4 2-1.1c.5-.7.8-1.9.8-3.4s-.3-2.6-.8-3.3c-.5-.7-1.2-1.1-2-1.1s-1.5.4-2 1.1-.8 1.9-.8 3.4zm9.4-6.4h3.8c.8 0 1.5.1 1.9.2.6.2 1.1.6 1.5 1.2.4.6.7 1.3 1 2.1.2.8.3 1.8.3 3 0 1.1-.1 2-.3 2.7-.3.9-.6 1.7-1.1 2.3-.4.4-.8.8-1.4 1-.5.2-1.1.3-1.8.3H26V78.7zm2 2.1v8.5h1.5c.6 0 1 0 1.2-.1.3-.1.6-.3.8-.5s.4-.7.5-1.2c.1-.6.2-1.4.2-2.4s-.1-1.8-.2-2.3-.3-.9-.6-1.2c-.2-.3-.6-.5-1-.6-.3-.1-.8-.1-1.7-.1H28zm8.2 10.7V78.7h7.5v2.2h-5.5v2.9h5.1V86h-5.1v3.5H44v2.2h-7.8zm9.6 0V78.7h2.1v5.7l4.2-5.7h2.8l-3.8 5 4 7.9h-2.7l-2.8-6-1.7 2.2v3.9h-2.1zm10.1 0V78.7H58v12.9h-2.1zm6.3 0V80.8h-3v-2.2h8.1v2.2h-3v10.7h-2.1z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
folder/view/index/icons/classic/coffee.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill="none" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.037" y1="74.187" x2="58.537" y2="87.687" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill="none" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M12.8 87.8l2.2.7c-.3 1.2-.9 2.1-1.7 2.7-.8.6-1.8.9-2.9.9-1.5 0-2.7-.5-3.6-1.5-.9-1-1.4-2.4-1.4-4.1 0-1.8.5-3.3 1.4-4.3s2.2-1.5 3.8-1.5c1.4 0 2.5.4 3.3 1.2.5.5.9 1.2 1.1 2l-2.2.5c-.1-.6-.4-1-.8-1.4-.4-.3-.9-.5-1.5-.5-.8 0-1.5.3-2 .9-.5.6-.8 1.5-.8 2.9s.3 2.4.8 3c.5.6 1.2.9 2 .9.6 0 1.1-.2 1.5-.6.3-.4.6-1 .8-1.8zm3.6-1.4c0-1.1.2-2.1.5-2.8.3-.6.6-1.1 1-1.5.4-.4.9-.8 1.4-1 .7-.3 1.5-.4 2.4-.4 1.6 0 2.9.5 3.9 1.5s1.5 2.4 1.5 4.2c0 1.8-.5 3.2-1.5 4.2s-2.3 1.5-3.9 1.5c-1.7 0-3-.5-3.9-1.5-.9-1-1.4-2.4-1.4-4.2zm2.3-.1c0 1.3.3 2.2.9 2.9.6.6 1.3 1 2.2 1 .9 0 1.6-.3 2.2-1s.9-1.6.9-2.9c0-1.3-.3-2.2-.8-2.8-.6-.6-1.3-.9-2.2-.9-.9 0-1.7.3-2.2.9-.7.6-1 1.6-1 2.8zM29 91.9V80.8h7.6v1.9h-5.4v2.6h4.6v1.9h-4.6v4.7H29zm9.4 0V80.8H46v1.9h-5.4v2.6h4.6v1.9h-4.6v4.7h-2.2zm9.5 0V80.8h8.2v1.9h-6v2.5h5.6V87h-5.6v3h6.2v1.9h-8.4zm10.3 0V80.8h8.2v1.9h-6v2.5H66V87h-5.6v3h6.2v1.9h-8.4z" fill="#4c6c7b"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="35.895" y1="32.203" x2="35.895" y2="67.868" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31 37.6c4.2-.4 5.4-3 10.2-3.5 2.4-.2 3.9.3 4.1 1.1.1.8-1 1.3-2.5 1.4-2 .2-2.9-.5-3-1.2-1.5.1-1.7.8-1.6 1.2.1.9 2 1.7 5 1.4 3.5-.3 4.6-1.6 4.4-3-.4-1.8-3-3.3-7.9-2.9-6.2.6-6.1 3.4-10.3 3.7-1.7.1-2.7-.2-2.9-.9-.1-.7.7-1 1.7-1.1.9-.1 2 .1 2.6.4.4-.2.5-.4.5-.6-.1-.6-1.4-.9-3-.8-3.1.3-3.1 1.7-3 2.3.3 1.7 2.7 2.8 5.7 2.5zm20.9 7.1c-3.9.9-8.8 1.5-14.7 1.5-6 0-11-.6-14.8-1.5-3.4-.9-5.3-1.9-5.9-2.9.3 2.2.9 4.4 1.6 6.5-.9.5-1.7 1.2-2.4 2.1-1.4 1.7-2 3.7-1.9 5.7s1.1 3.6 2.6 4.8c1.6 1.2 3.3 1.6 5.3 1.2.7-.1 1.6-.5 2.4-.7-1.6 0-3-.5-4.3-1.6-1.5-1.1-2.5-2.6-2.7-4.4-.4-1.7 0-3.3 1-4.7.2-.3.4-.5.7-.7.5 1.4 1.2 2.6 1.9 3.9 1.5 2.2 3 4.2 4.4 6.3.6 1.2 1.1 2.5 1.4 3.7 1 1.4 2.4 2.3 4.1 2.8 2.1.7 4.3 1 6.6 1h.2c2.2 0 4.6-.4 6.8-1.1 1.6-.5 3-1.4 4-2.9h.1c.2-1.1.6-2.4 1.2-3.7 1.5-2.1 3-4.1 4.4-6.3 2-3.6 3.3-7.6 4.1-12-.9 1.2-2.8 2.2-6.1 3zm-29.6-3.1c3.9 1 8.8 1.5 14.7 1.5 6 0 10.9-.5 14.7-1.5 4.1-1 6-2.2 6-3.4 0-.9-.9-1.7-2.5-2.4.4.2.6.6.6 1.1 0 1.2-1.9 2.2-5.6 3.1-3.4.7-7.9 1.3-13.2 1.3-5.2 0-9.8-.5-13.1-1.2-3.6-.9-5.5-1.9-5.5-3.1 0-.5.2-1 1-1.5-2.2.9-3.4 1.6-3.4 2.7.2 1.2 2.2 2.5 6.3 3.4z" fill="url(#c)"/></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
folder/view/index/icons/classic/coffeelintignore.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".75"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="15.222" y1="53.7" x2="56.222" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="14.972" y1="53.7" x2="56.472" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M50.2 39.2c-8-8-21-8-29 0s-8 21 0 29 21 8 29 0 8-21 0-29zM23 61.9C19.2 56 19.9 48.1 25 43c5.1-5.1 13-5.8 18.9-2L23 61.9zm4.5 4.5l20.9-20.9c3.8 5.9 3.1 13.8-2 18.9-5.1 5.1-13 5.8-18.9 2z" fill="url(#c)" stroke="url(#d)" stroke-width=".5" stroke-miterlimit="10"/></g></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
folder/view/index/icons/classic/com.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.7-1.4 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.6-3.2zm6.5-2.5c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7 2.7-3 0-5.3-.9-7.1-2.7-1.9-1.8-2.8-4.3-2.8-7.4zm4.2-.2c0 2.2.5 3.9 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.5-2.9 1.5-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.1 1.2-1.6 2.9-1.6 5.2zm18.3 10V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91H47z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/compile.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="-27.8" x2="36" y2="70.2" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="43.425" x2="58.575" y2="56.925" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M11.4 86.1l2 .6c-.3 1.1-.8 1.9-1.5 2.4s-1.6.8-2.7.8c-1.3 0-2.4-.5-3.3-1.4s-1.3-2.2-1.3-3.7c0-1.7.4-3 1.3-3.9s2-1.4 3.4-1.4c1.2 0 2.2.4 3 1.1.5.4.8 1 1 1.8l-2 .5c-.1-.5-.4-.9-.7-1.2s-.8-.5-1.4-.5c-.7 0-1.3.3-1.8.8s-.7 1.4-.7 2.6c0 1.3.2 2.2.7 2.7s1 .8 1.8.8c.5 0 1-.2 1.4-.5s.6-.8.8-1.5zm3.3-1.2c0-1 .2-1.9.5-2.6.2-.5.5-1 .9-1.4.4-.4.8-.7 1.3-.9.6-.3 1.3-.4 2.2-.4 1.5 0 2.7.5 3.5 1.4s1.3 2.2 1.3 3.8c0 1.6-.4 2.9-1.3 3.8S21 90 19.5 90s-2.7-.5-3.6-1.4c-.8-.9-1.2-2.2-1.2-3.7zm2-.1c0 1.1.3 2 .8 2.6s1.2.9 2 .9 1.5-.3 2-.9.8-1.5.8-2.6-.3-2-.8-2.6-1.2-.8-2-.8-1.5.3-2 .9c-.5.5-.8 1.3-.8 2.5zm9.2 5v-10h3l1.8 6.8 1.8-6.8h3v10h-1.9v-7.9l-2 7.9h-1.9l-2-7.9v7.9h-1.8zm11.7 0v-10h3.2c1.2 0 2 0 2.4.2.6.2 1.1.5 1.4 1 .4.5.6 1.2.6 2 0 .6-.1 1.1-.3 1.6-.2.4-.5.7-.9 1-.3.2-.7.4-1 .5-.4-.1-1.1-.1-2-.1h-1.3v3.8h-2.1zm2-8.3v2.8h1.1c.8 0 1.3-.1 1.6-.2s.5-.3.6-.5c.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4-.2 0-.7-.1-1.5-.1l-.9.1zm7.3 8.3v-10h2v10h-2zm4 0v-9.9h2v8.3h5v1.7l-7-.1zm8.5 0v-10h7.4v1.7h-5.4v2.2h5v1.7h-5v2.7H67v1.7h-7.6z" fill="#4c6c7b"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36" y1="69.126" x2="36" y2="40.965"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.5 64.4V41h4.7v28.2H14.9V41h4.7v23.4h32.9z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="35.915" y1="40.627" x2="35.915" y2="29.126"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.4 29.1h23L35.9 40.6 24.4 29.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="31.307" y1="50.268" x2="31.307" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M29 50.3v-4.7h4.7v4.7H29z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="40.693" y1="50.268" x2="40.693" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43 50.3h-4.7v-4.7H43v4.7z" fill="url(#f)"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="26.571" y1="59.655" x2="26.571" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.2 55h4.7v4.7h-4.7V55z" fill="url(#g)"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.429" y1="59.655" x2="45.429" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43.1 59.7V55h4.7v4.7h-4.7z" fill="url(#h)"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="35.958" y1="59.655" x2="35.958" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.3 55v4.7h-4.7V55h4.7z" fill="url(#i)"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
folder/view/index/icons/classic/conf.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="64.717" x2="36.2" y2="23.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="65.217" x2="36.2" y2="23.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 38.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V33c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V44.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 40c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="64.717" x2="50.918" y2="23.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="65.217" x2="50.918" y2="23.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 25.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V43c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V25.8zM50.9 50c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="64.717" x2="21.482" y2="23.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="65.217" x2="21.482" y2="23.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 62.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V25.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V43c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M16.5 86.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.3-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2-6.1 1.4-1.4 3.1-2.2 5.3-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.1.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.8 1.3-.7.8-1.1 2.2-1.1 4.1 0 2 .4 3.4 1.1 4.3.7.8 1.6 1.3 2.8 1.3.8 0 1.6-.3 2.2-.8.7-.8 1.1-1.7 1.4-2.8zm5.2-2c0-1.6.2-3 .7-4 .4-.8.8-1.5 1.5-2.2.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2 1.4 1.4 2.1 3.4 2.1 6 0 2.5-.7 4.5-2.1 6-1.4 1.4-3.2 2.2-5.5 2.2s-4.2-.7-5.6-2.1c-1.4-1.6-2.1-3.6-2.1-6.1zM25 84c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4c.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.2.3-3 1.2c-.8.9-1.2 2.3-1.2 4.1zm14.5 7.9V76.1h3.1L49 86.7V76.1h3v15.7h-3.2l-6.3-10.3v10.3h-3zm15.8 0V76.1h10.8v2.7h-7.6v3.7h6.6v2.7h-6.6v6.7h-3.2z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 4.2 KiB |
1
folder/view/index/icons/classic/config.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="72.717" x2="36.2" y2="31.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="73.217" x2="36.2" y2="31.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 46.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V41c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V52.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 48c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="72.717" x2="50.918" y2="31.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="73.217" x2="50.918" y2="31.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 33.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V51c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V33.8zM50.9 58c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="72.717" x2="21.482" y2="31.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="73.217" x2="21.482" y2="31.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 70.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V33.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V51c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
folder/view/index/icons/classic/cpp.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" stroke="#7191a1" stroke-width="2" fill="none"/><path d="M22.1 83.8L26 85c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.9 1.6-3.3zm7.4 7.3V71.2H36c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1zm14.6 16.5V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="13.15" y1="22" x2="54.15" y2="22" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 22h41v4h-41v-4z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.15" y1="33.75" x2="60.15" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 33.7h41v4.1h-41v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="13.15" y1="45.75" x2="54.15" y2="45.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 45.7h41v4.1h-41v-4.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="19.15" y1="58" x2="60.15" y2="58" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 58h41v4h-41v-4z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#f)"/><path d="M45.1 1L72 27.7H45.1V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
folder/view/index/icons/classic/cptx.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".118" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="none" stroke="#24342d" stroke-width="2"/><path d="M17.5 85.3l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.3 1.3-2.1 0-3.9-.7-5.2-2.1-1.4-1.4-2.1-3.4-2.1-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 2 0 3.6.6 4.8 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.2.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3.7.8 1.7 1.3 2.8 1.3.9 0 1.6-.3 2.2-.8s1.2-1.5 1.4-2.6zm5.9 5.8V75.3h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.6.4-1.1.6-1.7.7-.8.2-1.9.2-3.4.2h-2.1v5.9h-3.1zM26.7 78v4.5h1.8c1.3 0 2.1-.1 2.6-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4s-.8-.6-1.3-.7c-.5-.2-1.3-.2-2.5-.2h-1.5zM42 91.1V78h-4.8v-2.7h12.7V78h-4.7v13.1H42zm8.4 0l5.5-8.2-5-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.5 8.1h-3.9l-3.6-5.4-3.6 5.4h-3.7z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.362" x2="36.625" y2="974.612"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.862" x2="36.625" y2="974.112"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/></g><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d2e0d5"/><stop offset=".128" stop-color="#cde0d1"/><stop offset=".274" stop-color="#bfe0c7"/><stop offset=".429" stop-color="#a8e1b5"/><stop offset=".59" stop-color="#89e19d"/><stop offset=".732" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#d)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill="none" stroke="#24342d" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/cr2.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0{opacity:.99}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.005" x2="36.2" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#006b69"/><stop offset=".124" stop-color="#00807f"/><stop offset=".262" stop-color="#009393"/><stop offset=".41" stop-color="#00a3a3"/><stop offset=".571" stop-color="#00b0af"/><stop offset=".752" stop-color="#08b8b7"/><stop offset="1" stop-color="#14bbbb"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill-opacity="0" stroke="#006e6c" stroke-width="2"/></g><path d="M22.7 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.9 1.6-3.3zm7.4 7.3V71.2h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.1 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.8c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.2l2.4 3.9h-4.8l-2.9-4.3c-1-1.5-1.7-2.5-2.1-2.9s-.9-.6-1.3-.8c-.4-.1-1.1-.2-2-.2h-.8v8.3h-4.1zm4-11.5h3c1.9 0 3.1-.1 3.6-.2.5-.2.9-.4 1.1-.8.3-.4.4-.9.4-1.5 0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-2.9-.1h-3.1v5zm28.2 7.9V91H48.9c.1-1.3.6-2.6 1.3-3.8s2.2-2.8 4.3-4.8c1.7-1.6 2.8-2.7 3.2-3.2.5-.8.8-1.6.8-2.3 0-.8-.2-1.5-.7-2-.5-.5-1.1-.7-1.9-.7-.8 0-1.4.2-1.9.7-.5.5-.7 1.3-.8 2.4l-3.9-.3c.2-2.1.9-3.6 2.1-4.5 1.2-.9 2.7-1.4 4.5-1.4 2 0 3.5.5 4.6 1.6 1.1 1.1 1.7 2.4 1.7 3.9 0 .9-.2 1.7-.5 2.6-.3.8-.8 1.7-1.5 2.5-.5.6-1.3 1.4-2.5 2.5s-2 1.8-2.3 2.2c-.3.4-.6.7-.8 1.1h7.7z" fill="#fff"/><g class="st0"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.214" y1="74.229" x2="58.667" y2="87.682" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d6ede8"/><stop offset=".297" stop-color="#d3ebe6"/><stop offset=".44" stop-color="#c7e3df"/><stop offset=".551" stop-color="#b7d8d5"/><stop offset=".645" stop-color="#a0cbc9"/><stop offset=".729" stop-color="#84bab9"/><stop offset=".804" stop-color="#62a7a7"/><stop offset=".874" stop-color="#349394"/><stop offset=".938" stop-color="#007f7f"/><stop offset=".998" stop-color="#006b6a"/><stop offset="1" stop-color="#006b69"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#SVGID_2_)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#006e6c" stroke-width="2" stroke-linejoin="bevel"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.25" y1="37.353" x2="36.25" y2="85.161" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#008281"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M62.7 56.8c-1.6-.8-4.6-6.6-9.2-7-4-.3-9.1-1.8-11.9-2-3.5-5.8-9.5-15-14.5-19.9l13.8.7C37.2 19.8 27.7 23 27.7 23l6.4-5.3c-8.2-3.3-11.6 4.7-11.6 4.7-8.5-4.7-12.9 3.3-12.9 3.3l8.8.6C8.4 29.1 11.2 39 11.2 39l8.9-8c-1.9 4.4 2.3 7.5 2.3 7.5L25 27.7s9.3 10.6 12.2 21.4c-3.7 1.9-9.5 5-14 5.6-6.2.8-13.5 5-13.5 5v4.9h53.1l-.1-7.8z" opacity=".99" fill="url(#SVGID_3_)"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
folder/view/index/icons/classic/crdownload.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".8"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18.426" y1="41.139" x2="56.026" y2="41.139"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M18.4 38.8C29 26.5 48.7 28.9 56 43.4H38.3c-3.2 0-5.2-.1-7.5 1.1-2.6 1.4-4.6 3.9-5.3 6.9l-7.1-12.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="28.137" y1="53.702" x2="43.294" y2="53.702"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.1 53.7c0 4.2 3.4 7.6 7.6 7.6s7.6-3.4 7.6-7.6-3.4-7.6-7.6-7.6c-4.2 0-7.6 3.4-7.6 7.6z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="12.92" y1="58.664" x2="38.654" y2="58.664"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.7 63.6c-4.3 1.3-9.2-.1-12-4.8-2.1-3.6-7.6-13.2-10.1-17.5C7.9 54.7 15.4 73 31.3 76.1l7.4-12.5z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="34.293" y1="61.307" x2="58.524" y2="61.307"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42.8 46.1c3.5 3.3 4.3 8.6 1.9 12.8-1.8 3.1-7.6 12.9-10.4 17.6 16.4 1 28.3-15 22.9-30.3l-14.4-.1z" fill="url(#f)"/></g></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/crt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M22.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4.1-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5zm20.6 11.6V75.2h-5.9v-3.4h15.9v3.4h-5.9v16.7h-4.1z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
folder/view/index/icons/classic/crypt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M14.5 86.9l2.7.8c-.4 1.5-1.1 2.6-2 3.3-.9.7-2.2 1.1-3.6 1.1-1.8 0-3.3-.6-4.5-1.9-1.2-1.2-1.7-2.9-1.7-5.1 0-2.3.6-4 1.8-5.3 1.2-1.3 2.7-1.9 4.6-1.9 1.7 0 3 .5 4.1 1.5.6.6 1.1 1.4 1.4 2.5l-2.7.6c-.2-.7-.5-1.3-1-1.7-.5-.4-1.1-.6-1.9-.6-1 0-1.8.4-2.5 1.1-.6.7-.9 1.9-.9 3.5 0 1.7.3 2.9.9 3.7.6.7 1.4 1.1 2.4 1.1.7 0 1.4-.2 1.9-.7.4-.3.8-1 1-2zm5 5V78.3h5.8c1.5 0 2.5.1 3.2.4.7.2 1.2.7 1.6 1.3.4.6.6 1.3.6 2.1 0 1-.3 1.9-.9 2.5-.6.7-1.5 1.1-2.7 1.3.6.3 1.1.7 1.5 1.1.4.4.9 1.2 1.6 2.2l1.7 2.7h-3.3l-2-3c-.7-1.1-1.2-1.7-1.4-2-.3-.3-.5-.5-.8-.6-.3-.1-.8-.2-1.4-.2h-.6v5.7h-2.9zm2.8-7.9h2c1.3 0 2.1-.1 2.5-.2.3-.1.6-.3.8-.6s.3-.6.3-1c0-.5-.1-.8-.4-1.1-.2-.3-.6-.5-1-.5h-4.1V84zm13.8 7.9v-5.7l-5-7.9h3.2l3.2 5.4 3.1-5.4h3.2l-5 7.9v5.7h-2.7zm9.1 0V78.3h4.4c1.7 0 2.8.1 3.3.2.8.2 1.4.6 2 1.3.5.7.8 1.6.8 2.6 0 .8-.2 1.5-.5 2.1s-.7 1-1.2 1.3c-.5.3-.9.5-1.4.6-.7.1-1.6.2-2.8.2H48v5.1h-2.8zm2.7-11.3v3.9h1.5c1.1 0 1.8-.1 2.2-.2.4-.1.7-.4.9-.7.2-.3.3-.7.3-1.1 0-.5-.1-.9-.4-1.2-.3-.3-.7-.5-1.1-.6-.3-.1-1-.1-2-.1h-1.4zm13 11.3V80.6h-4v-2.3h10.8v2.3h-4v11.3h-2.8z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/cs.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M31.3 82.4l4 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.4 1.6-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8 1.7-1.8 4-2.8 6.9-2.8 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.8-.9c-1.5 0-2.7.5-3.7 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1s1.2-1.7 1.6-3.2zm6.4.9l4-.4c.2 1.3.7 2.3 1.5 2.9s1.7.9 3 .9 2.3-.3 3-.8c.7-.6 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.9s1.4-1.6 2.5-2c1.1-.5 2.4-.7 4-.7 2.5 0 4.5.6 5.7 1.7 1.3 1.1 2 2.6 2 4.4l-4.1.2c-.2-1-.6-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.8 1.3 2 .5 3.5.9 4.4 1.4s1.7 1.2 2.2 2c.5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.6 1.7-2.7 2.2s-2.6.7-4.4.7c-2.6 0-4.5-.6-5.9-1.8s-2.2-2.6-2.5-4.8z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
folder/view/index/icons/classic/csh.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M23.4 85.6l3.4 1.1c-.5 1.9-1.4 3.3-2.6 4.2s-2.7 1.4-4.6 1.4c-2.3 0-4.2-.8-5.6-2.3s-2.2-3.7-2.2-6.4c0-2.9.7-5.1 2.2-6.7s3.4-2.4 5.8-2.4c2.1 0 3.8.6 5.1 1.9.8.7 1.4 1.8 1.8 3.2l-3.4.8c-.2-.9-.6-1.6-1.3-2.1s-1.4-.8-2.3-.8c-1.3 0-2.3.5-3.1 1.4s-1.2 2.4-1.2 4.4c0 2.2.4 3.7 1.2 4.6s1.8 1.4 3 1.4c.9 0 1.7-.3 2.4-.9s1.1-1.6 1.4-2.8zm5.5.7l3.4-.3c.2 1.1.6 2 1.2 2.5s1.5.8 2.5.8c1.1 0 2-.2 2.5-.7s.8-1 .8-1.7c0-.4-.1-.8-.4-1s-.7-.5-1.2-.7c-.4-.1-1.3-.4-2.8-.8-1.9-.5-3.2-1-3.9-1.7-1.1-.9-1.6-2.1-1.6-3.5 0-.9.2-1.7.7-2.5s1.2-1.3 2.1-1.7 2.1-.6 3.4-.6c2.2 0 3.8.5 4.9 1.4s1.7 2.2 1.7 3.8l-3.5.2c-.1-.9-.5-1.5-1-1.9s-1.2-.6-2.2-.6c-1 0-1.8.2-2.4.6-.4.3-.6.6-.6 1.1 0 .4.2.8.5 1 .4.4 1.5.8 3.2 1.1s2.9.8 3.7 1.2 1.4 1 1.9 1.7.7 1.7.7 2.7c0 1-.3 1.9-.8 2.8s-1.3 1.5-2.3 1.9-2.2.6-3.7.6c-2.2 0-3.8-.5-5-1.5s-1.6-2.3-1.8-4.2zm16.9 5.6V74.7h3.5v6.8H56v-6.8h3.5v17.2H56v-7.5h-6.8v7.5h-3.4z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
folder/view/index/icons/classic/cson.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="5" x2="36" y2="103" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="13.15" y1="80" x2="54.15" y2="80" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 22h41v4h-41v-4z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.15" y1="68.25" x2="60.15" y2="68.25" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 33.7h41v4.1h-41v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="13.15" y1="56.25" x2="54.15" y2="56.25" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 45.7h41v4.1h-41v-4.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="19.15" y1="44" x2="60.15" y2="44" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 58h41v4h-41v-4z" fill="url(#e)"/><path d="M45 1l27 26.7V99H0V1h45z" fill="none" stroke="#7191a1" stroke-width="2"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.037" y1="76.187" x2="58.537" y2="89.687" gradientTransform="matrix(1 0 0 -1 0 104)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#f)"/><path d="M45 1l27 26.7H45V1z" fill="none" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M16.5 86.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8s-2.5 1.3-4.2 1.3c-2.1 0-3.8-.7-5.2-2.1-1.3-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2-6.1 1.4-1.4 3.1-2.2 5.3-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.1.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.8 1.3-.7.8-1.1 2.2-1.1 4.1 0 2 .4 3.4 1.1 4.3.7.8 1.6 1.3 2.8 1.3.8 0 1.6-.3 2.2-.8.7-.8 1.2-1.7 1.4-2.8zm5 .7l3.1-.3c.2 1 .6 1.8 1.1 2.3s1.3.7 2.3.7 1.8-.2 2.3-.7c.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.2-.3-.6-.5-1.1-.7-.4-.1-1.2-.4-2.5-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.4-.4-1.1-.5-2-.5s-1.6.2-2.2.6c-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 2.9 1.1s2.7.7 3.4 1.1 1.3.9 1.7 1.6c.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8-2.1.6-3.4.6c-2 0-3.5-.5-4.6-1.4-1-1-1.7-2.4-1.9-4.1zm14.9-2.7c0-1.6.2-3 .7-4 .4-.8.8-1.5 1.5-2.2.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2 1.4 1.4 2.1 3.4 2.1 6 0 2.5-.7 4.5-2.1 6-1.4 1.4-3.2 2.2-5.5 2.2s-4.2-.7-5.6-2.1c-1.4-1.6-2.1-3.6-2.1-6.1zm3.2-.1c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4 1.2-2.3 1.2-4.1c0-1.8-.4-3.2-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.4.4-3.2 1.3c-.6.8-1 2.2-1 4zm14.6 7.9V76.1h3.1l6.4 10.5V76.1h3v15.7h-3.2l-6.3-10.3v10.3h-3v.1z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
folder/view/index/icons/classic/csproj.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M13 85.9l2.1.7c-.3 1.2-.9 2-1.6 2.6-.8.6-1.7.9-2.9.9C9.1 90 8 89.5 7 88.5c-.9-1-1.4-2.3-1.4-4 0-1.8.5-3.2 1.4-4.2.9-1 2.2-1.5 3.7-1.5 1.3 0 2.4.4 3.2 1.2.5.5.9 1.1 1.1 2l-2.2.5c-.1-.6-.4-1-.8-1.3-.4-.3-.9-.5-1.5-.5-.8 0-1.5.3-2 .9-.5.6-.8 1.5-.8 2.8 0 1.4.2 2.3.7 2.9s1.1.9 1.9.9c.6 0 1.1-.2 1.5-.5.7-.5 1-1 1.2-1.8zm3.4.4l2.1-.2c.1.7.4 1.2.8 1.6s.9.5 1.6.5c.7 0 1.2-.1 1.6-.4.4-.3.5-.6.5-1 0-.3-.1-.5-.2-.6-.2-.2-.4-.3-.8-.5-.3-.1-.8-.2-1.8-.5-1.2-.3-2-.6-2.5-1.1-.7-.6-1-1.3-1-2.2 0-.5.2-1.1.5-1.5.3-.5.8-.8 1.4-1.1.6-.2 1.3-.4 2.1-.4 1.4 0 2.4.3 3.1.9.7.6 1 1.4 1.1 2.4l-2.2.1c-.1-.6-.3-.9-.6-1.2-.3-.2-.8-.4-1.4-.4-.6 0-1.1.1-1.5.4-.2.2-.3.4-.3.7 0 .3.1.5.3.7.3.2.9.5 2 .7 1.1.2 1.9.5 2.4.8.5.3.9.6 1.2 1.1.3.5.4 1 .4 1.7 0 .6-.2 1.2-.5 1.7s-.8.9-1.5 1.2c-.6.3-1.4.4-2.4.4-1.4 0-2.4-.3-3.2-.9-.6-.8-1-1.7-1.2-2.9zm10.7 3.5V79.1h3.5c1.3 0 2.2.1 2.6.2.6.2 1.1.5 1.6 1.1.4.5.6 1.2.6 2.1 0 .7-.1 1.2-.4 1.7-.2.4-.5.8-.9 1.1-.4.3-.8.4-1.1.5-.5.1-1.3.2-2.3.2h-1.4v4.1h-2.2zm2.2-8.9v3h1.2c.9 0 1.4-.1 1.7-.2.3-.1.5-.3.7-.5.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-1s-.5-.4-.9-.4c-.3 0-.8-.1-1.6-.1h-1zm7.9 8.9V79.1h4.6c1.2 0 2 .1 2.5.3.5.2.9.5 1.3 1 .3.5.5 1.1.5 1.7 0 .8-.2 1.5-.7 2-.5.5-1.2.9-2.1 1 .5.3.9.6 1.2.9.3.3.7.9 1.2 1.7l1.3 2.1h-2.6l-1.6-2.3c-.6-.8-.9-1.4-1.2-1.6-.2-.2-.4-.4-.7-.4-.2-.1-.6-.1-1.1-.1h-.4v4.5h-2.2zm2.2-6.2H41c1.1 0 1.7 0 2-.1s.5-.2.6-.5c.1-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4h-3.3v2.7zm8.3.9c0-1.1.2-2 .5-2.8.2-.5.6-1 1-1.5.4-.4.9-.8 1.4-1 .7-.3 1.5-.4 2.3-.4 1.6 0 2.9.5 3.8 1.5 1 1 1.4 2.3 1.4 4.1 0 1.7-.5 3.1-1.4 4.1-1 1-2.2 1.5-3.8 1.5-1.6 0-2.9-.5-3.8-1.5-.9-.9-1.4-2.3-1.4-4zm2.2-.1c0 1.2.3 2.1.9 2.8.6.6 1.3.9 2.2.9s1.6-.3 2.1-.9c.6-.6.8-1.6.8-2.8 0-1.2-.3-2.1-.8-2.8-.5-.6-1.3-.9-2.2-.9-.9 0-1.6.3-2.2.9-.5.7-.8 1.6-.8 2.8zm13.9-5.3H66v6.8c0 .9-.1 1.6-.2 2.1-.2.6-.6 1.1-1.2 1.5-.6.4-1.3.6-2.2.6-1.1 0-1.9-.3-2.5-.9-.6-.6-.9-1.5-.9-2.6l2.1-.2c0 .6.1 1.1.3 1.3.2.4.6.6 1.1.6.5 0 .8-.1 1-.4.2-.3.3-.8.3-1.7v-7.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
folder/view/index/icons/classic/css.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" stroke="#7191a1" stroke-width="2" fill="none"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="21.45" y1="61.55" x2="21.45" y2="21.95"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M14.4 44.1v-4.9c1-.1 1.8-.2 2.3-.5.5-.2.9-.7 1.3-1.2.4-.6.6-1.3.8-2.2.1-.7.2-1.8.2-3.4 0-2.7.1-4.5.4-5.6.2-1 .7-1.9 1.3-2.5s1.6-1.1 2.8-1.5c.8-.2 2.1-.4 3.9-.4h1.1v4.9c-1.5 0-2.5.1-2.9.3-.4.2-.7.4-1 .8-.2.3-.3.9-.3 1.8s-.1 2.5-.2 4.9c-.1 1.4-.2 2.5-.5 3.4-.3.8-.7 1.5-1.1 2.1-.4.5-1.1 1.1-2 1.7.8.5 1.5 1 2 1.6s.9 1.4 1.2 2.3.5 2.1.5 3.6c.1 2.3.1 3.7.1 4.4 0 .9.1 1.5.3 1.9.2.4.6.6 1 .8.4.2 1.4.3 2.9.3v4.9h-1.1c-1.8 0-3.3-.1-4.2-.4-1-.3-1.8-.8-2.5-1.5s-1.1-1.5-1.4-2.5c-.2-1-.3-2.6-.3-4.8 0-2.5-.1-4.2-.3-4.9-.3-1.1-.8-1.9-1.4-2.4-.7-.6-1.6-1-2.9-1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="51.7" y1="61.45" x2="51.7" y2="21.95"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M58.7 44.1c-1 .1-1.8.2-2.3.5-.5.2-.9.7-1.3 1.2-.4.6-.6 1.3-.8 2.2-.1.7-.2 1.8-.2 3.4 0 2.7-.1 4.5-.4 5.6-.2 1.1-.7 1.9-1.3 2.5-.6.6-1.6 1.1-2.8 1.5-.8.2-2.1.4-3.9.4h-1.1v-4.9c1.5 0 2.4-.1 2.9-.3s.8-.5 1-.8c.2-.3.3-.9.3-1.8 0-.8.1-2.4.2-4.8.1-1.4.3-2.6.6-3.4.3-.9.7-1.6 1.2-2.2s1.1-1.1 1.9-1.6c-1-.7-1.8-1.3-2.2-1.9-.6-.9-1.1-2.1-1.3-3.4-.2-1-.3-3.1-.3-6.3 0-1-.1-1.7-.3-2.1-.2-.3-.5-.6-.9-.8-.4-.2-1.4-.3-3-.3V22h1.1c1.8 0 3.3.1 4.2.4 1 .3 1.8.8 2.5 1.5s1.1 1.5 1.4 2.5c.2 1 .4 2.6.4 4.8 0 2.5.1 4.1.3 4.9.3 1.1.8 1.9 1.4 2.3.6.5 1.6.7 2.8.8l-.1 4.9z" fill="url(#c)"/></g><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/><path d="M22.1 84.2l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.1-1.8 1.5-3.2zm6.3.8l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8.7-.6 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.5-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.2.3-.5.8-.5 1.3s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4 1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.8-1.3-.9-2.1-2.6-2.4-4.9zm18.7 0l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8.7-.6 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.5-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4 1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.8-1.2-.8-2-2.5-2.3-4.8z" fill="#4c6c7b"/></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
folder/view/index/icons/classic/csv.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" stroke="#7191a1" stroke-width="2" fill="none"/><path d="M21.6 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.9 1.6-3.3zm6.4.8l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.4-1-2.2-2.7-2.4-4.9zm24.7 6.5l-7.1-19.8H50l5 14.6 4.9-14.7h4.3L57 91.1h-4.3z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="62.289" x2="36.75" y2="26.584"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.9 26.8H61v8.7H47.9v-8.7zm0 13.4H61V49H47.9v-8.8zm0 13.4H61v8.7H47.9v-8.7zm-17.7 0h13.1v8.7H30.2v-8.7zm-17.8 0h13.1v8.7h-13l-.1-8.7zm17.9-27h13.1v8.7H30.3v-8.7zm-17.7 0h13.1v8.7H12.6v-8.7zm17.7 13.6h13.1V49H30.3v-8.8zm-17.7 0h13.1V49H12.6v-8.8z" opacity=".85" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1L72 27.7H45.1V1z" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel" fill="none"/></svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
folder/view/index/icons/classic/cue.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><style>.st0,.st6{opacity:.95}.st6{enable-background:new;fill:#a07802}</style><g class="st0"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="35.75" y1="2.995" x2="35.75" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#efc402"/><stop offset=".038" stop-color="#f1c829"/><stop offset=".147" stop-color="#f4d264"/><stop offset=".258" stop-color="#f7dc8b"/><stop offset=".372" stop-color="#f9e5ac"/><stop offset=".488" stop-color="#fbecc7"/><stop offset=".606" stop-color="#fcf3dd"/><stop offset=".728" stop-color="#fef9ee"/><stop offset=".856" stop-color="#fffdf9"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7V99h-72V1h45z" fill="url(#SVGID_1_)"/><path d="M44.8 1l27 26.7V99h-72V1h45z" fill-opacity="0" stroke="#ba9c02" stroke-width="2"/></g><path d="M20.9 84.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.2.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.8 1.2-1.9 1.5-3.3zm7.4-12.6h4V83c0 1.7 0 2.8.2 3.3.2.8.6 1.5 1.2 2 .7.5 1.5.7 2.7.7 1.1 0 2-.2 2.6-.7.6-.5.9-1 1.1-1.7.1-.7.2-1.8.2-3.4v-11h4v10.4c0 2.4-.1 4.1-.3 5-.2 1-.6 1.8-1.2 2.5s-1.4 1.2-2.4 1.6-2.3.6-3.9.6c-1.9 0-3.4-.2-4.4-.7-1-.4-1.8-1-2.3-1.7s-1-1.4-1.1-2.2c-.3-1.1-.4-2.8-.4-5V72.2zm20.3 19.9V72.2h14.9v3.4H52.6V80h10.1v3.3H52.6v5.4h11.2V92H48.6z" fill="#a07802"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.75" y1="38.633" x2="35.75" y2="83.181" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#a47d03"/><stop offset=".533" stop-color="#debe00"/><stop offset=".639" stop-color="#cfad04"/><stop offset="1" stop-color="#a07802"/></linearGradient><path d="M35.8 18.8c-12.4 0-22.5 10-22.5 22.3s10.1 22.3 22.5 22.3 22.5-10 22.5-22.3-10.1-22.3-22.5-22.3zm0 29.9c-4.3 0-7.7-3.5-7.7-7.6 0-4.3 3.5-7.6 7.7-7.6 4.3 0 7.7 3.5 7.7 7.6 0 4.2-3.5 7.6-7.7 7.6z" opacity=".95" fill="url(#SVGID_2_)"/><path class="st6" d="M35.8 38.3c-1.6 0-2.8 1.3-2.8 2.8 0 1.6 1.3 2.8 2.8 2.8 1.6 0 2.8-1.3 2.8-2.8-.1-1.6-1.2-2.8-2.8-2.8zm0 3.8c-.5 0-1-.4-1-1 0-.5.4-1 1-1 .5 0 1 .4 1 1 0 .5-.6 1-1 1z"/><path class="st6" d="M35.8 32.8c-4.7 0-8.4 3.8-8.4 8.3 0 4.7 3.8 8.3 8.4 8.3 4.7 0 8.4-3.8 8.4-8.3 0-4.7-3.7-8.3-8.4-8.3zm0 15.2c-3.9 0-7-3.1-7-6.9s3.1-6.9 7-6.9 7 3.1 7 6.9-3.1 6.9-7 6.9z"/><g class="st0"><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.344" y1="74.23" x2="58.844" y2="87.73" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#fff"/><stop offset=".234" stop-color="#fffefb"/><stop offset=".369" stop-color="#fefaf1"/><stop offset=".481" stop-color="#fdf5e4"/><stop offset=".579" stop-color="#fcf0d2"/><stop offset=".669" stop-color="#fae9bc"/><stop offset=".752" stop-color="#f9e2a2"/><stop offset=".831" stop-color="#f7da83"/><stop offset=".905" stop-color="#f4d15d"/><stop offset=".975" stop-color="#f1c827"/><stop offset="1" stop-color="#efc402"/></linearGradient><path d="M45.2 1l27 26.7h-27V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l27 26.7h-27V1z" fill-opacity="0" stroke="#ba9c02" stroke-width="2" stroke-linejoin="bevel"/></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
folder/view/index/icons/classic/cur.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.6 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1 .7-.8 1.2-1.9 1.6-3.3zm7.3-12.6h4V82c0 1.7 0 2.8.2 3.3.2.8.6 1.5 1.2 2 .7.4 1.6.7 2.7.7s2-.2 2.6-.7c.6-.5.9-1 1-1.7.1-.7.2-1.8.2-3.4v-11h4v10.4c0 2.4-.1 4.1-.3 5s-.6 1.8-1.2 2.5-1.3 1.3-2.3 1.7c-1 .4-2.3.6-3.8.6-1.9 0-3.4-.2-4.3-.7s-1.8-1-2.3-1.7-.9-1.4-1.1-2.2c-.3-1.1-.4-2.8-.4-5V71.2zm20.2 19.9V71.2h8.5c2.1 0 3.7.2 4.7.5 1 .4 1.7 1 2.3 1.9.6.9.9 2 .9 3.1 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.8c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.2l2.4 3.9h-4.8l-2.9-4.3c-1-1.5-1.7-2.5-2.1-2.9-.4-.4-.8-.7-1.2-.8-.4-.1-1.1-.2-2-.2h-.8v8.3h-4.2zm4.1-11.5h3c1.9 0 3.1-.1 3.6-.2.5-.2.9-.4 1.1-.8.3-.4.4-.9.4-1.5 0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-2.9-.1h-3.1v5z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#b)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g transform="matrix(-1.52199 1.52234 -1.40668 -1.40636 178.231 24.105)" opacity=".95"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="47.337" y1="50.605" x2="47.337" y2="13.604"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M52.4 34l4.3.5-.6 6.6 3.9-.4-7.6 15.5L48 39.3l3.8 1.3.6-6.6z" fill="url(#c)"/></g></svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
folder/view/index/icons/classic/dart.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M6.9 74.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.9.3H6.9V74.3zm3.2 2.7v10.4h2.4c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7.3-.3.6-.8.8-1.5.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8-.5-1.2-.9-1.5c-.4-.4-.9-.6-1.5-.7-.4-.1-1.3-.1-2.6-.1h-1.4zm27.3 13.1h-3.5l-1.4-3.6h-6.4l-1.3 3.6h-3.4l6.2-15.7H31l6.4 15.7zm-6-6.3L29.2 78 27 83.8h4.4zm7.7 6.3V74.3h6.8c1.7 0 2.9.1 3.7.4.8.3 1.4.8 1.9 1.5s.7 1.6.7 2.5c0 1.2-.4 2.2-1.1 2.9-.7.8-1.8 1.3-3.2 1.5.7.4 1.3.8 1.7 1.3.5.5 1.1 1.3 1.8 2.6l1.9 3.1h-3.9l-2.3-3.4c-.8-1.2-1.4-2-1.7-2.3-.3-.3-.6-.5-1-.7-.3-.1-.9-.2-1.6-.2h-.7v6.6h-3zm3.2-9.1h2.4c1.5 0 2.5-.1 2.9-.2s.7-.4.9-.7.3-.7.3-1.2-.1-1-.4-1.3c-.3-.3-.7-.5-1.2-.6-.3 0-1-.1-2.4-.1h-2.5V81zm16.5 9.1V77h-4.7v-2.7h12.7V77H62v13.1h-3.2z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.001" y1="66.001" x2="36.001" y2="25.998"><stop offset="0" stop-color="#adccdc"/><stop offset=".024" stop-color="#a9c8d8"/><stop offset=".323" stop-color="#81a1b0"/><stop offset=".595" stop-color="#648493"/><stop offset=".83" stop-color="#527281"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M22.9 27.5l7.9 6.4c-.2-2.3-1.2-4.9-2.8-6.5-1.1-1.1-2.1-1.5-3.2-1.4-.8.2-1.4.8-1.9 1.5zM17.4 38c1.6 1.6 4.2 2.6 6.5 2.8l-6.4-7.9c-.7.5-1.3 1.1-1.5 2-.1 1 .3 2 1.4 3.1zm31.8 14.1l-7.1 7.1.1.1c.9.9 2.3 1.6 3.7 1.9.4.1.8.1 1.2.1.7 0 1.4-.1 1.9-.4l4.8 4.8c.2.2.6.4.9.4s.6-.1.9-.4c.5-.5.5-1.3 0-1.8L50.8 59c1-2.2-.1-5.3-1.6-6.9zM19.1 30.8l21.3 26.5 6.9-6.9-26.5-21.3c-.5-.4-1.2-.4-1.7.1-.4.4-.4 1.1 0 1.6z" fill="url(#d)"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
folder/view/index/icons/classic/dat.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |