move
5
public/config.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"backend_de": "http://localhost:31204",
|
||||
"backend_dev": "https://webplay.rocks",
|
||||
"backend": "https://webplay.rocks"
|
||||
}
|
||||
29
public/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="Cache-control" content="no-cache" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
||||
<meta name="theme-color" content="#31363b" />
|
||||
<link rel="icon" type="image/svg+xml" href="static/icon_16.svg" sizes="16x16" />
|
||||
<link rel="icon" type="image/svg+xml" href="static/icon_24.svg" sizes="24x24" />
|
||||
<link rel="icon" type="image/svg+xml" href="static/icon_32.svg" sizes="32x32" />
|
||||
<link rel="icon" type="image/svg+xml" href="static/icon_48.svg" sizes="48x48" />
|
||||
<link rel="icon" type="image/svg+xml" href="static/icon_64.svg" sizes="any" />
|
||||
<title>WebPlay.rocks</title>
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<link rel="stylesheet" type="text/css" href="static/style.css" />
|
||||
<link rel="stylesheet" type="text/css" href="static/app.css" />
|
||||
<link rel="stylesheet" type="text/css" href="static/css/dialogRadios.css" />
|
||||
<link rel="stylesheet" type="text/css" href="static/css/dialogSettings.css" />
|
||||
<link rel="stylesheet" type="text/css" href="static/css/dialogProfile.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
49
public/manifest.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"short_name": "WebPlay",
|
||||
"name": "WebPlay by Artem Anufrij",
|
||||
"start_url": "/",
|
||||
"background_color": "#31363b",
|
||||
"display": "standalone",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/icon_16.png",
|
||||
"sizes": "16x16",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_24.png",
|
||||
"sizes": "24x24",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_32.png",
|
||||
"sizes": "32x32",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_64.png",
|
||||
"sizes": "64x64",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/icon_192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
||||
741
public/static/app.css
Normal file
@@ -0,0 +1,741 @@
|
||||
body {
|
||||
overflow-y: hidden;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#app-body {
|
||||
overflow-y: overlay;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight: 200;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input:invalid {
|
||||
border-color: var(--danger);
|
||||
}
|
||||
|
||||
footer {
|
||||
opacity: 0.5;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td.fillCell {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
td.fillCell>* {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.configValues td>* {
|
||||
margin: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.configValues td:first-child {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.configValues td:last-child {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.selected {
|
||||
background-color: var(--selected);
|
||||
}
|
||||
|
||||
#albums,
|
||||
#artists,
|
||||
#boxes,
|
||||
#radios,
|
||||
#search,
|
||||
#welcome {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-wrap: wrap;
|
||||
overflow-y: overlay;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.componentTitle {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
background-color: #ffffffb0;
|
||||
width: 100%;
|
||||
padding: 2px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.favourite {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.favourite.active {
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
/*
|
||||
DIALOGS
|
||||
*/
|
||||
|
||||
#artistViewer #background,
|
||||
#albumViewer #background,
|
||||
#boxViewer #background {
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
top: -16px;
|
||||
left: -16px;
|
||||
right: -16px;
|
||||
bottom: -16px;
|
||||
position: absolute;
|
||||
filter: blur(8px);
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
/*
|
||||
ARTIST
|
||||
*/
|
||||
.artistCover {
|
||||
height: 128px;
|
||||
width: 256px;
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
.artistName {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
max-width: 256px;
|
||||
}
|
||||
|
||||
/*
|
||||
ALBUM
|
||||
*/
|
||||
.container {
|
||||
align-self: flex-start;
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
animation: fadeIn ease 0.3s;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideToTop {
|
||||
from {
|
||||
margin-top: -47px;
|
||||
}
|
||||
|
||||
to {
|
||||
margin-top: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideOverTop {
|
||||
from {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
to {
|
||||
margin-top: -47px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes zoomIn {
|
||||
from {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
.album>*,
|
||||
.album-line>*,
|
||||
.artist>*,
|
||||
.box>*,
|
||||
.radio>* {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.albumCover,
|
||||
.radioCover {
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.albumCover.line {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.albumTitle,
|
||||
.radioTitle {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
max-width: 128px;
|
||||
}
|
||||
|
||||
.radioUrl {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
max-width: 128px;
|
||||
font-size: 0.8rem;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
/*
|
||||
TRACK
|
||||
*/
|
||||
.tracks,
|
||||
.videos {
|
||||
display: block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
overflow-y: auto;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.track,
|
||||
.video {
|
||||
max-width: 100%;
|
||||
cursor: pointer;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.track {
|
||||
padding: 12px 8px;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.track:hover:not(.selected),
|
||||
.video:hover:not(.selected) {
|
||||
background-color: var(--button-hover);
|
||||
}
|
||||
|
||||
.track input {
|
||||
width: 100%;
|
||||
margin: 4px 0 0 0;
|
||||
}
|
||||
|
||||
.trackDetails {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.trackCover {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
flex-shrink: 0;
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
.trackCover,
|
||||
.videoCover {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.trackTitle,
|
||||
.videoTitle {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.radioCover {
|
||||
border-radius: 64px;
|
||||
}
|
||||
|
||||
.radioTitle {
|
||||
margin-top: 4px;
|
||||
width: 100%;
|
||||
padding: 2px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
BOX
|
||||
*/
|
||||
.boxCover {
|
||||
width: 128px;
|
||||
height: 180px;
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
.boxTitle {
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
max-width: 128px;
|
||||
}
|
||||
|
||||
.video {
|
||||
margin: 0;
|
||||
padding: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.videoCover {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.videoTitle {
|
||||
width: auto;
|
||||
left: 12px;
|
||||
right: 12px;
|
||||
bottom: 12px;
|
||||
}
|
||||
|
||||
/*
|
||||
WELCOME
|
||||
*/
|
||||
|
||||
#welcome #welcomeLeft {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
#welcome h3 {
|
||||
margin-bottom: 0px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
#welcome #banner {
|
||||
min-height: 256px;
|
||||
background: radial-gradient(circle farthest-side at left 5% top 30px,
|
||||
var(--dark90),
|
||||
var(--dark));
|
||||
color: var(--white);
|
||||
border-bottom: 1px solid var(--light-border);
|
||||
}
|
||||
|
||||
#welcome #banner h1 {
|
||||
text-shadow: 1px 4px 2px black;
|
||||
}
|
||||
|
||||
/*
|
||||
HISTORY
|
||||
*/
|
||||
#history {
|
||||
max-height: 110px;
|
||||
min-height: 110px;
|
||||
overflow-y: hidden;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
#history .boxCover {
|
||||
width: 68px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#history .boxTitle {
|
||||
width: 68px;
|
||||
}
|
||||
|
||||
#history .albumCover,
|
||||
#history .radioCover {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#history .albumTitle,
|
||||
#history .radioTitle {
|
||||
max-width: 96px;
|
||||
}
|
||||
|
||||
#history .artistCover {
|
||||
width: 192px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#history .artistName {
|
||||
width: 192px;
|
||||
}
|
||||
|
||||
@media (max-width: 480px),
|
||||
(max-height: 480px) {
|
||||
#history {
|
||||
max-height: 220px;
|
||||
min-height: 110px;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
NEWEST
|
||||
*/
|
||||
#newest {
|
||||
border-left: 1px solid var(--dark-border);
|
||||
width: 228px;
|
||||
background-color: var(--white);
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
#newest .boxCover {
|
||||
width: 90px;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
#newest .boxTitle {
|
||||
width: 90px;
|
||||
}
|
||||
|
||||
#mostListened .track {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
#newestVideos {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
#mostViewed {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
#mostViewedVideos {
|
||||
flex-wrap: wrap;
|
||||
max-height: 292px;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
#mostViewedVideos .video {
|
||||
padding: 8px;
|
||||
flex-grow: 1;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
#mostViewedVideos .video:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#mostViewedVideos .videoCover {
|
||||
width: 156px;
|
||||
}
|
||||
|
||||
#mostViewedVideos .videoTitle {
|
||||
width: 156px;
|
||||
left: initial;
|
||||
right: initial;
|
||||
bottom: 8px;
|
||||
}
|
||||
|
||||
/*
|
||||
SEARCH
|
||||
*/
|
||||
#search .boxCover {
|
||||
width: 90px;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
#search .boxTitle {
|
||||
width: 90px;
|
||||
}
|
||||
|
||||
#search .radioTitle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#search .track {
|
||||
padding: 0;
|
||||
margin: 12px;
|
||||
justify-content: flex-end;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
#search .track .trackDetails {
|
||||
flex-direction: column-reverse;
|
||||
max-height: 128px;
|
||||
}
|
||||
|
||||
#search .track .trackDetails .trackTitle {
|
||||
white-space: initial;
|
||||
max-lines: 3;
|
||||
box-sizing: content-box;
|
||||
max-width: 64px;
|
||||
max-height: 96px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#search .track .trackDetails img {
|
||||
margin: 0;
|
||||
margin-top: 4px;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
#search .video .videoCover {
|
||||
height: 128px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#search .video:hover,
|
||||
#search .track:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#login,
|
||||
#setup {
|
||||
background: radial-gradient(circle farthest-side at left 5% top 30px,
|
||||
var(--dark90),
|
||||
var(--dark));
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow-y: auto;
|
||||
flex-grow: 1;
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
#login form,
|
||||
#setup form {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#loginLogin button,
|
||||
#loginRegestration button,
|
||||
#setup button {
|
||||
display: initial;
|
||||
color: var(--white);
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
#loginLogin input {
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
#login h1,
|
||||
#setup h1 {
|
||||
margin-top: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#loginViewer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#loginLogo {
|
||||
width: 192px;
|
||||
height: 192px;
|
||||
}
|
||||
|
||||
#loginLogin {
|
||||
padding-right: 32px;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
#loginContinue {
|
||||
border-left: 1px solid var(--light-border);
|
||||
padding-left: 32px;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#loginGuest button {
|
||||
border-radius: 0px;
|
||||
font-size: x-large;
|
||||
padding: 4px;
|
||||
padding-right: 12px;
|
||||
border-bottom-right-radius: 29px;
|
||||
border-top-right-radius: 29px;
|
||||
border-left: 4px solid var(--primary);
|
||||
}
|
||||
|
||||
#loginGuest button:hover {
|
||||
background-color: var(--white);
|
||||
}
|
||||
|
||||
.loadingItem {
|
||||
width: 100%;
|
||||
animation: glow 1s infinite alternate;
|
||||
text-align: center;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.loading {
|
||||
animation: glow 1s infinite alternate;
|
||||
}
|
||||
|
||||
.z1 {
|
||||
z-index: 1;
|
||||
}
|
||||
.z2 {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@keyframes glow {
|
||||
to {
|
||||
background-color: var(--selected50);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
#app-body {
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#artists .artistCover {
|
||||
min-width: 100%;
|
||||
height: initial;
|
||||
min-height: 128px;
|
||||
}
|
||||
|
||||
#artists .artistName {
|
||||
max-width: initial;
|
||||
}
|
||||
|
||||
nav>div:last-child>input {
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
#loginLogin {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#loginContinue {
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#loginViewer {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#newest {
|
||||
margin-top: 8px;
|
||||
border-top: 1px solid var(--dark-border);
|
||||
width: 100%;
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
#mostListened .trackTitle {
|
||||
max-width: 256px;
|
||||
}
|
||||
|
||||
#mostUsed {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#mostViewedVideos .video {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px),
|
||||
(max-height: 480px) {
|
||||
|
||||
.albumCover,
|
||||
.radioCover {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
.albumTitle,
|
||||
.radioTitle {
|
||||
max-width: 96px;
|
||||
}
|
||||
|
||||
#search .boxCover {
|
||||
width: 68px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#search .boxTitle {
|
||||
width: 68px;
|
||||
}
|
||||
|
||||
#search .artistCover {
|
||||
width: 192px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#search .artistName {
|
||||
width: 192px;
|
||||
}
|
||||
|
||||
#search .track {
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#search .video .videoCover {
|
||||
height: 96px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#boxes .boxCover {
|
||||
width: 96px;
|
||||
height: 145px;
|
||||
}
|
||||
|
||||
#boxes .boxTitle {
|
||||
width: 96px;
|
||||
}
|
||||
|
||||
#loginLogo {
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
#login button {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
#welcome #banner {
|
||||
height: 160px;
|
||||
min-height: 160px;
|
||||
}
|
||||
|
||||
#newest {
|
||||
min-height: initial;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 480px) {
|
||||
#loginLogo {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#login h1 {
|
||||
margin-bottom: 12px;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
15
public/static/css/dialogProfile.css
Normal file
@@ -0,0 +1,15 @@
|
||||
#profileBody {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#profileBody #newUserPass {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#profileBody input[type="text"],
|
||||
#profileBody input[type="password"] {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
30
public/static/css/dialogRadios.css
Normal file
@@ -0,0 +1,30 @@
|
||||
#newRadio {
|
||||
display: flex;
|
||||
}
|
||||
#radiosBody th {
|
||||
text-align: left;
|
||||
padding: 2px;
|
||||
}
|
||||
#radiosBody th.maxWidth {
|
||||
width: 99%;
|
||||
}
|
||||
#radiosBody td {
|
||||
white-space: nowrap;
|
||||
padding: 2px;
|
||||
}
|
||||
#radiosBody table button {
|
||||
opacity: 0.25;
|
||||
}
|
||||
#radiosBody table button:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
#radiosBody .radioCover {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
#radiosBody input[type="file"] {
|
||||
position: absolute;
|
||||
top: -500px;
|
||||
z-index: -1;
|
||||
}
|
||||
4
public/static/css/dialogSettings.css
Normal file
@@ -0,0 +1,4 @@
|
||||
#settingsBody th,
|
||||
#settingsBody td {
|
||||
padding: 2px;
|
||||
}
|
||||
BIN
public/static/icon_128.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
public/static/icon_16.png
Normal file
|
After Width: | Height: | Size: 637 B |
185
public/static/icon_16.svg
Normal file
@@ -0,0 +1,185 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg38"
|
||||
sodipodi:docname="icon_16.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_16.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata42">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1477"
|
||||
inkscape:window-height="1009"
|
||||
id="namedview40"
|
||||
showgrid="false"
|
||||
inkscape:zoom="20.85965"
|
||||
inkscape:cx="-6.9605375"
|
||||
inkscape:cy="13.746223"
|
||||
inkscape:window-x="216"
|
||||
inkscape:window-y="140"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg38" />
|
||||
<defs
|
||||
id="defs18">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient851">
|
||||
<stop
|
||||
style="stop-color:#535c65;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop847" />
|
||||
<stop
|
||||
style="stop-color:#31363b;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop849" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient835">
|
||||
<stop
|
||||
style="stop-color:#a3a3a3;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop831" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.25098041"
|
||||
offset="1"
|
||||
id="stop833" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4224"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="matrix(0.2972973,0,0,0.2972973,0.86486973,0.86486734)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-4-8" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-4-8">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop3" />
|
||||
<stop
|
||||
offset=".063"
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
id="stop5" />
|
||||
<stop
|
||||
offset=".951"
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
id="stop7" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
id="stop12" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#5cb7f6;stop-opacity:1"
|
||||
id="stop14" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4221"
|
||||
x1="8"
|
||||
x2="8"
|
||||
y1="14.468"
|
||||
y2="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient835"
|
||||
id="linearGradient837"
|
||||
x1="7"
|
||||
y1="1"
|
||||
x2="7"
|
||||
y2="15"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient851"
|
||||
id="radialGradient853"
|
||||
cx="8"
|
||||
cy="1.0967201"
|
||||
fx="8"
|
||||
fy="1.0967201"
|
||||
r="7"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.9929111,-2.034965,0,10.231787,-14.846569)" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:url(#radialGradient853);fill-opacity:1;stroke:none;stroke-width:2.10178804;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect827"
|
||||
width="14"
|
||||
height="14"
|
||||
x="1"
|
||||
y="1"
|
||||
ry="1" />
|
||||
<path
|
||||
d="M 8,3 C 5.6878777,3 4.1780616,4.3027135 3.5507812,5.59375 2.9564294,6.8170148 3.0098336,7.953267 3.0117188,8 L 3,8 A 1.0001,1.0001 0 0 0 2,9 l 0,2 a 1.0001,1.0001 0 0 0 1,1 l 0.5859375,0 0.7070313,0.707031 A 1.0001,1.0001 0 0 0 5,13 1.0001,1.0001 0 0 0 6,14 l 1,0 a 1.0001,1.0001 0 0 0 1,-1 1.0001,1.0001 0 0 0 1,1 l 1,0 a 1.0001,1.0001 0 0 0 1,-1 1.0001,1.0001 0 0 0 0.707031,-0.292969 L 12.414062,12 13,12 a 1.0001,1.0001 0 0 0 1,-1 L 14,9 A 1.0001,1.0001 0 0 0 13,8 L 12.98828,8 C 12.990166,7.953267 13.043574,6.8170161 12.449219,5.59375 11.821938,4.3027137 10.312122,3 8,3 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path22" />
|
||||
<path
|
||||
style="display:inline;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8,4 C 6.0384698,4 4.9369018,5.0315454 4.4511719,6.03125 3.965442,7.0309546 4,8.0136719 4,8.0136719 L 4,9 3,9 l 0,2 1,0 1,1 1,0 0,1 1,0 L 7,8 6,8 6,9 5,9 5,8 A 0.50005,0.50005 0 0 0 5,7.986328 c 0,0 -0.014939,-0.7672827 0.3496094,-1.5175781 C 5.714158,5.7184547 6.3626442,5 8,5 9.6373558,5 10.285842,5.7184546 10.650391,6.46875 11.014939,7.2190454 11,7.9863281 11,7.9863281 A 0.50005,0.50005 0 0 0 11,8 l 0,1 -1,0 0,-1 -1,0 0,5 1,0 0,-1 1,0 1,-1 1,0 0,-2 -1,0 0,-0.9863281 c 0,0 0.03456,-0.9827173 -0.451172,-1.9824219 C 11.063098,5.0315454 9.9615302,4 8,4 Z"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m 3,8 0,2 1,0 1,1 1,0 0,1 1,0 0,-5 -1,0 8.01e-5,1 z"
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30" />
|
||||
<path
|
||||
d="m 4.5,8 0,-1 C 4.5,7 4.401114,3.5 8,3.5 11.598886,3.5 11.5,7 11.5,7 l 0,1"
|
||||
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 13,8 0,2 -1,0 -1,1 -1,0 0,1 -1,0 0,-5 1,0 -8e-5,1 z"
|
||||
id="path34" />
|
||||
<path
|
||||
d="M 8,3 C 6.0384698,3 4.9369018,4.0315454 4.4511719,5.03125 3.965442,6.0309546 4,7.0136719 4,7.0136719 L 4,8 3,8 l 0,2 1,0 1,1 1,0 0,1 1,0 L 7,7 6,7 6,8 5,8 5,7 A 0.50005,0.50005 0 0 0 5,6.986328 c 0,0 -0.014939,-0.7672827 0.3496094,-1.5175781 C 5.714158,4.7184547 6.3626442,4 8,4 9.6373558,4 10.285842,4.7184546 10.650391,5.46875 11.014939,6.2190454 11,6.9863281 11,6.9863281 A 0.50005,0.50005 0 0 0 11,7 l 0,1 -1,0 0,-1 -1,0 0,5 1,0 0,-1 1,0 1,-1 1,0 0,-2 -1,0 0,-0.9863281 c 0,0 0.03456,-0.9827173 -0.451172,-1.9824219 C 11.063098,4.0315454 9.9615302,3 8,3 Z"
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path36" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
y="1.5"
|
||||
x="1.5"
|
||||
height="13"
|
||||
width="13"
|
||||
id="rect829"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient837);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
BIN
public/static/icon_192.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/static/icon_24.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
354
public/static/icon_24.svg
Normal file
@@ -0,0 +1,354 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg89"
|
||||
sodipodi:docname="icon_24.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_24.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata93">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1692"
|
||||
inkscape:window-height="1062"
|
||||
id="namedview91"
|
||||
showgrid="false"
|
||||
inkscape:zoom="13.906433"
|
||||
inkscape:cx="-8.73444"
|
||||
inkscape:cy="15.866314"
|
||||
inkscape:window-x="367"
|
||||
inkscape:window-y="143"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg89" />
|
||||
<defs
|
||||
id="defs39">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient867">
|
||||
<stop
|
||||
style="stop-color:#535c65;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop863" />
|
||||
<stop
|
||||
style="stop-color:#31363b;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop865" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient859">
|
||||
<stop
|
||||
style="stop-color:#fdfdfd;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop855" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.25098041"
|
||||
offset="1"
|
||||
id="stop857" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient4214"
|
||||
cx="24"
|
||||
cy="-4.5"
|
||||
r="20"
|
||||
fx="24"
|
||||
fy="-4.5"
|
||||
gradientTransform="matrix(1,0,0,0.7,8.7243652e-7,8.15)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4208" />
|
||||
<linearGradient
|
||||
id="linearGradient4208">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop3" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop5" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5397"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="matrix(0.45945947,0,0,0.45945947,0.97296959,0.972977)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-64" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-64">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop9" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
offset=".063"
|
||||
id="stop11" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
offset=".951"
|
||||
id="stop13" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
offset="1"
|
||||
id="stop15" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3082-6"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749-9" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-166-749-9">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop19" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop21" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3084-4"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749-9" />
|
||||
<linearGradient
|
||||
id="linearGradient3086-8"
|
||||
x1="25.058"
|
||||
x2="25.058"
|
||||
y1="47.028"
|
||||
y2="39.999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3702-501-757-1" />
|
||||
<linearGradient
|
||||
id="linearGradient3702-501-757-1">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop26" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset=".5"
|
||||
id="stop28" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop30" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop33" />
|
||||
<stop
|
||||
style="stop-color:#5cb7f6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop35" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4234"
|
||||
x1="13"
|
||||
x2="13"
|
||||
y1="21"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient859"
|
||||
id="linearGradient861"
|
||||
x1="11"
|
||||
y1="2"
|
||||
x2="11"
|
||||
y2="23"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient867"
|
||||
id="radialGradient869"
|
||||
cx="12.071909"
|
||||
cy="2.004626"
|
||||
fx="12.071909"
|
||||
fy="2.004626"
|
||||
r="10"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.9918839,-2.337425,0,16.757573,-22.041215)" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:url(#radialGradient869);fill-opacity:1;stroke:none;stroke-width:1.86977518;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect851"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="2"
|
||||
ry="1" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 12 5 C 8.5412537 5 6.3644631 6.8042203 5.5410156 8.703125 C 4.8908809 10.202363 4.9589798 11.439099 5.0039062 11.919922 A 1.0001 1.0001 0 0 0 5.0039062 11.923828 A 1.0001 1.0001 0 0 0 5 12 L 5 12.025391 A 1.0001 1.0001 0 0 0 5 12.044922 L 5 12.105469 C 4.4522089 12.236857 4.0000582 12.668041 4 13.25 L 4 15.75 C 4.0000678 16.428436 4.5715647 16.999931 5.25 17 L 5.4785156 17 L 5.6328125 17.306641 C 5.8421982 17.727594 6.2759436 17.997735 6.7460938 18 A 1.0001 1.0001 0 0 0 6.75 18 L 7.9785156 18 L 8.1328125 18.306641 C 8.3421984 18.727595 8.7759433 18.997735 9.2460938 19 A 1.0001 1.0001 0 0 0 9.25 19 L 9.75 19 C 10.428435 18.999931 10.999932 18.428436 11 17.75 L 11 12.25 C 10.999932 11.571564 10.428435 11.000069 9.75 11 L 9.25 11 A 1.0001 1.0001 0 0 0 9.2460938 11 C 9.1790787 11.000323 9.1528788 11.088739 9.0878906 11.099609 C 9.1029183 10.808399 9.0532567 10.660494 9.2109375 10.296875 C 9.3784115 9.9106681 9.5362927 9.6565658 9.8867188 9.4335938 C 10.237145 9.2106215 10.85473 9 12 9 C 13.145273 9 13.762856 9.2106217 14.113281 9.4335938 C 14.463706 9.6565656 14.621587 9.9106654 14.789062 10.296875 C 14.946744 10.660493 14.897085 10.8084 14.912109 11.099609 C 14.847121 11.088742 14.820922 11.000323 14.753906 11 A 1.0001 1.0001 0 0 0 14.75 11 L 14.25 11 C 13.571563 11.000069 13.000069 11.571563 13 12.25 L 13 17.75 C 13.000069 18.428437 13.571563 18.999931 14.25 19 L 14.75 19 A 1.0001 1.0001 0 0 0 14.753906 19 C 15.224062 18.9977 15.657789 18.727627 15.867188 18.306641 L 16.021484 18 L 17.25 18 A 1.0001 1.0001 0 0 0 17.253906 18 C 17.724062 17.9977 18.157789 17.727627 18.367188 17.306641 L 18.521484 17 L 18.75 17 C 19.428437 16.999931 19.999931 16.428437 20 15.75 L 20 13.25 C 19.999941 12.66804 19.547791 12.236857 19 12.105469 L 19 12.044922 L 19 12 A 1.0001 1.0001 0 0 0 18.996094 11.925781 C 19.041063 11.448344 19.11085 10.20636 18.458984 8.703125 C 17.635529 6.8042307 15.458751 5 12 5 z"
|
||||
id="path53" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="-7"
|
||||
y="17"
|
||||
rx="0"
|
||||
ry="0"
|
||||
transform="scale(-1,1)"
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect55" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="17"
|
||||
y="17"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect57" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="-10"
|
||||
y="19"
|
||||
rx="0"
|
||||
ry="0"
|
||||
transform="scale(-1,1)"
|
||||
id="rect59" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="-7"
|
||||
y="19"
|
||||
rx="0"
|
||||
ry="0"
|
||||
transform="scale(-1,1)"
|
||||
id="rect61" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 12,6 C 8.8739383,6 7.1274777,7.5599887 6.4589844,9.1015625 5.8466206,10.513699 5.9736939,11.825328 6,12.044922 L 6,12 l 0.00781,0.130859 c 0,0 -0.0054,-0.06581 -0.00781,-0.08594 L 6,13 5.25,13 C 5.1119345,13.000014 5.0000138,13.111935 5,13.25 l 0,2.5 c 1.38e-5,0.138065 0.1119345,0.249986 0.25,0.25 l 0.8457031,0 0.4316407,0.861328 C 6.5694101,16.945899 6.6555455,16.999545 6.75,17 l 1.8457031,0 0.4316407,0.861328 C 9.0694101,17.945899 9.1555456,17.999545 9.25,18 l 0.5,0 c 0.1380655,-1.4e-5 0.2499862,-0.111935 0.25,-0.25 l 0,-5.5 C 9.9999862,12.111935 9.8880655,12.000014 9.75,12 l -0.5,0 c -0.094454,4.55e-4 -0.1805899,0.0541 -0.2226562,0.138672 L 8.5957031,13 8,13 8,12 a 1.0001,1.0001 0 0 0 -0.00781,-0.130859 c 0,0 -0.114834,-1.012277 0.3007813,-1.9707035 C 8.7085814,8.9400113 9.4624957,8 12,8 c 2.537511,0 3.291418,0.9400123 3.707031,1.8984375 0.415614,0.9584255 0.300781,1.9707035 0.300781,1.9707035 A 1.0001,1.0001 0 0 0 16,12 l 0,1 -0.595703,0 -0.431641,-0.861328 C 14.930589,12.054101 14.844454,12.000455 14.75,12 l -0.5,0 c -0.138065,1.4e-5 -0.249986,0.111935 -0.25,0.25 l 0,5.5 c 1.4e-5,0.138065 0.111935,0.249986 0.25,0.25 l 0.5,0 c 0.09445,-4.55e-4 0.18059,-0.0541 0.222656,-0.138672 L 15.404297,17 17.25,17 c 0.09445,-4.55e-4 0.18059,-0.0541 0.222656,-0.138672 L 17.904297,16 18.75,16 c 0.138065,-1.4e-5 0.249986,-0.111935 0.25,-0.25 l 0,-2.5 C 18.999986,13.111935 18.888065,13.000014 18.75,13 L 18,13 18,12.044922 c -0.0024,0.02013 -0.0078,0.08594 -0.0078,0.08594 L 18,12 l 0,0.04492 C 18.026306,11.825328 18.153378,10.5137 17.541016,9.1015625 16.872512,7.5599877 15.126067,6 12,6 Z"
|
||||
id="path63" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 9.2501484,11 c -0.094454,4.55e-4 -0.1805898,0.0541 -0.2226561,0.138672 L 8.5958515,12 5.25,12 C 5.1119345,12.000014 5.0000138,12.111935 5,12.25 l 0,2.5 c 1.38e-5,0.138065 0.1119345,0.249986 0.25,0.25 l 0.8457031,0 0.4316407,0.861328 C 6.5694101,15.945899 6.6555455,15.999545 6.75,16 l 1.8458515,0 0.4316408,0.861328 C 9.0695586,16.945899 9.155694,16.999545 9.2501484,17 L 9.75,17 c 0.1380655,-1.4e-5 0.2499862,-0.111935 0.25,-0.25 l 0,-5.5 C 9.9999862,11.111935 9.8880655,11.000014 9.75,11 Z"
|
||||
id="path65" />
|
||||
<path
|
||||
d="M 7,12.23935 7,11 c 0,0 -0.663566,-5 5,-5 5.663578,0 5,5 5,5 l 0,1.23935"
|
||||
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path67" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 14.25,11 c -0.138065,1.4e-5 -0.249986,0.111935 -0.25,0.25 l 0,5.5 c 1.4e-5,0.138065 0.111935,0.249986 0.25,0.25 l 0.499852,0 c 0.09445,-4.55e-4 0.18059,-0.0541 0.222656,-0.138672 L 15.404149,16 17.25,16 c 0.09445,-4.55e-4 0.18059,-0.0541 0.222656,-0.138672 L 17.904297,15 18.75,15 c 0.138065,-1.4e-5 0.249986,-0.111935 0.25,-0.25 l 0,-2.5 C 18.999986,12.111935 18.888065,12.000014 18.75,12 l -3.345851,0 -0.431641,-0.861328 C 14.930441,11.054101 14.844306,11.000455 14.749852,11 Z"
|
||||
id="path69" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="11"
|
||||
y="19"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect71" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="14"
|
||||
y="19"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect73" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="17"
|
||||
y="19"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect75" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="11"
|
||||
y="17"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect77" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="11"
|
||||
y="15"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect79" />
|
||||
<g
|
||||
style="display:none"
|
||||
transform="translate(0,-24)"
|
||||
id="g87">
|
||||
<rect
|
||||
style="fill:url(#radialGradient4214);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
width="40"
|
||||
height="14"
|
||||
x="4"
|
||||
y="5"
|
||||
ry="2"
|
||||
id="rect85" />
|
||||
</g>
|
||||
<rect
|
||||
ry="0.5"
|
||||
y="2.5"
|
||||
x="2.5"
|
||||
height="19"
|
||||
width="19"
|
||||
id="rect853"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient861);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
BIN
public/static/icon_32.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
373
public/static/icon_32.svg
Normal file
@@ -0,0 +1,373 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
version="1.1"
|
||||
id="svg94"
|
||||
sodipodi:docname="icon_32.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_32.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata98">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1729"
|
||||
inkscape:window-height="1024"
|
||||
id="namedview96"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.429825"
|
||||
inkscape:cx="-9.0237505"
|
||||
inkscape:cy="-9.5963558"
|
||||
inkscape:window-x="124"
|
||||
inkscape:window-y="112"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg94" />
|
||||
<defs
|
||||
id="defs38">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient949">
|
||||
<stop
|
||||
style="stop-color:#545c64;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop945" />
|
||||
<stop
|
||||
style="stop-color:#31363b;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop947" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient941">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop937" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.25098041"
|
||||
offset="1"
|
||||
id="stop939" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4161"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="matrix(0.67567568,0,0,0.67567568,-0.21621703,-0.21620627)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-0" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-0">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop3" />
|
||||
<stop
|
||||
offset=".063"
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
id="stop5" />
|
||||
<stop
|
||||
offset=".951"
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
id="stop7" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient2976"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749-6" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-166-749-6">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop13" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop15" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient2978"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-464-309-7" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-464-309-7">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop19" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop21" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2980"
|
||||
x1="25.058"
|
||||
x2="25.058"
|
||||
y1="47.028"
|
||||
y2="39.999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3702-501-757-3" />
|
||||
<linearGradient
|
||||
id="linearGradient3702-501-757-3">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop25" />
|
||||
<stop
|
||||
offset=".5"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop27" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop29" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
id="stop32" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#5cb7f6;stop-opacity:1"
|
||||
id="stop34" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4248"
|
||||
x1="16"
|
||||
x2="16"
|
||||
y1="29"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient941"
|
||||
id="linearGradient943"
|
||||
x1="14"
|
||||
y1="2"
|
||||
x2="14"
|
||||
y2="30"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.5)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient949"
|
||||
id="radialGradient951"
|
||||
cx="8"
|
||||
cy="16"
|
||||
fx="8"
|
||||
fy="16"
|
||||
r="14"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.9935897,-2.1298809,0,50.078095,-13.484182)" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:url(#radialGradient951);fill-opacity:1;stroke:none;stroke-width:2.17991281;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect925"
|
||||
width="28"
|
||||
height="28"
|
||||
x="2"
|
||||
y="2"
|
||||
ry="2" />
|
||||
<path
|
||||
d="M 16 5 C 11.560863 5 8.7693012 7.2360203 7.4296875 9.4726562 C 6.1060542 11.682611 6.0039063 13.894531 6.0039062 13.894531 C 6.0020435 13.927059 6.0002716 13.959606 6 13.992188 A 1.0001 1.0001 0 0 0 6 14 L 6 16.208984 C 5.4481455 16.432277 5.0000623 16.876571 5 17.5 L 5 19.5 C 5.0000816 20.3165 5.6834996 20.999918 6.5 21 L 6.5742188 21 L 7.1582031 22.167969 C 7.4105832 22.675344 7.933321 22.999486 8.5 23 L 9.8789062 23 L 10.439453 23.560547 C 10.720431 23.841561 11.102612 23.999924 11.5 24 L 12.5 24 C 13.3165 23.999918 13.999918 23.3165 14 22.5 L 14 15.5 C 13.999918 14.6835 13.3165 14.000082 12.5 14 L 11.5 14 C 10.933321 14.000513 10.410584 14.324656 10.158203 14.832031 L 10 15.146484 L 10 14.099609 C 9.9992628 14.112029 10.08956 12.812634 10.859375 11.527344 C 11.65569 10.197806 12.783237 9 16 9 C 19.216764 9 20.34431 10.197806 21.140625 11.527344 C 21.910439 12.812635 22.001422 14.123011 22 14.099609 L 22 15.146484 L 21.841797 14.832031 C 21.589416 14.324656 21.066679 14.000513 20.5 14 L 19.5 14 C 18.6835 14.000082 18.000082 14.6835 18 15.5 L 18 22.5 C 18.000082 23.3165 18.6835 23.999918 19.5 24 L 20.5 24 C 20.897388 23.999924 21.279569 23.841561 21.560547 23.560547 L 22.121094 23 L 23.5 23 C 24.066679 22.999487 24.589416 22.675344 24.841797 22.167969 L 25.425781 21 L 25.5 21 C 26.3165 20.999918 26.999918 20.3165 27 19.5 L 27 17.5 C 26.999938 16.876571 26.551855 16.432277 26 16.208984 L 26 14 A 1.0001 1.0001 0 0 0 26 13.990234 C 25.999707 13.958304 25.997894 13.926411 25.996094 13.894531 C 25.996094 13.894531 25.893947 11.682611 24.570312 9.4726562 C 23.230808 7.2359838 20.439137 5 16 5 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path52" />
|
||||
<path
|
||||
d="M 16,6 C 11.886169,6 9.4723841,8.0073783 8.2871094,9.9863281 7.1018346,11.965278 7.0019531,13.945315 7.0019531,13.945312 A 1.0001,1.0001 0 0 0 7,14 l 0,3 -0.5,0 A 0.50005,0.50005 0 0 0 6,17.5 l 0,2 A 0.50005,0.50005 0 0 0 6.5,20 l 0.6914062,0 0.8613282,1.722656 A 0.50005,0.50005 0 0 0 8.5,22 l 1.792969,0 0.853515,0.853516 A 0.50005,0.50005 0 0 0 11.5,23 l 1,0 A 0.50005,0.50005 0 0 0 13,22.5 l 0,-7 A 0.50005,0.50005 0 0 0 12.5,15 l -1,0 a 0.50005,0.50005 0 0 0 -0.447266,0.277344 L 10.191406,17 9,17 9,14.042969 C 9.00117,14.024379 9.096555,12.525336 10.001953,11.013672 10.912973,9.4926217 12.499009,8 16,8 c 3.500992,0 5.087027,1.4926217 5.998047,3.013672 0.905398,1.511664 1.000787,3.01071 1.001953,3.029297 L 23,17 21.808594,17 20.947266,15.277344 A 0.50005,0.50005 0 0 0 20.5,15 l -1,0 A 0.50005,0.50005 0 0 0 19,15.5 l 0,7 a 0.50005,0.50005 0 0 0 0.5,0.5 l 1,0 a 0.50005,0.50005 0 0 0 0.353516,-0.146484 L 21.707031,22 23.5,22 a 0.50005,0.50005 0 0 0 0.447266,-0.277344 L 24.808594,20 25.5,20 A 0.50005,0.50005 0 0 0 26,19.5 l 0,-2 A 0.50005,0.50005 0 0 0 25.5,17 l -0.5,0 0,-3 a 1.0001,1.0001 0 0 0 -0.002,-0.05469 c 0,0 -0.09988,-1.980034 -1.285156,-3.9589839 C 22.52771,8.0073823 20.113831,6 16,6 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path54" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="5"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect60" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="8"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect62" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="3"
|
||||
height="1"
|
||||
x="11"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect64" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="15"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect66" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="3"
|
||||
height="1"
|
||||
x="18"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect68" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="22"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect70" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="5"
|
||||
y="24"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect72" />
|
||||
<rect
|
||||
width="3"
|
||||
height="1"
|
||||
x="11"
|
||||
y="24"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect74" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="15"
|
||||
y="24"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect76" />
|
||||
<rect
|
||||
width="3"
|
||||
height="1"
|
||||
x="18"
|
||||
y="24"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect78" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="15"
|
||||
y="22"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect80" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="25"
|
||||
y="26"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect82" />
|
||||
<rect
|
||||
width="2"
|
||||
height="1"
|
||||
x="25"
|
||||
y="24"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect84" />
|
||||
<rect
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="2"
|
||||
height="1"
|
||||
x="25"
|
||||
y="22"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect86" />
|
||||
<path
|
||||
d="m 6.5,16.500017 0,2 1,0 1,2 2,0 1,1 1,0 0,-7 -1,0 -1,2 z"
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 8,16.000017 0,-3 c 0,0 0.3851775,-6.9999996 8,-6.9999996 7.614823,0 8,6.9999996 8,6.9999996 l 0,3"
|
||||
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path90" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.5,16.500017 0,2 -1,0 -1,2 -2,0 -1,1 -1,0 0,-7 1,0 1,2 z"
|
||||
id="path92" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
y="2.5"
|
||||
x="2.5"
|
||||
height="27"
|
||||
width="27"
|
||||
id="rect927"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient943);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
BIN
public/static/icon_48.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
373
public/static/icon_48.svg
Normal file
@@ -0,0 +1,373 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
sodipodi:docname="icon_48.svg"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_48.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata96">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1459"
|
||||
inkscape:window-height="984"
|
||||
id="namedview94"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.9166667"
|
||||
inkscape:cx="5.610646"
|
||||
inkscape:cy="-19.856276"
|
||||
inkscape:window-x="171"
|
||||
inkscape:window-y="227"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient877">
|
||||
<stop
|
||||
style="stop-color:#545c64;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop873" />
|
||||
<stop
|
||||
style="stop-color:#31363b;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient869">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop865" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.5"
|
||||
offset="1"
|
||||
id="stop867" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3058"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="translate(4e-6,1.000006)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-1" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-1">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop8" />
|
||||
<stop
|
||||
offset=".063"
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
id="stop10" />
|
||||
<stop
|
||||
offset=".951"
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
id="stop12" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
id="stop14" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3013"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.4045409,0,0,0.89999994,27.985756,4.600003)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-166-749">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop18" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop20" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3015"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(2.4045409,0,0,0.89999994,-20.014244,-82.899992)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-464-309" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-464-309">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop24" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop26" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702-501-757">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop29" />
|
||||
<stop
|
||||
offset=".5"
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
id="stop31" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
id="stop33" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6647"
|
||||
x1="25.058"
|
||||
x2="25.058"
|
||||
y1="47.028"
|
||||
y2="39.999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3702-501-757"
|
||||
gradientTransform="matrix(1.1428571,0,0,0.6428571,-3.4285711,15.785724)" />
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
id="stop37" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#5cb7f6;stop-opacity:1"
|
||||
id="stop39" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4254"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="44"
|
||||
y2="5.972"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient869"
|
||||
id="linearGradient871"
|
||||
x1="25"
|
||||
y1="3"
|
||||
x2="25"
|
||||
y2="45"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient877"
|
||||
id="radialGradient879"
|
||||
cx="24"
|
||||
cy="3.0744331"
|
||||
fx="24"
|
||||
fy="3.0744331"
|
||||
r="21"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.9467312,-2.2881356,0,31.03472,-43.647117)" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:url(#radialGradient879);fill-opacity:1;stroke:none;stroke-width:1.99050581;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect853"
|
||||
width="42"
|
||||
height="42"
|
||||
x="3"
|
||||
y="3"
|
||||
ry="2" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 24,9 C 17.872945,9 14.350715,12.036316 12.691406,15.021484 11.032098,18.006653 11,20.974609 11,20.974609 A 1.50015,1.50015 0 0 0 11,21 l 0,4 -1.5,0 A 0.50005,0.50005 0 0 0 9,25.5 l 0,5 A 0.50005,0.50005 0 0 0 9.5,31 l 1.691406,0 0.861328,1.722656 A 0.50005,0.50005 0 0 0 12.5,33 l 2.691406,0 0.861328,1.722656 A 0.50005,0.50005 0 0 0 16.5,35 l 2,0 A 0.50005,0.50005 0 0 0 19,34.5 l 0,-11 A 0.50005,0.50005 0 0 0 18.5,23 l -2,0 a 0.50005,0.50005 0 0 0 -0.447266,0.277344 L 15.191406,25 14,25 14,21.025391 c 0,0 0.05359,-2.282044 1.3125,-4.546875 C 16.571408,14.213684 18.799922,12 24,12 c 5.200091,0 7.428595,2.213686 8.6875,4.478516 C 33.946405,18.743345 34,21.025391 34,21.025391 L 34,25 32.808594,25 31.947266,23.277344 A 0.50005,0.50005 0 0 0 31.5,23 l -2,0 A 0.50005,0.50005 0 0 0 29,23.5 l 0,11 a 0.50005,0.50005 0 0 0 0.5,0.5 l 2,0 a 0.50005,0.50005 0 0 0 0.447266,-0.277344 L 32.808594,33 35.5,33 a 0.50005,0.50005 0 0 0 0.447266,-0.277344 L 36.808594,31 38.5,31 A 0.50005,0.50005 0 0 0 39,30.5 l 0,-5 A 0.50005,0.50005 0 0 0 38.5,25 l -1.5,0 0,-4 a 1.50015,1.50015 0 0 0 0,-0.02539 c 0,0 -0.0321,-2.967955 -1.691406,-5.953125 C 33.649288,12.036312 30.127066,9 24,9 Z"
|
||||
id="path52" />
|
||||
<path
|
||||
d="M 24,9 C 17.872945,9 14.350715,12.036316 12.691406,15.021484 11.032098,18.006653 11,20.974609 11,20.974609 A 1.50015,1.50015 0 0 0 11,21 l 0,4 -1.5,0 A 0.50005,0.50005 0 0 0 9,25.5 l 0,5 A 0.50005,0.50005 0 0 0 9.5,31 l 1.691406,0 0.861328,1.722656 A 0.50005,0.50005 0 0 0 12.5,33 l 2.691406,0 0.861328,1.722656 A 0.50005,0.50005 0 0 0 16.5,35 l 2,0 A 0.50005,0.50005 0 0 0 19,34.5 l 0,-11 A 0.50005,0.50005 0 0 0 18.5,23 l -2,0 a 0.50005,0.50005 0 0 0 -0.447266,0.277344 L 15.191406,25 14,25 14,21.025391 c 0,0 0.05359,-2.282044 1.3125,-4.546875 C 16.571408,14.213684 18.799922,12 24,12 c 5.200091,0 7.428595,2.213686 8.6875,4.478516 C 33.946405,18.743345 34,21.025391 34,21.025391 L 34,25 32.808594,25 31.947266,23.277344 A 0.50005,0.50005 0 0 0 31.5,23 l -2,0 A 0.50005,0.50005 0 0 0 29,23.5 l 0,11 a 0.50005,0.50005 0 0 0 0.5,0.5 l 2,0 a 0.50005,0.50005 0 0 0 0.447266,-0.277344 L 32.808594,33 35.5,33 a 0.50005,0.50005 0 0 0 0.447266,-0.277344 L 36.808594,31 38.5,31 A 0.50005,0.50005 0 0 0 39,30.5 l 0,-5 A 0.50005,0.50005 0 0 0 38.5,25 l -1.5,0 0,-4 a 1.50015,1.50015 0 0 0 0,-0.02539 c 0,0 -0.0321,-2.967955 -1.691406,-5.953125 C 33.649288,12.036312 30.127066,9 24,9 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path54" />
|
||||
<path
|
||||
d="m 9.5000062,24.499999 0,5 1.9999998,0 1,2 3,0 1,2 2,0 0,-11 -2,0 -1,2 z"
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m 12.500006,24.478599 0,-4.4786 c 0,0 0.172867,-10.4999998 11.5,-10.4999998 11.327157,0 11.5,10.4999998 11.5,10.4999998 l 0,4.4786"
|
||||
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path62" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 38.500006,24.499999 0,5 -2,0 -1,2 -3,0 -1,2 -2,0 0,-11 2,0 1,2 z"
|
||||
id="path64" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="7"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect66" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="12"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect68" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="17"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect70" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="22"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect72" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="27"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect74" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="32"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect76" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="37"
|
||||
y="39"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect78" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="7"
|
||||
y="36"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect80" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="17"
|
||||
y="36"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect82" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="22"
|
||||
y="36"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect84" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="27"
|
||||
y="36"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect86" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="37"
|
||||
y="36"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect88" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="4"
|
||||
height="2"
|
||||
x="22"
|
||||
y="33"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect90" />
|
||||
<rect
|
||||
width="4"
|
||||
height="2"
|
||||
x="37"
|
||||
y="33"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="display:inline;opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect92" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
y="3.5"
|
||||
x="3.5"
|
||||
height="41"
|
||||
width="41"
|
||||
id="rect855"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient871);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
BIN
public/static/icon_64.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
373
public/static/icon_64.svg
Normal file
@@ -0,0 +1,373 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
sodipodi:docname="icon_64.svg"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_192.png"
|
||||
inkscape:export-xdpi="288"
|
||||
inkscape:export-ydpi="288">
|
||||
<metadata
|
||||
id="metadata96">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1611"
|
||||
inkscape:window-height="952"
|
||||
id="namedview94"
|
||||
showgrid="false"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="31.924368"
|
||||
inkscape:cy="31.567637"
|
||||
inkscape:window-x="172"
|
||||
inkscape:window-y="92"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient877">
|
||||
<stop
|
||||
style="stop-color:#535c65;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop873" />
|
||||
<stop
|
||||
style="stop-color:#31363b;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient861">
|
||||
<stop
|
||||
style="stop-color:#f4f4f4;stop-opacity:0.25098041"
|
||||
offset="0"
|
||||
id="stop857" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.25098041"
|
||||
offset="1"
|
||||
id="stop859" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7" />
|
||||
<stop
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3381-5-4"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="matrix(1.4324324,0,0,1.4362832,-2.378381,-2.4707782)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-2-2-5-8" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-2-2-5-8">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop13" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
offset=".063"
|
||||
id="stop15" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
offset=".951"
|
||||
id="stop17" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
offset="1"
|
||||
id="stop19" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3337-2-2"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(3.2060543,0,0,0.99999998,37.981006,16.000001)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749-4-0-3-8" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-166-749-4-0-3-8">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop23" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop25" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3339-1-4"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(3.2060543,0,0,0.99999998,-26.018992,-103)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-464-309-9-2-4-2" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-464-309-9-2-4-2">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop29" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop31" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702-501-757-8-4-1-1">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop34" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset=".5"
|
||||
id="stop36" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop38" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6394"
|
||||
x1="25.058"
|
||||
x2="25.058"
|
||||
y1="47.028"
|
||||
y2="39.999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3702-501-757-8-4-1-1"
|
||||
gradientTransform="matrix(1.5714286,0,0,0.7142857,-5.7142853,28.428572)" />
|
||||
<linearGradient
|
||||
id="linearGradient4262"
|
||||
x1="31"
|
||||
x2="31"
|
||||
y1="59"
|
||||
y2="4.737"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient861"
|
||||
id="linearGradient863"
|
||||
x1="27"
|
||||
y1="4"
|
||||
x2="27"
|
||||
y2="60"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient877"
|
||||
id="radialGradient879"
|
||||
cx="31.625"
|
||||
cy="4"
|
||||
fx="31.625"
|
||||
fy="4"
|
||||
r="28"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.9571706,-2.0851744,0,39.965698,-57.895519)" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:url(#radialGradient879);fill-opacity:1;stroke:none;stroke-width:2.85814881;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect853"
|
||||
width="56"
|
||||
height="56"
|
||||
x="4"
|
||||
y="4"
|
||||
ry="2" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 32 8 C 22.542678 8 17.01237 12.828471 14.480469 17.591797 C 11.967919 22.318718 11.999934 26.988801 12 26.998047 L 12 27 L 12 27.003906 L 12 31 L 11.5 31 C 10.6835 31.000082 10.000082 31.6835 10 32.5 L 10 39.5 C 10.000082 40.3165 10.6835 40.999918 11.5 41 L 13.417969 41 L 14.076172 42.974609 C 14.27934 43.583587 14.858026 44.000335 15.5 44 L 17.417969 44 L 18.076172 45.974609 C 18.27934 46.583587 18.858026 47.000335 19.5 47 L 24.5 47 C 25.3165 46.999918 25.999918 46.3165 26 45.5 L 26 28.5 C 25.999918 27.6835 25.3165 27.000082 24.5 27 L 19.5 27 A 1.0001 1.0001 0 0 0 19.498047 27 C 18.815558 27.0011 18.210263 27.47456 18.044922 28.136719 L 18 28.316406 L 18 27.007812 L 18 27 C 17.9989 27.150353 18.04342 23.670266 19.777344 20.408203 C 21.536818 17.098064 24.422823 14 32 14 C 39.577196 14 42.463186 17.098064 44.222656 20.408203 C 45.959897 23.676524 46.001144 27.155119 46 27.007812 L 46 28.316406 L 45.955078 28.136719 C 45.789735 27.47456 45.184442 27.001063 44.501953 27 A 1.0001 1.0001 0 0 0 44.5 27 L 39.5 27 C 38.6835 27.000082 38.000082 27.6835 38 28.5 L 38 45.5 C 38.000082 46.3165 38.6835 46.999918 39.5 47 L 44.5 47 C 45.141974 47.000335 45.72066 46.583587 45.923828 45.974609 L 46.582031 44 L 48.5 44 C 49.141974 44.000335 49.72066 43.583587 49.923828 42.974609 L 50.582031 41 L 52.5 41 C 53.3165 40.999918 53.999918 40.3165 54 39.5 L 54 32.5 C 53.999918 31.6835 53.3165 31.000082 52.5 31 L 52 31 L 52 27.003906 L 52 27 C 52.000045 26.9938 52.03291 22.320279 49.519531 17.591797 C 46.987635 12.82862 41.457345 8 32 8 z"
|
||||
id="path52" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 32,8.9999999 c -9.123144,0 -14.251477,4.5731351 -16.636719,9.0605471 C 12.97804,22.547959 13,26.998047 13,26.998047 A 2.0002,2.0002 0 0 0 13,27 l 0,5 -1.5,0 A 0.50005,0.50005 0 0 0 11,32.5 l 0,7 a 0.50005,0.50005 0 0 0 0.5,0.5 l 2.638672,0 0.886719,2.658203 A 0.50005,0.50005 0 0 0 15.5,43 l 2.638672,0 0.886719,2.658203 A 0.50005,0.50005 0 0 0 19.5,46 l 5,0 A 0.50005,0.50005 0 0 0 25,45.5 l 0,-17 A 0.50005,0.50005 0 0 0 24.5,28 l -5,0 a 0.50005,0.50005 0 0 0 -0.484375,0.378906 L 18.109375,32 17,32 17,27.001953 17,27 c 2.4e-5,-0.0031 0.02826,-3.549488 1.894531,-7.060547 C 20.761615,16.426865 24.132444,13 32,13 39.867575,13 43.23839,16.426866 45.105469,19.939453 46.971734,23.45051 46.999976,26.99691 47,27 l 0,5 -1.109375,0 -0.90625,-3.621094 A 0.50005,0.50005 0 0 0 44.5,28 l -5,0 A 0.50005,0.50005 0 0 0 39,28.5 l 0,17 a 0.50005,0.50005 0 0 0 0.5,0.5 l 5,0 a 0.50005,0.50005 0 0 0 0.474609,-0.341797 L 45.861328,43 48.5,43 a 0.50005,0.50005 0 0 0 0.474609,-0.341797 L 49.861328,40 52.5,40 A 0.50005,0.50005 0 0 0 53,39.5 l 0,-7 A 0.50005,0.50005 0 0 0 52.5,32 l -1.5,0 0,-5 a 2.0002,2.0002 0 0 0 0,-0.002 c 0,0 0.02196,-4.450087 -2.363281,-8.9375 C 46.251481,13.573227 41.123161,8.9999999 32,8.9999999 Z"
|
||||
id="path54" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="22"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect60" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="22"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect62" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="15"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect64" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="8"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect66" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="8"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect68" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect70" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect72" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="42"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect74" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="36"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect76" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="43"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect78" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect80" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect82" />
|
||||
<rect
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="42"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect84" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="36"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect86" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 11.499998,31.49999 0,7 3,0 1,3 3,0 1,3 5,0 0,-17 -5,0 -1,4 z"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 52.499998,31.49999 0,7 -3,0 -1,3 -3,0 -1,3 -5,0 0,-17 5,0 1,4 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
id="path90" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 14.999998,30.99999 0,-5 c 0,0 0.0093,-16.0000004 17,-16.0000004 16.990736,0 17,16.0000004 17,16.0000004 l 0,5"
|
||||
id="path92" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
y="4.5"
|
||||
x="4.5"
|
||||
height="55"
|
||||
width="55"
|
||||
id="rect855"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient863);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
322
public/static/icon_64_flat.svg
Normal file
@@ -0,0 +1,322 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
sodipodi:docname="icon_64_flat.svg"
|
||||
inkscape:export-filename="/home/djoma/Projekte/artemanufrij/app/webplay-client/public/static/icon_192.png"
|
||||
inkscape:export-xdpi="288"
|
||||
inkscape:export-ydpi="288"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata96">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1611"
|
||||
inkscape:window-height="952"
|
||||
id="namedview94"
|
||||
showgrid="false"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="38.75"
|
||||
inkscape:cy="31.625"
|
||||
inkscape:window-x="172"
|
||||
inkscape:window-y="92"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient4256">
|
||||
<stop
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7" />
|
||||
<stop
|
||||
style="stop-color:#1777ba;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3381-5-4"
|
||||
x1="24"
|
||||
x2="24"
|
||||
y1="5"
|
||||
y2="43"
|
||||
gradientTransform="matrix(1.4324324,0,0,1.4362832,-2.378381,-2.4707782)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3924-2-2-5-8" />
|
||||
<linearGradient
|
||||
id="linearGradient3924-2-2-5-8">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop13" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.23529412"
|
||||
offset=".063"
|
||||
id="stop15" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.15686275"
|
||||
offset=".951"
|
||||
id="stop17" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687"
|
||||
offset="1"
|
||||
id="stop19" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3337-2-2"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(3.2060543,0,0,0.99999998,37.981006,16.000001)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-166-749-4-0-3-8" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-166-749-4-0-3-8">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop23" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop25" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3339-1-4"
|
||||
cx="4.993"
|
||||
cy="43.5"
|
||||
r="2.5"
|
||||
fx="4.993"
|
||||
fy="43.5"
|
||||
gradientTransform="matrix(3.2060543,0,0,0.99999998,-26.018992,-103)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3688-464-309-9-2-4-2" />
|
||||
<linearGradient
|
||||
id="linearGradient3688-464-309-9-2-4-2">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop29" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop31" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702-501-757-8-4-1-1">
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop34" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:1"
|
||||
offset=".5"
|
||||
id="stop36" />
|
||||
<stop
|
||||
style="stop-color:#181818;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop38" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6394"
|
||||
x1="25.058"
|
||||
x2="25.058"
|
||||
y1="47.028"
|
||||
y2="39.999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3702-501-757-8-4-1-1"
|
||||
gradientTransform="matrix(1.5714286,0,0,0.7142857,-5.7142853,28.428572)" />
|
||||
<linearGradient
|
||||
id="linearGradient4262"
|
||||
x1="31"
|
||||
x2="31"
|
||||
y1="59"
|
||||
y2="4.737"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient4256" />
|
||||
</defs>
|
||||
<rect
|
||||
style="fill:#31363b;fill-opacity:0;stroke:none;stroke-width:2.85814881;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect853"
|
||||
width="56"
|
||||
height="56"
|
||||
x="4"
|
||||
y="4"
|
||||
ry="2" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 32 8 C 22.542678 8 17.01237 12.828471 14.480469 17.591797 C 11.967919 22.318718 11.999934 26.988801 12 26.998047 L 12 27 L 12 27.003906 L 12 31 L 11.5 31 C 10.6835 31.000082 10.000082 31.6835 10 32.5 L 10 39.5 C 10.000082 40.3165 10.6835 40.999918 11.5 41 L 13.417969 41 L 14.076172 42.974609 C 14.27934 43.583587 14.858026 44.000335 15.5 44 L 17.417969 44 L 18.076172 45.974609 C 18.27934 46.583587 18.858026 47.000335 19.5 47 L 24.5 47 C 25.3165 46.999918 25.999918 46.3165 26 45.5 L 26 28.5 C 25.999918 27.6835 25.3165 27.000082 24.5 27 L 19.5 27 A 1.0001 1.0001 0 0 0 19.498047 27 C 18.815558 27.0011 18.210263 27.47456 18.044922 28.136719 L 18 28.316406 L 18 27.007812 L 18 27 C 17.9989 27.150353 18.04342 23.670266 19.777344 20.408203 C 21.536818 17.098064 24.422823 14 32 14 C 39.577196 14 42.463186 17.098064 44.222656 20.408203 C 45.959897 23.676524 46.001144 27.155119 46 27.007812 L 46 28.316406 L 45.955078 28.136719 C 45.789735 27.47456 45.184442 27.001063 44.501953 27 A 1.0001 1.0001 0 0 0 44.5 27 L 39.5 27 C 38.6835 27.000082 38.000082 27.6835 38 28.5 L 38 45.5 C 38.000082 46.3165 38.6835 46.999918 39.5 47 L 44.5 47 C 45.141974 47.000335 45.72066 46.583587 45.923828 45.974609 L 46.582031 44 L 48.5 44 C 49.141974 44.000335 49.72066 43.583587 49.923828 42.974609 L 50.582031 41 L 52.5 41 C 53.3165 40.999918 53.999918 40.3165 54 39.5 L 54 32.5 C 53.999918 31.6835 53.3165 31.000082 52.5 31 L 52 31 L 52 27.003906 L 52 27 C 52.000045 26.9938 52.03291 22.320279 49.519531 17.591797 C 46.987635 12.82862 41.457345 8 32 8 z"
|
||||
id="path52" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 32,8.9999999 c -9.123144,0 -14.251477,4.5731351 -16.636719,9.0605471 C 12.97804,22.547959 13,26.998047 13,26.998047 A 2.0002,2.0002 0 0 0 13,27 l 0,5 -1.5,0 A 0.50005,0.50005 0 0 0 11,32.5 l 0,7 a 0.50005,0.50005 0 0 0 0.5,0.5 l 2.638672,0 0.886719,2.658203 A 0.50005,0.50005 0 0 0 15.5,43 l 2.638672,0 0.886719,2.658203 A 0.50005,0.50005 0 0 0 19.5,46 l 5,0 A 0.50005,0.50005 0 0 0 25,45.5 l 0,-17 A 0.50005,0.50005 0 0 0 24.5,28 l -5,0 a 0.50005,0.50005 0 0 0 -0.484375,0.378906 L 18.109375,32 17,32 17,27.001953 17,27 c 2.4e-5,-0.0031 0.02826,-3.549488 1.894531,-7.060547 C 20.761615,16.426865 24.132444,13 32,13 39.867575,13 43.23839,16.426866 45.105469,19.939453 46.971734,23.45051 46.999976,26.99691 47,27 l 0,5 -1.109375,0 -0.90625,-3.621094 A 0.50005,0.50005 0 0 0 44.5,28 l -5,0 A 0.50005,0.50005 0 0 0 39,28.5 l 0,17 a 0.50005,0.50005 0 0 0 0.5,0.5 l 5,0 a 0.50005,0.50005 0 0 0 0.474609,-0.341797 L 45.861328,43 48.5,43 a 0.50005,0.50005 0 0 0 0.474609,-0.341797 L 49.861328,40 52.5,40 A 0.50005,0.50005 0 0 0 53,39.5 l 0,-7 A 0.50005,0.50005 0 0 0 52.5,32 l -1.5,0 0,-5 a 2.0002,2.0002 0 0 0 0,-0.002 c 0,0 0.02196,-4.450087 -2.363281,-8.9375 C 46.251481,13.573227 41.123161,8.9999999 32,8.9999999 Z"
|
||||
id="path54" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="22"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect60" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="22"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect62" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="15"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect64" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="8"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect66" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="8"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect68" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect70" />
|
||||
<rect
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect72" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="29"
|
||||
y="42"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect74" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="36"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect76" />
|
||||
<rect
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="43"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect78" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="52"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect80" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect82" />
|
||||
<rect
|
||||
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
width="6"
|
||||
height="4"
|
||||
x="50"
|
||||
y="42"
|
||||
rx="0"
|
||||
ry="0"
|
||||
id="rect84" />
|
||||
<rect
|
||||
width="6"
|
||||
height="4"
|
||||
x="36"
|
||||
y="47"
|
||||
rx="0"
|
||||
ry="0"
|
||||
style="opacity:0.65;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect86" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 11.499998,31.49999 0,7 3,0 1,3 3,0 1,3 5,0 0,-17 -5,0 -1,4 z"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 52.499998,31.49999 0,7 -3,0 -1,3 -3,0 -1,3 -5,0 0,-17 5,0 1,4 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
id="path90" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 14.999998,30.99999 0,-5 c 0,0 0.0093,-16.0000004 17,-16.0000004 16.990736,0 17,16.0000004 17,16.0000004 l 0,5"
|
||||
id="path92" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
BIN
public/static/icon_96.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
73
public/static/icons/dummy/album.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
width="16"
|
||||
height="16"
|
||||
sodipodi:docname="album_gray.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-9.3220339"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg8" />
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<g
|
||||
style="fill:#7f8c8d;fill-opacity:1"
|
||||
id="g6"
|
||||
transform="translate(-1233 -61)"
|
||||
color="#bebebe">
|
||||
<path
|
||||
id="path2"
|
||||
white-space="normal"
|
||||
style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal;marker:none;fill:#7f8c8d;fill-opacity:1"
|
||||
overflow="visible"
|
||||
font-weight="400"
|
||||
font-family="sans-serif"
|
||||
fill="#666"
|
||||
d="M1241 62c-3.842 0-7 3.158-7 7s3.158 7 7 7 7-3.158 7-7-3.158-7-7-7zm0 4c1.68 0 3 1.32 3 3s-1.32 3-3 3-3-1.32-3-3 1.32-3 3-3z" />
|
||||
<path
|
||||
id="path4"
|
||||
style="line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;marker:none;fill:#7f8c8d;fill-opacity:1"
|
||||
overflow="visible"
|
||||
font-weight="400"
|
||||
font-family="Sans"
|
||||
fill="#666"
|
||||
d="M1241.005 67.006c-1.098 0-2.013.898-2.013 1.996 0 1.099.915 1.997 2.013 1.997a2.002 2.002 0 0 0 1.997-1.997 2.002 2.002 0 0 0-1.997-1.996z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
67
public/static/icons/dummy/artist.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="32"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="artist-placeholder.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2130"
|
||||
inkscape:window-height="939"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="0.54237288"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg8" />
|
||||
<g
|
||||
transform="translate(-585,171)"
|
||||
id="g6"
|
||||
style="fill:#7f8c8d;fill-opacity:1">
|
||||
<path
|
||||
d="m 601,-171 a 8,8 0 1 0 0,16 8,8 0 0 0 0,-16 z m 0,1 a 7,7 0 0 1 7,7 c 0,1.972 -0.844,3.728 -2.156,5 -0.443,-1.727 -1.975,-3 -3.844,-3 h -2 c -1.869,0 -3.4,1.273 -3.844,3 -1.312,-1.272 -2.156,-3.028 -2.156,-5 a 7,7 0 0 1 7,-7 z"
|
||||
overflow="visible"
|
||||
style="color:#000000;overflow:visible;fill:#7f8c8d;fill-opacity:1;marker:none"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 601,-167.75 c -1.795,0 -3.25,1.4 -3.25,3.125 0,1.726 1.455,3.125 3.25,3.125 1.795,0 3.25,-1.4 3.25,-3.125 0,-1.726 -1.455,-3.125 -3.25,-3.125 z"
|
||||
overflow="visible"
|
||||
style="color:#000000;overflow:visible;fill:#7f8c8d;fill-opacity:1;marker:none"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
61
public/static/icons/dummy/box.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="23"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="box-placeholder.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="882"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-11.050847"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="766"
|
||||
inkscape:window-y="164"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
transform="translate(-1113,270)"
|
||||
id="g4"
|
||||
style="color:#bebebe;fill:#7f8c8d;fill-opacity:1">
|
||||
<path
|
||||
d="m 1114.75,-266 a 0.748,0.748 0 0 0 -0.75,0.75 v 13.5 c 0,0.415 0.335,0.75 0.75,0.75 h 12.5 c 0.416,0 0.75,-0.335 0.75,-0.75 v -13.5 a 0.748,0.748 0 0 0 -0.75,-0.75 z m 0.25,1 h 1 v 1 h -1 z m 2.5,0 h 7 c 0.277,0 0.5,0.223 0.5,0.5 v 5 c 0,0.277 -0.223,0.5 -0.5,0.5 h -7 a 0.499,0.499 0 0 1 -0.5,-0.5 v -5 c 0,-0.277 0.223,-0.5 0.5,-0.5 z m 8.5,0 h 1 v 1 h -1 z m -11,2 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z m -11,2 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z m -11,2 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z m -8.5,1 h 7 c 0.277,0 0.5,0.223 0.5,0.5 v 5 c 0,0.277 -0.223,0.5 -0.5,0.5 h -7 a 0.499,0.499 0 0 1 -0.5,-0.5 v -5 c 0,-0.277 0.223,-0.5 0.5,-0.5 z m -2.5,1 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z m -11,2 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z m -11,2 h 1 v 1 h -1 z m 11,0 h 1 v 1 h -1 z"
|
||||
overflow="visible"
|
||||
style="overflow:visible;fill:#7f8c8d;fill-opacity:1;marker:none"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
62
public/static/icons/media-consecutive-dark.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-consecutive-dark.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1578"
|
||||
inkscape:window-height="779"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="5.1186441"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-333 151)"
|
||||
id="g4"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M344-143v2h-10v2h10v2l4-3zm0-6v2h-10v2h10v2l4-3z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#000000;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
61
public/static/icons/media-consecutive.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-consecutive.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7288136"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-333 151)"
|
||||
id="g4"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="M344-143v2h-10v2h10v2l4-3zm0-6v2h-10v2h10v2l4-3z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#ffffff;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
63
public/static/icons/media-no-repeat-dark.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-no-repeat-dark.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1244"
|
||||
inkscape:window-height="710"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7288136"
|
||||
inkscape:cy="7.9661017"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-293 151)"
|
||||
id="g4"
|
||||
style="fill:#000000;fill-opacity:0.50196081">
|
||||
<path
|
||||
d="M299-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2c1.662 0 3 1.338 3 3s-1.338 3-3 3h-1v-2l-4 3 4 3v-2h1c2.77 0 5-2.23 5-5s-2.23-5-5-5z"
|
||||
fill="#666"
|
||||
opacity=".35"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#000000;fill-opacity:0.50196081"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
62
public/static/icons/media-no-repeat.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-no-repeat.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7288136"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-293 151)"
|
||||
id="g4"
|
||||
style="fill:#ffffff;fill-opacity:0.50196081">
|
||||
<path
|
||||
d="M299-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2c1.662 0 3 1.338 3 3s-1.338 3-3 3h-1v-2l-4 3 4 3v-2h1c2.77 0 5-2.23 5-5s-2.23-5-5-5z"
|
||||
fill="#666"
|
||||
opacity=".35"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#ffffff;fill-opacity:0.50196081"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
62
public/static/icons/media-repeat-dark.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-repeat-dark.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1638"
|
||||
inkscape:window-height="826"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7966102"
|
||||
inkscape:cy="7.9661017"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-273 151)"
|
||||
id="g4"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M279-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2c1.662 0 3 1.338 3 3s-1.338 3-3 3h-1v-2l-4 3 4 3v-2h1c2.77 0 5-2.23 5-5s-2.23-5-5-5z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#000000;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
62
public/static/icons/media-repeat-song-dark.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-repeat-song-dark.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1705"
|
||||
inkscape:window-height="767"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.6949153"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-313 151)"
|
||||
id="g4"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M319-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2a2.98 2.98 0 0 1 2.531 1.406 5.483 5.483 0 0 1 2.438 1.906c.007-.106.031-.204.031-.312 0-2.77-2.23-5-5-5zm.5 4a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9zm-.5 2h1v4h1v1h-3v-1h1v-2h-1v-1c1 0 1-1 1-1zm-4.969 2.969l-.03.031.03.031c-.002-.02.002-.042 0-.062z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#000000;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
61
public/static/icons/media-repeat-song.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-repeat-song.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7288136"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-313 151)"
|
||||
id="g4"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="M319-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2a2.98 2.98 0 0 1 2.531 1.406 5.483 5.483 0 0 1 2.438 1.906c.007-.106.031-.204.031-.312 0-2.77-2.23-5-5-5zm.5 4a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9zm-.5 2h1v4h1v1h-3v-1h1v-2h-1v-1c1 0 1-1 1-1zm-4.969 2.969l-.03.031.03.031c-.002-.02.002-.042 0-.062z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#ffffff;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
61
public/static/icons/media-repeat.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-repeat.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7966102"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-273 151)"
|
||||
id="g4"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="M279-150v2h-1c-2.77 0-5 2.23-5 5s2.23 5 5 5v-2c-1.662 0-3-1.338-3-3s1.338-3 3-3h1v2l4-3zm5 2v2c1.662 0 3 1.338 3 3s-1.338 3-3 3h-1v-2l-4 3 4 3v-2h1c2.77 0 5-2.23 5-5s-2.23-5-5-5z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#ffffff;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
62
public/static/icons/media-shuffle-dark.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-shuffle-dark.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1116"
|
||||
inkscape:window-height="688"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7966102"
|
||||
inkscape:cy="7.9661017"
|
||||
inkscape:window-x="643"
|
||||
inkscape:window-y="222"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:pagecheckerboard="0" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-353 151)"
|
||||
id="g4"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
d="M364-149v2c-2.98 0-6.024 6-8 6h-2v2h2c2.994 0 5.996-6 8-6v2l4-3zm-10 2v2h2c.582 0 1.262.548 2 1.281.12-.131.252-.25.375-.375.307-.325.628-.663.938-1-1.072-1.054-2.19-1.906-3.313-1.906zm10 4v2c-.591 0-1.292-.545-2.031-1.281-.424.455-.857.916-1.281 1.375 1.075 1.054 2.194 1.906 3.312 1.906v2l4-3z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#000000;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
61
public/static/icons/media-shuffle.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="16"
|
||||
width="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="media-shuffle.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="931"
|
||||
inkscape:window-height="480"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-5.7966102"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6" />
|
||||
<g
|
||||
color="#bebebe"
|
||||
transform="translate(-353 151)"
|
||||
id="g4"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="M364-149v2c-2.98 0-6.024 6-8 6h-2v2h2c2.994 0 5.996-6 8-6v2l4-3zm-10 2v2h2c.582 0 1.262.548 2 1.281.12-.131.252-.25.375-.375.307-.325.628-.663.938-1-1.072-1.054-2.19-1.906-3.313-1.906zm10 4v2c-.591 0-1.292-.545-2.031-1.281-.424.455-.857.916-1.281 1.375 1.075 1.054 2.194 1.906 3.312 1.906v2l4-3z"
|
||||
fill="#666"
|
||||
overflow="visible"
|
||||
style="marker:none;fill:#ffffff;fill-opacity:1"
|
||||
id="path2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |