fix: docs _site dir
11
docs/_site/assets/css/animate.min.css
vendored
|
|
@ -1,225 +0,0 @@
|
|||
/* =============VALUES============== */
|
||||
:root {
|
||||
--header-height: 46px;
|
||||
--header-font-size: 1.75rem;
|
||||
--header-font-padding: 10px 20px;
|
||||
--header-icon-padding: 5px;
|
||||
--border-color: #DDDDDD;
|
||||
--header-background: rgba(255,255,255,0.9);
|
||||
}
|
||||
|
||||
/* =============HEADER============== */
|
||||
.header{
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
height: var(--header-height);
|
||||
width: 80%;
|
||||
max-width: 960px;
|
||||
white-space: nowrap;
|
||||
background: var(--header-background);
|
||||
top: 0px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#headerContainer {
|
||||
position: fixed;
|
||||
width: 100vw;
|
||||
max-width: 100%;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #5625BA;
|
||||
}
|
||||
|
||||
.centered {
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-top: 1px solid lightgray;
|
||||
margin-top: 5rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin-top: 5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.header *{
|
||||
max-height: var(--header-height);
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-size: var(--header-font-size);
|
||||
}
|
||||
|
||||
.right_side{
|
||||
float: right;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.left_side{
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.header a{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.header_title, .header nav a{
|
||||
padding: calc(2*var(--header-icon-padding));
|
||||
}
|
||||
|
||||
.header_button{
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.header_button img{
|
||||
padding: var(--header-icon-padding);
|
||||
height: var(--header-height);
|
||||
margin-left: var(--header-icon-padding);
|
||||
}
|
||||
|
||||
#header_toggle_mobile{
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* Desktop mode */
|
||||
@media (min-width: 610px) {
|
||||
#header_main_nav{
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile mode */
|
||||
@media (max-width: 610px) {
|
||||
|
||||
.header {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
#titleColumn{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#banner {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
#screenshot {
|
||||
max-width: calc(100vw - 4rem) !important;
|
||||
}
|
||||
|
||||
#header_main_nav{
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: var(--header-height);
|
||||
left: 0px;
|
||||
background: var(--header-background);
|
||||
width: 100vw;
|
||||
max-height: none;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#header_main_nav a{
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Visible by default */
|
||||
#header_toggle_mobile{
|
||||
display: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============CONTENT============== */
|
||||
#content{
|
||||
z-index: 0;
|
||||
min-height: calc( 100vh - var(--header-height) );
|
||||
padding-top: var(--header-height);
|
||||
}
|
||||
|
||||
#banner {
|
||||
width: 80%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.article_image{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.buttonImage{
|
||||
width: 20rem;
|
||||
transition: box-shadow 0.3s;
|
||||
}
|
||||
|
||||
.buttonImage:hover, #browserbutton:hover{
|
||||
box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.spacer {
|
||||
height: 10rem;
|
||||
}
|
||||
|
||||
.paddingColumn{
|
||||
padding: 2rem 0;
|
||||
}
|
||||
.gridItem{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#screenshot {
|
||||
width: 30rem;
|
||||
max-width: calc(50vw - 10rem);
|
||||
border-radius: 13px;
|
||||
box-shadow: 0px 8px 8px 3px rgba(0,0,0,0.25);
|
||||
}
|
||||
|
||||
#footer{
|
||||
border-top: 1px solid var(--border-color);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: "Courier 10 Pitch", Courier, monospace;
|
||||
font-size: 95%;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
#browserbutton {
|
||||
background-color: #000;
|
||||
display: inline-block;
|
||||
height: 50px;
|
||||
width: 160px;
|
||||
border-radius: 6px;
|
||||
transition: box-shadow 0.3s;
|
||||
text-decoration: none;
|
||||
font-size: 1.5rem;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#browserbutton img {
|
||||
float: left;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||
font-size: 95%;
|
||||
line-height: 140%;
|
||||
background: #faf8f0;
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Light'),
|
||||
url('fonts/Ubuntu-Light.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Light Italic'),
|
||||
url('fonts/Ubuntu-LightItalic.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Regular'),
|
||||
url('fonts/Ubuntu-Regular.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Regular Italic'),
|
||||
url('fonts/Ubuntu-Italic.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Medium'),
|
||||
url('fonts/Ubuntu-Medium.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Medium Italic'),
|
||||
url('fonts/Ubuntu-MediumItalic.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Bold'),
|
||||
url('fonts/Ubuntu-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Ubuntu';
|
||||
src: local('Ubuntu Bold Italic'),
|
||||
url('fonts/Ubuntu-BoldItalic.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
-------------------------------
|
||||
UBUNTU FONT LICENCE Version 1.0
|
||||
-------------------------------
|
||||
|
||||
PREAMBLE
|
||||
This licence allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely. The fonts, including any derivative works, can be
|
||||
bundled, embedded, and redistributed provided the terms of this licence
|
||||
are met. The fonts and derivatives, however, cannot be released under
|
||||
any other licence. The requirement for fonts to remain under this
|
||||
licence does not require any document created using the fonts or their
|
||||
derivatives to be published under this licence, as long as the primary
|
||||
purpose of the document is not to be a vehicle for the distribution of
|
||||
the fonts.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this licence and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Original Version" refers to the collection of Font Software components
|
||||
as received under this licence.
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to
|
||||
a new environment.
|
||||
|
||||
"Copyright Holder(s)" refers to all individuals and companies who have a
|
||||
copyright ownership of the Font Software.
|
||||
|
||||
"Substantially Changed" refers to Modified Versions which can be easily
|
||||
identified as dissimilar to the Font Software by users of the Font
|
||||
Software comparing the Original Version with the Modified Version.
|
||||
|
||||
To "Propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification and with or without charging
|
||||
a redistribution fee), making available to the public, and in some
|
||||
countries other activities as well.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
This licence does not grant any rights under trademark law and all such
|
||||
rights are reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of the Font Software, to propagate the Font Software, subject to
|
||||
the below conditions:
|
||||
|
||||
1) Each copy of the Font Software must contain the above copyright
|
||||
notice and this licence. These can be included either as stand-alone
|
||||
text files, human-readable headers or in the appropriate machine-
|
||||
readable metadata fields within text or binary files as long as those
|
||||
fields can be easily viewed by the user.
|
||||
|
||||
2) The font name complies with the following:
|
||||
(a) The Original Version must retain its name, unmodified.
|
||||
(b) Modified Versions which are Substantially Changed must be renamed to
|
||||
avoid use of the name of the Original Version or similar names entirely.
|
||||
(c) Modified Versions which are not Substantially Changed must be
|
||||
renamed to both (i) retain the name of the Original Version and (ii) add
|
||||
additional naming elements to distinguish the Modified Version from the
|
||||
Original Version. The name of such Modified Versions must be the name of
|
||||
the Original Version, with "derivative X" where X represents the name of
|
||||
the new work, appended to that name.
|
||||
|
||||
3) The name(s) of the Copyright Holder(s) and any contributor to the
|
||||
Font Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except (i) as required by this licence, (ii) to
|
||||
acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with
|
||||
their explicit written permission.
|
||||
|
||||
4) The Font Software, modified or unmodified, in part or in whole, must
|
||||
be distributed entirely under this licence, and must not be distributed
|
||||
under any other licence. The requirement for fonts to remain under this
|
||||
licence does not affect any document created using the Font Software,
|
||||
except any version of the Font Software extracted from a document
|
||||
created using the Font Software may only be distributed under this
|
||||
licence.
|
||||
|
||||
TERMINATION
|
||||
This licence becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
|
||||
DEALINGS IN THE FONT SOFTWARE.
|
||||
427
docs/_site/assets/css/normalize.css
vendored
|
|
@ -1,427 +0,0 @@
|
|||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
* and Firefox.
|
||||
* Correct `block` display not defined for `main` in IE 11.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9/10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow not hidden in IE 9/10/11.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
||||
422
docs/_site/assets/css/skeleton.css
vendored
|
|
@ -1,422 +0,0 @@
|
|||
/*
|
||||
* Skeleton V2.0.4
|
||||
* Copyright 2014, Dave Gamache
|
||||
* www.getskeleton.com
|
||||
* Free to use under the MIT license.
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* 12/29/2014
|
||||
*/
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Buttons
|
||||
- Forms
|
||||
- Lists
|
||||
- Code
|
||||
- Tables
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Clearing
|
||||
- Media Queries
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box; }
|
||||
.column,
|
||||
.columns {
|
||||
width: 100%;
|
||||
float: left;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 4%; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
.one.column,
|
||||
.one.columns { width: 4.66666666667%; }
|
||||
.two.columns { width: 13.3333333333%; }
|
||||
.three.columns { width: 22%; }
|
||||
.four.columns { width: 30.6666666667%; }
|
||||
.five.columns { width: 39.3333333333%; }
|
||||
.six.columns { width: 48%; }
|
||||
.seven.columns { width: 56.6666666667%; }
|
||||
.eight.columns { width: 65.3333333333%; }
|
||||
.nine.columns { width: 74.0%; }
|
||||
.ten.columns { width: 82.6666666667%; }
|
||||
.eleven.columns { width: 91.3333333333%; }
|
||||
.twelve.columns { width: 100%; margin-left: 0; }
|
||||
|
||||
.one-third.column { width: 30.6666666667%; }
|
||||
.two-thirds.column { width: 65.3333333333%; }
|
||||
|
||||
.one-half.column { width: 48%; }
|
||||
|
||||
/* Offsets */
|
||||
.offset-by-one.column,
|
||||
.offset-by-one.columns { margin-left: 8.66666666667%; }
|
||||
.offset-by-two.column,
|
||||
.offset-by-two.columns { margin-left: 17.3333333333%; }
|
||||
.offset-by-three.column,
|
||||
.offset-by-three.columns { margin-left: 26%; }
|
||||
.offset-by-four.column,
|
||||
.offset-by-four.columns { margin-left: 34.6666666667%; }
|
||||
.offset-by-five.column,
|
||||
.offset-by-five.columns { margin-left: 43.3333333333%; }
|
||||
.offset-by-six.column,
|
||||
.offset-by-six.columns { margin-left: 52%; }
|
||||
.offset-by-seven.column,
|
||||
.offset-by-seven.columns { margin-left: 60.6666666667%; }
|
||||
.offset-by-eight.column,
|
||||
.offset-by-eight.columns { margin-left: 69.3333333333%; }
|
||||
.offset-by-nine.column,
|
||||
.offset-by-nine.columns { margin-left: 78.0%; }
|
||||
.offset-by-ten.column,
|
||||
.offset-by-ten.columns { margin-left: 86.6666666667%; }
|
||||
.offset-by-eleven.column,
|
||||
.offset-by-eleven.columns { margin-left: 95.3333333333%; }
|
||||
|
||||
.offset-by-one-third.column,
|
||||
.offset-by-one-third.columns { margin-left: 34.6666666667%; }
|
||||
.offset-by-two-thirds.column,
|
||||
.offset-by-two-thirds.columns { margin-left: 69.3333333333%; }
|
||||
|
||||
.offset-by-one-half.column,
|
||||
.offset-by-one-half.columns { margin-left: 52%; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
html {
|
||||
font-size: 62.5%; }
|
||||
body {
|
||||
font-size: 1.75em; /* currently ems cause chrome bug misinterpreting rems on body element */
|
||||
line-height: 1.6;
|
||||
font-weight: 400;
|
||||
font-family: "Ubuntu", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
color: #222;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 2rem;
|
||||
font-weight: 300; }
|
||||
h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}
|
||||
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
|
||||
h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
|
||||
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
|
||||
h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
|
||||
h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 550px) {
|
||||
h1 { font-size: 5.0rem; }
|
||||
h2 { font-size: 4.2rem; }
|
||||
h3 { font-size: 3.6rem; }
|
||||
h4 { font-size: 3.0rem; }
|
||||
h5 { font-size: 2.4rem; }
|
||||
h6 { font-size: 1.5rem; }
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #1EAEDB;
|
||||
cursor: pointer;
|
||||
}
|
||||
a:hover {
|
||||
color: #0FA0CE; }
|
||||
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.button,
|
||||
button,
|
||||
input[type="submit"],
|
||||
input[type="reset"],
|
||||
input[type="button"] {
|
||||
display: inline-block;
|
||||
height: 38px;
|
||||
padding: 0 30px;
|
||||
color: #555;
|
||||
text-align: center;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
line-height: 38px;
|
||||
letter-spacing: .1rem;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
background-color: transparent;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #bbb;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box; }
|
||||
.button:hover,
|
||||
button:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
input[type="button"]:hover,
|
||||
.button:focus,
|
||||
button:focus,
|
||||
input[type="submit"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
input[type="button"]:focus {
|
||||
color: #333;
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.button.button-primary,
|
||||
button.button-primary,
|
||||
input[type="submit"].button-primary,
|
||||
input[type="reset"].button-primary,
|
||||
input[type="button"].button-primary {
|
||||
color: #FFF;
|
||||
background-color: #33C3F0;
|
||||
border-color: #33C3F0; }
|
||||
.button.button-primary:hover,
|
||||
button.button-primary:hover,
|
||||
input[type="submit"].button-primary:hover,
|
||||
input[type="reset"].button-primary:hover,
|
||||
input[type="button"].button-primary:hover,
|
||||
.button.button-primary:focus,
|
||||
button.button-primary:focus,
|
||||
input[type="submit"].button-primary:focus,
|
||||
input[type="reset"].button-primary:focus,
|
||||
input[type="button"].button-primary:focus {
|
||||
color: #FFF;
|
||||
background-color: #1EAEDB;
|
||||
border-color: #1EAEDB; }
|
||||
|
||||
|
||||
/* Forms
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
input[type="email"],
|
||||
input[type="number"],
|
||||
input[type="search"],
|
||||
input[type="text"],
|
||||
input[type="tel"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
textarea,
|
||||
select {
|
||||
height: 38px;
|
||||
padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
|
||||
background-color: #fff;
|
||||
border: 1px solid #D1D1D1;
|
||||
border-radius: 4px;
|
||||
box-shadow: none;
|
||||
box-sizing: border-box; }
|
||||
/* Removes awkward default styles on some inputs for iOS */
|
||||
input[type="email"],
|
||||
input[type="number"],
|
||||
input[type="search"],
|
||||
input[type="text"],
|
||||
input[type="tel"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
textarea {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none; }
|
||||
textarea {
|
||||
min-height: 65px;
|
||||
padding-top: 6px;
|
||||
padding-bottom: 6px; }
|
||||
input[type="email"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="text"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
border: 1px solid #33C3F0;
|
||||
outline: 0; }
|
||||
label,
|
||||
legend {
|
||||
display: block;
|
||||
margin-bottom: .5rem;
|
||||
font-weight: 600; }
|
||||
fieldset {
|
||||
padding: 0;
|
||||
border-width: 0; }
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
display: inline; }
|
||||
label > .label-body {
|
||||
display: inline-block;
|
||||
margin-left: .5rem;
|
||||
font-weight: normal; }
|
||||
|
||||
|
||||
/* Lists
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
ul {
|
||||
list-style: circle inside; }
|
||||
ol {
|
||||
list-style: decimal inside; }
|
||||
ol, ul {
|
||||
padding-left: 0;
|
||||
margin-top: 0; }
|
||||
ul ul,
|
||||
ul ol,
|
||||
ol ol,
|
||||
ol ul {
|
||||
margin: 1.5rem 0 1.5rem 3rem;
|
||||
font-size: 90%; }
|
||||
li {
|
||||
margin-bottom: 1rem; }
|
||||
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
|
||||
/* Tables
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
th,
|
||||
td {
|
||||
padding: 12px 15px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #E1E1E1; }
|
||||
th:first-child,
|
||||
td:first-child {
|
||||
padding-left: 0; }
|
||||
th:last-child,
|
||||
td:last-child {
|
||||
padding-right: 0; }
|
||||
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
table,
|
||||
p,
|
||||
ul,
|
||||
ol,
|
||||
form {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* Clearing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Self Clearing Goodness */
|
||||
.container:after,
|
||||
.row:after,
|
||||
.u-cf {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both; }
|
||||
|
||||
|
||||
/* Media Queries
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/*
|
||||
Note: The best way to structure the use of media queries is to create the queries
|
||||
near the relevant code. For example, if you wanted to change the styles for buttons
|
||||
on small devices, paste the mobile query code up in the buttons section and style it
|
||||
there.
|
||||
*/
|
||||
|
||||
|
||||
/* Larger than mobile */
|
||||
@media (min-width: 400px) {}
|
||||
|
||||
/* Larger than phablet (also point when grid becomes active) */
|
||||
@media (min-width: 550px) {}
|
||||
|
||||
/* Larger than tablet */
|
||||
@media (min-width: 750px) {}
|
||||
|
||||
/* Larger than desktop */
|
||||
@media (min-width: 1000px) {}
|
||||
|
||||
/* Larger than Desktop HD */
|
||||
@media (min-width: 1200px) {}
|
||||
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
|
@ -1,176 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="message.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6199993"
|
||||
inkscape:cx="-40.729549"
|
||||
inkscape:cy="50.693934"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-8.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
<sodipodi:guide
|
||||
position="92,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4760" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 353.96924,406.36222 10.10306,-13 2.20883,2.05882 0,21.88236 -2.20883,2.05882 z"
|
||||
id="path1652"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 401.98822,419.36222 0,-25 -4.0016,0 0,25 z"
|
||||
id="path4215"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 389.98346,419.36222 0,-52 -4.00156,0 0,52 z"
|
||||
id="path4237"
|
||||
inkscape:connector-curvature="0" />
|
||||
<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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 375.97656,349.36133 c -2.6314,0 -4.71356,0.23788 -6.46875,0.89648 -1.75519,0.6586 -3.16114,1.84985 -3.99219,3.35547 -1.66208,3.01124 -1.48476,6.6938 -1.54296,11.72656 l 0,0.0117 0,56.02149 0,0.0117 c 0.0582,5.03276 -0.11912,8.71532 1.54296,11.72656 0.83105,1.50562 2.237,2.69686 3.99219,3.35547 1.75519,0.6586 3.83735,0.89648 6.46875,0.89648 l 36.01563,0 c 2.6314,0 4.71551,-0.23788 6.4707,-0.89648 1.75519,-0.65861 3.15919,-1.84985 3.99023,-3.35547 1.66209,-3.01124 1.48477,-6.6938 1.54297,-11.72656 l 0,-0.0117 0,-56.02149 0,-0.0117 c -0.0582,-5.03276 0.11912,-8.71532 -1.54297,-11.72656 -0.83104,-1.50562 -2.23504,-2.69687 -3.99023,-3.35547 -1.75519,-0.6586 -3.8393,-0.89648 -6.4707,-0.89648 l -36.01563,0 z m 0,4.00195 36.01563,0 c 2.37058,0 4.02426,0.25031 5.06445,0.64063 1.0402,0.39031 1.48966,0.80945 1.89453,1.54297 0.80823,1.46429 0.98613,4.77814 1.04492,9.8164 l 0,55.97656 c -0.0584,5.05418 -0.23518,8.37086 -1.04492,9.83789 -0.40487,0.73352 -0.85433,1.15266 -1.89453,1.54297 -1.04019,0.39032 -2.69387,0.64063 -5.06445,0.64063 l -36.01563,0 c -2.37058,0 -4.0223,-0.25031 -5.0625,-0.64063 -1.04019,-0.39031 -1.48966,-0.80945 -1.89453,-1.54297 -0.80835,-1.46451 -0.98616,-4.77682 -1.04492,-9.8164 l 0,-0.0215 0,-55.95312 0,-0.0234 c 0.0588,-5.03826 0.23669,-8.35211 1.04492,-9.8164 0.40487,-0.73352 0.85434,-1.15266 1.89453,-1.54297 1.0402,-0.39032 2.69192,-0.64063 5.0625,-0.64063 z"
|
||||
id="path4211"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.5 KiB |
|
|
@ -1,203 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="stock_usb.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.0249991"
|
||||
inkscape:cx="35.629893"
|
||||
inkscape:cy="53.907462"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-8.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
<sodipodi:guide
|
||||
position="92,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4760" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00059342;marker:none;enable-background:accumulate"
|
||||
d="m 421.99612,401.93458 0,-17.14379 c 0,0 9.50358,4.04713 16.00635,8.57143 -6.50277,4.5243 -16.00635,8.57236 -16.00635,8.57236 z"
|
||||
id="path4198"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-x="0.00046899999"
|
||||
inkscape:transform-center-y="8.0000098" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4192"
|
||||
width="10.000016"
|
||||
height="10.003973"
|
||||
x="-383.36221"
|
||||
y="-411.99216"
|
||||
transform="matrix(0,-1,-1,0,0,0)" />
|
||||
<ellipse
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="path4194"
|
||||
cx="-408.36221"
|
||||
cy="-393.98505"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
rx="5.9999971"
|
||||
ry="6.0023713" />
|
||||
<ellipse
|
||||
ry="7.0027828"
|
||||
rx="7.0000129"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
cy="-348.96722"
|
||||
cx="-393.36221"
|
||||
id="ellipse4196"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 422.99651,393.36222 -70.02769,0"
|
||||
id="path4199"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 363.97317,393.36222 c 11.00436,0 12.00475,15 22.0087,15 l 4.00159,0"
|
||||
id="path4201"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4203"
|
||||
d="m 376.97833,393.36222 c 11.00436,0 12.00475,-15 22.0087,-15 l 4.00159,0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8 KiB |
|
|
@ -1,174 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="share.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.951479"
|
||||
inkscape:cx="-66.059911"
|
||||
inkscape:cy="38.952069"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="92,-8.0000001"
|
||||
id="guide4075" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,12"
|
||||
id="guide4078" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-9.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,83.568528"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079107;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 362.97266,406.36133 c -7.15818,0 -13.00391,-5.84338 -13.00391,-13 0,-7.15663 5.84573,-13 13.00391,-13 7.15817,0 13.00586,5.84337 13.00586,13 0,7.15662 -5.84769,13 -13.00586,13 z m 0,-4 c 4.99683,0 9.0039,-4.00642 9.0039,-9 0,-4.99358 -4.00707,-9 -9.0039,-9 -4.99684,0 -9.00391,4.00642 -9.00391,9 0,4.99358 4.00707,9 9.00391,9 z"
|
||||
id="path4184"
|
||||
inkscape:connector-curvature="0" />
|
||||
<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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079107;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 416.99414,379.36133 c -7.15817,0 -13.00391,-5.84338 -13.00391,-13 0,-7.15663 5.84574,-13 13.00391,-13 7.15817,0 13.00586,5.84337 13.00586,13 0,7.15662 -5.84769,13 -13.00586,13 z m 0,-4 c 4.99684,0 9.00391,-4.00642 9.00391,-9 0,-4.99358 -4.00707,-9 -9.00391,-9 -4.99684,0 -9.00391,4.00642 -9.00391,9 0,4.99358 4.00707,9 9.00391,9 z"
|
||||
id="ellipse4187"
|
||||
inkscape:connector-curvature="0" />
|
||||
<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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079107;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 416.99414,433.36133 c -7.15817,0 -13.00391,-5.84338 -13.00391,-13 0,-7.15663 5.84574,-13 13.00391,-13 7.15817,0 13.00586,5.84337 13.00586,13 0,7.15662 -5.84769,13 -13.00586,13 z m 0,-4 c 4.99684,0 9.00391,-4.00642 9.00391,-9 0,-4.99358 -4.00707,-8.99805 -9.00391,-8.99805 -4.99684,0 -9.00391,4.00447 -9.00391,8.99805 0,4.99358 4.00707,9 9.00391,9 z"
|
||||
id="ellipse4189"
|
||||
inkscape:connector-curvature="0" />
|
||||
<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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00000095;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 31.212891 36.955078 C 30.095925 37.676968 28.899371 38.278043 27.642578 38.755859 L 41.296875 66.066406 L 44.875 64.277344 L 31.212891 36.955078 z M 65.310547 37.273438 L 51.287109 64.318359 L 54.837891 66.158203 L 68.935547 38.96875 C 67.661395 38.531528 66.450297 37.959573 65.310547 37.273438 z "
|
||||
transform="matrix(0,-1,-1.0003957,0,438.00245,441.36222)"
|
||||
id="path4191" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB |
|
|
@ -1,23 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4874" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="96" viewBox="0 0 96 96.000001" width="96" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4879">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(67.857 -78.505)">
|
||||
<g id="g4845" transform="matrix(0 -1 -1 0 373.51 516.51)">
|
||||
<g id="g4778" transform="matrix(-.99960 0 0 1 575.94 -611)">
|
||||
<g id="g4780" transform="matrix(-1 0 0 1 576 611)">
|
||||
<rect id="rect4782" style="color:#000000;fill:none" transform="scale(-1,1)" height="96" width="96.038" y="345.36" x="-438"/>
|
||||
<path id="path4849" style="color:#000000;fill:#808080" d="m430 411.93c0 11.675-9.3424 21.174-20.961 21.429-5.3915 0-9.5995-1.413-13.487-2.8571-16.066-6.7837-29.485-20-45.584-37.143 16.098-17.143 29.518-30.359 45.584-37.143 3.888-1.4441 8.096-2.8571 13.487-2.8571 11.618 0.25447 20.961 9.7538 20.961 21.429 0 7.9422-4.3266 14.87-10.748 18.571 6.4217 3.7014 10.748 10.629 10.748 18.571z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
|
|
@ -1,192 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="stock_website.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.5967995"
|
||||
inkscape:cx="-6.2277702"
|
||||
inkscape:cy="27.079593"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="false"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="92,-8.0000001"
|
||||
id="guide4075" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,12"
|
||||
id="guide4078" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-9.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 364.0904,368.96573 c -0.0215,-0.0161 -0.0354,-0.0404 -0.0567,-0.0566 -0.0253,-0.0201 -0.057,-0.0305 -0.0821,-0.0508 z"
|
||||
id="path4157" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 364.07673,417.80167 -0.13873,0.10742 c 0.0251,-0.0203 0.0569,-0.0307 0.0821,-0.0508 0.0214,-0.0162 0.0353,-0.0405 0.0567,-0.0566 z"
|
||||
id="path4344" />
|
||||
<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;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079107;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 432,393.36133 c 0,23.17236 -18.83538,42 -42.01562,42 -23.18025,0 -42.01563,-18.82764 -42.01563,-42 0,-23.17236 18.83538,-42 42.01563,-42 23.18024,0 42.01562,18.82764 42.01562,42 z m -4.00195,0 c 0,-21.00932 -16.99476,-37.99805 -38.01367,-37.99805 -21.01892,0 -38.01563,16.98873 -38.01563,37.99805 0,21.00931 16.99671,37.99804 38.01563,37.99805 21.01891,0 38.01367,-16.98874 38.01367,-37.99805 z"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 425.62746,411.82485 -3.73813,-3.38078 2.8481,-8.00712 -4.98418,-2.66904 -6.05222,9.78648 -8.3663,6.76156 2.31409,3.91459 -2.13608,4.09253 -3.91614,-2.31317 1.24604,-2.66904 -6.94225,-4.62633 2.31409,-3.91459 -4.45016,-9.43061 -8.18829,-8.71886 -8.1883,3.73665 -12.10443,8.71887 -6.58624,-1.42349 3.20412,5.16014 17.80063,2.84698 6.58624,4.80427 8.01029,0.17793 5.5182,7.47331 1.60205,5.69396 4.45016,1.06761 11.57042,-6.22776 z"
|
||||
id="path4176"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 429.00958,393.49744 -5.5182,0.17794 -0.71202,-4.80427 5.34019,-5.51602 z"
|
||||
id="path4178"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 424.55942,375.34798 -3.73813,2.31316 -2.8481,-3.20284 -2.6701,3.20284 -3.20411,-1.24555 3.38212,-7.11744 -3.38212,-4.4484 4.45016,-1.42348 6.76424,8.89679 z"
|
||||
id="path4180"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079155;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 409.42888,359.51167 -1.24604,6.93951 2.8481,2.66904 -0.53402,8.18505 -7.83228,4.98221 -8.3663,-3.38078 -3.38212,-11.03204 -12.99447,-2.13523 -6.76424,-2.66904 3.56013,-6.22776 12.99446,-4.62633 12.63845,2.66904 z"
|
||||
id="path4182"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
|
@ -1,163 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="account.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4.4959994"
|
||||
inkscape:cx="-45.195744"
|
||||
inkscape:cy="27.012875"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="92,-8.0000001"
|
||||
id="guide4075" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,12"
|
||||
id="guide4078" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-9.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 48 6 C 24.82764 6 6 24.828928 6 48 C 6 71.171082 24.82764 89.998047 48 89.998047 C 71.17236 89.998047 90 71.171082 90 48 C 90 24.828928 71.17236 6 48 6 z M 48 10 C 69.00932 10 85.998047 26.989403 85.998047 48 C 85.998047 57.324357 82.648284 65.851966 77.089844 72.458984 C 75.880399 69.673828 74.236761 67.15858 72.150391 64.964844 C 70.195161 62.90257 67.842233 61.175943 65.132812 59.773438 C 63.988713 60.779809 62.745307 61.673028 61.435547 62.455078 C 64.623787 63.819518 67.211024 65.571799 69.246094 67.71875 L 69.248047 67.720703 C 71.409661 69.993565 72.998691 72.621656 74.058594 75.660156 C 67.25845 82.068727 58.096807 86 48 86 C 37.865395 86 28.674972 82.039109 21.867188 75.587891 C 22.989919 72.575434 24.572755 69.964739 26.646484 67.712891 C 28.854784 65.385362 31.702026 63.514105 35.273438 62.107422 C 38.780366 60.7261 43.004713 60.001131 47.96875 59.998047 C 47.979327 59.998061 47.989419 60 48 60 C 50.88645 60 53.612664 59.492346 56.121094 58.458984 L 56.136719 58.451172 L 56.154297 58.441406 C 58.643607 57.361963 60.814206 55.824859 62.603516 53.865234 C 64.444386 51.90392 65.862453 49.563353 66.845703 46.898438 C 67.839643 44.204633 68.322266 41.226383 68.322266 38 L 68.322266 37.998047 C 68.322266 34.817245 67.838143 31.865537 66.845703 29.175781 C 65.865123 26.469732 64.449412 24.102715 62.607422 22.138672 C 60.814712 20.174289 58.633466 18.656792 56.134766 17.625 C 53.624206 16.539509 50.89156 16 48 16 C 45.10848 16 42.375774 16.539509 39.865234 17.625 C 37.366424 18.656772 35.164892 20.167924 33.326172 22.125 L 33.316406 22.136719 L 33.304688 22.148438 C 31.512838 24.115219 30.129071 26.479584 29.150391 29.183594 L 29.148438 29.1875 C 28.158817 31.874207 27.677734 34.821724 27.677734 37.998047 C 27.677734 41.22443 28.158384 44.204633 29.152344 46.898438 C 30.132624 49.555276 31.518107 51.890568 33.304688 53.851562 L 33.316406 53.863281 L 33.326172 53.873047 C 34.554402 55.180354 35.946613 56.295627 37.476562 57.216797 C 36.203111 57.542023 34.976694 57.926624 33.808594 58.386719 C 29.779014 59.973861 26.393928 62.163006 23.736328 64.966797 L 23.726562 64.978516 L 23.716797 64.990234 C 21.709351 67.16698 20.094685 69.651154 18.861328 72.400391 C 13.332773 65.801675 10.001958 57.296418 10.001953 48 C 10.001953 26.989403 26.99069 10 48 10 z M 48 19.998047 C 50.40753 19.998047 52.57292 20.436059 54.5625 21.298828 L 54.580078 21.306641 L 54.595703 21.314453 C 56.591283 22.136548 58.256599 23.297094 59.662109 24.839844 L 59.671875 24.851562 L 59.681641 24.863281 C 61.135141 26.410299 62.268621 28.281981 63.087891 30.546875 L 63.089844 30.554688 L 63.09375 30.560547 C 63.90341 32.754919 64.320312 35.222209 64.320312 38 C 64.320312 40.82987 63.90191 43.323378 63.09375 45.513672 C 62.27613 47.729685 61.141471 49.582973 59.681641 51.136719 L 59.671875 51.148438 L 59.662109 51.160156 C 58.253889 52.705905 56.579012 53.89482 54.576172 54.765625 C 52.584432 55.583162 50.41227 56 48 56 C 45.58707 56 43.414065 55.583621 41.421875 54.765625 C 39.419395 53.89481 37.715406 52.69911 36.253906 51.146484 C 34.842036 49.593449 33.7259 47.735133 32.90625 45.513672 C 32.09808 43.323378 31.679688 40.82987 31.679688 38 C 31.679688 35.222209 32.09658 32.754919 32.90625 30.560547 L 32.908203 30.554688 L 32.912109 30.546875 C 33.733279 28.276793 34.848186 26.399894 36.253906 24.853516 C 37.713036 23.303549 39.408717 22.136538 41.404297 21.314453 L 41.419922 21.306641 L 41.4375 21.298828 C 43.42706 20.436059 45.59251 19.998047 48 19.998047 z "
|
||||
transform="matrix(0,-1,-1.0003957,0,438.00245,441.36222)"
|
||||
id="path4116" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 9.1 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
|
@ -1,173 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="send.svg">
|
||||
<defs
|
||||
id="defs4876">
|
||||
<inkscape:path-effect
|
||||
effect="powerstroke"
|
||||
id="path-effect4213"
|
||||
is_visible="true"
|
||||
offset_points="0,2.8284271"
|
||||
sort_points="true"
|
||||
interpolator_type="CubicBezierJohan"
|
||||
interpolator_beta="0.2"
|
||||
start_linecap_type="zerowidth"
|
||||
linejoin_type="extrp_arc"
|
||||
miter_limit="4"
|
||||
end_linecap_type="zerowidth"
|
||||
cusp_linecap_type="round" />
|
||||
<inkscape:path-effect
|
||||
effect="powerstroke"
|
||||
id="path-effect4205"
|
||||
is_visible="true"
|
||||
offset_points="1,4"
|
||||
sort_points="true"
|
||||
interpolator_type="CubicBezierJohan"
|
||||
interpolator_beta="0.2"
|
||||
start_linecap_type="zerowidth"
|
||||
linejoin_type="extrp_arc"
|
||||
miter_limit="4"
|
||||
end_linecap_type="zerowidth"
|
||||
cusp_linecap_type="round" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.5967995"
|
||||
inkscape:cx="73.412477"
|
||||
inkscape:cy="42.593387"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-8.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
<sodipodi:guide
|
||||
position="92,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4760" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<rect
|
||||
transform="rotate(90)"
|
||||
y="-28.142857"
|
||||
x="78.505051"
|
||||
height="96"
|
||||
width="96"
|
||||
id="rect4782"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
|
||||
d="M 91.871094 4 C 45.62034 19.587542 4.0175781 41.701172 4.0175781 41.701172 L 37.521484 58.443359 L 54.273438 91.935547 L 54.306641 91.96875 L 54.337891 92 C 54.337891 92 77.534478 48.179866 91.982422 4.0195312 C 91.977522 4.0147312 91.970441 4.009845 91.957031 4.015625 C 91.951431 4.010025 91.938278 4.0132188 91.929688 4.0117188 C 91.924087 4.0061187 91.904717 4.0117245 91.898438 4.0078125 C 91.893538 4.0030125 91.876184 4.0051 91.871094 4 z M 85.462891 10.537109 C 74.674218 41.379954 60.733202 70.471839 54.359375 83.162109 L 40.503906 55.458984 L 12.880859 41.658203 C 25.443504 35.353803 53.797835 21.81196 85.462891 10.537109 z "
|
||||
transform="translate(-67.857146,78.50504)"
|
||||
id="path4193" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m -29.857146,136.50504 c 0,0 2,2 2,2 7.8,-7.8 29.2,-33.2 37,-41 -7.8,7.8 -33.2,29.2 -41,37 0,0 2,2 2,2 z"
|
||||
id="path4211" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 60 KiB |
|
|
@ -1,48 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 181.4 181.9" style="enable-background:new 0 0 181.4 181.9;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:#F094BE;}
|
||||
.st2{fill:#4D3F92;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Capa_1">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="90.891" y1="0.2799" x2="90.891" y2="181.8763">
|
||||
<stop offset="0" style="stop-color:#F6BFD9"/>
|
||||
<stop offset="0.9951" style="stop-color:#F3A8CA"/>
|
||||
</linearGradient>
|
||||
<rect x="0.1" y="0.3" class="st0" width="181.6" height="181.6"/>
|
||||
<path class="st1" d="M181.7,37.6v144.3H0.1v-37.3c0,0,2-1.4,5.5-3.8C36,119.6,181.7,19.2,181.7,37.6z"/>
|
||||
</g>
|
||||
<g id="Capa_2">
|
||||
<g>
|
||||
<path class="st2" d="M151.6,95.1c1.5-0.3,2.8-1,3.8-2c4-5.3,0.8-11.8-4.5-12.6c-0.8,0-1.5-0.8-1.5-1.5c0-0.3,0-0.5,0-0.5
|
||||
c0.8-0.8,1.5-1.8,2.5-3.3c8.1-10.8,11.8-50.6,3.8-53.7c-9.8-3.3-29.7,6.3-38.3,17.4c-0.5-0.3-1-1-1-1.8c0.3-3-1.3-5.5-3.5-6.8
|
||||
c-4.5-2.3-8.8,0-10.6,3.3c-0.5,0.8-1.3,1.3-2,1c-0.8,0-1.5-0.8-1.5-1.5c-0.5-2.5-2-4.5-4.3-5.5c-4.8-2-9.8,0.8-10.6,5.3
|
||||
c-0.3,0.8-0.8,1.5-1.5,1.5c-0.8,0.3-1.5-0.3-2-1c-1.5-2.3-4-3.8-6.5-3.8c-4,0-7.6,3.3-7.8,7.3v0.3v0.3c0,0.8-0.5,1.5-1,1.8h-0.3
|
||||
c-8.3-10.8-28.5-20.7-38.5-17.4c-8.1,2.8-4.3,42.6,4,53.4c1.5,2,2.8,3.5,3.8,4.5c-0.3,0.8-1,1.5-1.8,1.5c-1.3,0-2.5,0.5-3.5,1.3
|
||||
c-5.3,5-2.3,12.1,3,13.4c0.8,0.3,1.5,1,1.5,1.8c0,0.8-0.5,1.8-1.3,2c-1,0.5-2,1-2.8,2c-4,5.8,0,12.3,5.5,12.3
|
||||
c0.8,0,1.5,0.5,1.8,1.3c0.3,0.8,0.3,1.5-0.5,2c-1.5,1.5-2.3,3.5-2,5.5c0.3,2.8,2,5.3,4.8,6.5c1.5,0.8,3,0.8,4.5,0.5
|
||||
c0.8-0.3,1.5,0,2,0.8c0.5,0.5,0.5,1.5,0.3,2c-0.8,1.5-1,3.3-0.5,5c0.8,2.8,2.8,4.8,5.5,5.5c2.5,0.5,4.3-0.3,5.5-0.8
|
||||
c0.5-0.3-3.3,9.1-6,15.4c-0.8,2,1.3,4.3,3.5,3.3c8.3-3.8,22.2-10.3,22.2-9.8c0.5,5.3,6.5,9.1,12.3,5.3c1.3-0.8,2-2.3,2.3-3.5
|
||||
c0.3-0.8,1-1.5,2-1.5c1,0,1.8,0.5,2,1.5c0.3,1.3,0.8,2.3,1.8,3c5.8,4.5,12.3,0.8,12.8-4.8c0-0.8,0.5-1.5,1.3-1.8
|
||||
c0.8-0.3,1.5,0,2,0.5c1.5,1.5,3.3,2.5,5.3,2.5l0,0c2.5,0,5-1.3,6.5-3.8c1-1.5,1.3-3,1-5c0-0.8,0.3-1.5,0.8-2c0.5-0.5,1.5-0.5,2,0
|
||||
c1.5,0.8,3.3,1.3,5,0.8c2.8-0.5,5-2.8,5.8-5.3c0.5-1.8,0.3-3.5-0.5-5.3c-0.3-0.8-0.3-1.5,0.3-2s1.3-0.8,2-0.8
|
||||
c1.8,0.3,3.3,0.3,4.8-0.5c2.3-1,3.8-3,4.3-5.5c0.5-2.5-0.3-4.8-2-6.5c-0.5-0.5-0.8-1.3-0.5-2s1-1.3,1.8-1.3c1.8,0,3.8-0.5,5-2
|
||||
c4.3-4.5,2.3-10.6-2.5-12.6c-0.8-0.3-1.3-1-1.3-2C150.1,95.8,150.8,95.1,151.6,95.1z"/>
|
||||
<path class="st3" d="M131.4,42.2c0.5,1.5,0.5,3,0,4.5c-0.3,0.8,0,1.5,0.5,2s1.3,0.8,2,0.5c1-0.5,2-0.5,3-0.5c2.3,0,4.3,1,5.8,3
|
||||
c1,1.3,1.8,3,1.5,4.8c0,1.5-0.5,2.8-1.3,4c-0.5,0.5-0.5,1.5,0,2c0.3,0.3,0.5,0.8,1,0.8c1-0.3,2-1,2.8-2c4.5-6.3,5.3-26.2,0.8-27.7
|
||||
c-4.5-1.5-12.3,1.5-17.9,6C130.7,40.1,131.2,40.9,131.4,42.2z"/>
|
||||
<path class="st3" d="M39,63.6c0.3-0.3,0.5-0.5,0.8-0.8c0.5-0.8,0.3-1.5,0-2C38.5,59,38.2,57,38.5,55c0.5-2.8,2.8-5,5.5-5.8
|
||||
c1.5-0.5,3-0.3,4.5,0.3c0.8,0.3,1.5,0,2-0.5c0.5-0.5,0.8-1.3,0.5-2c-0.5-1.5-0.5-3,0-4.5c0.3-1,0.8-2,1.5-2.8
|
||||
c-5.5-4.5-13.9-7.8-18.4-6.3S30.4,54.8,35,61.1C36,62.6,37.2,63.3,39,63.6z"/>
|
||||
<g>
|
||||
<circle class="st3" cx="60.9" cy="94.6" r="9.3"/>
|
||||
<path class="st3" d="M100.7,94.6c0,5.3-4.3,9.3-9.3,9.3c-5.3,0-9.3-4.3-9.3-9.3S100.7,89.3,100.7,94.6z"/>
|
||||
<circle class="st3" cx="121.6" cy="94.6" r="9.3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
|
@ -1,92 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 708.7 708.7" style="enable-background:new 0 0 708.7 708.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#444444;}
|
||||
.st1{fill:#00A1BC;}
|
||||
.st2{fill:#4C3D91;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M151.6,452.3c-0.9,1.2-1.3,2.6-1.3,4v4.5h8.7c1.5,0,2.8,0.5,3.8,1.5c1,1,1.5,2.2,1.5,3.8
|
||||
c0,1.5-0.5,2.8-1.5,3.8c-1,1-2.3,1.5-3.8,1.5h-8.7V505c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7c-1.7,0-3-0.6-4.1-1.7
|
||||
c-1.1-1.1-1.6-2.5-1.6-4.1v-33.7h-5.1c-1.5,0-2.8-0.5-3.8-1.5c-1-1-1.5-2.2-1.5-3.8c0-1.5,0.5-2.8,1.5-3.8c1-1,2.3-1.5,3.8-1.5h5.1
|
||||
v-4.4c0-4.8,1.6-8.6,4.9-11.6c3.3-3,8-4.5,14.1-4.5c2.3,0,4.4,0.5,6.1,1.4c1.7,1,2.6,2.4,2.6,4.4c0,1.5-0.4,2.8-1.3,3.7
|
||||
c-0.9,1-2,1.4-3.2,1.4c-0.3,0-0.7,0-1-0.1c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.4-2.8-0.6-3.8-0.6C154,450.5,152.5,451.1,151.6,452.3z
|
||||
M182.1,509.2c-1.1,1.1-2.5,1.7-4.1,1.7c-1.6,0-2.9-0.6-4-1.7c-1.1-1.1-1.6-2.5-1.6-4.1v-58.8c0-1.7,0.6-3,1.7-4.1
|
||||
c1.1-1.1,2.5-1.7,4.1-1.7c1.6,0,2.9,0.6,4,1.7c1.1,1.1,1.6,2.5,1.6,4.1V505C183.8,506.7,183.3,508,182.1,509.2z"/>
|
||||
<path class="st0" d="M239,461.6c1.1,1.1,1.6,2.5,1.6,4.1v24.2c0,6.9-1.9,12.2-5.7,16.1c-3.8,3.9-9.2,5.8-16.1,5.8
|
||||
c-7,0-12.3-1.9-16.1-5.8c-3.7-3.9-5.6-9.2-5.6-16.1v-24.2c0-1.6,0.5-3,1.6-4.1c1.1-1.1,2.4-1.7,4.1-1.7c1.6,0,3,0.6,4.1,1.7
|
||||
c1.1,1.1,1.6,2.5,1.6,4.1v24.2c0,3.9,0.9,6.7,2.6,8.6c1.7,1.9,4.3,2.8,7.7,2.8c3.5,0,6.1-0.9,7.8-2.8c1.7-1.9,2.6-4.7,2.6-8.6
|
||||
v-24.2c0-1.6,0.5-3,1.6-4.1c1.1-1.1,2.4-1.7,4.1-1.7C236.6,459.9,237.9,460.4,239,461.6z"/>
|
||||
<path class="st0" d="M272.9,452.3c-0.9,1.2-1.3,2.6-1.3,4v4.5h8.7c1.5,0,2.8,0.5,3.8,1.5c1,1,1.5,2.2,1.5,3.8
|
||||
c0,1.5-0.5,2.8-1.5,3.8c-1,1-2.3,1.5-3.8,1.5h-8.7V505c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7c-1.7,0-3-0.6-4.1-1.7
|
||||
c-1.1-1.1-1.6-2.5-1.6-4.1v-33.7H255c-1.5,0-2.8-0.5-3.8-1.5c-1-1-1.5-2.2-1.5-3.8c0-1.5,0.5-2.8,1.5-3.8c1-1,2.3-1.5,3.8-1.5h5.1
|
||||
v-4.4c0-4.8,1.6-8.6,4.9-11.6c3.3-3,8-4.5,14.1-4.5c2.3,0,4.4,0.5,6.1,1.4c1.7,1,2.6,2.4,2.6,4.4c0,1.5-0.4,2.8-1.3,3.7
|
||||
c-0.9,1-2,1.4-3.2,1.4c-0.3,0-0.7,0-1-0.1s-0.7-0.1-1.1-0.2c-1.5-0.4-2.8-0.6-3.8-0.6C275.3,450.5,273.8,451.1,272.9,452.3z
|
||||
M312.6,452.3c-0.9,1.2-1.3,2.6-1.3,4v4.5h8.7c1.5,0,2.8,0.5,3.8,1.5c1,1,1.5,2.2,1.5,3.8c0,1.5-0.5,2.8-1.5,3.8
|
||||
c-1,1-2.3,1.5-3.8,1.5h-8.7V505c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7c-1.7,0-3-0.6-4.1-1.7c-1.1-1.1-1.6-2.5-1.6-4.1
|
||||
v-33.7h-5.1c-1.5,0-2.8-0.5-3.8-1.5c-1-1-1.5-2.2-1.5-3.8c0-1.5,0.5-2.8,1.5-3.8c1-1,2.3-1.5,3.8-1.5h5.1v-4.4
|
||||
c0-4.8,1.6-8.6,4.9-11.6c3.3-3,8-4.5,14.1-4.5c2.3,0,4.4,0.5,6.1,1.4s2.6,2.4,2.6,4.4c0,1.5-0.4,2.8-1.3,3.7c-0.9,1-2,1.4-3.2,1.4
|
||||
c-0.3,0-0.7,0-1-0.1c-0.4-0.1-0.7-0.1-1.1-0.2c-1.5-0.4-2.8-0.6-3.8-0.6C315,450.5,313.5,451.1,312.6,452.3z"/>
|
||||
<path class="st0" d="M374.3,461.6c1.1,1.1,1.6,2.5,1.6,4.1v40.5c0,8.2-2.2,14.3-6.7,18c-4.4,3.8-10.4,5.7-17.8,5.7
|
||||
c-2.2,0-4.4-0.2-6.6-0.5c-2.3-0.4-4.1-0.8-5.5-1.4c-3.1-1.3-4.7-3.2-4.7-5.5c0-0.4,0.1-1,0.3-1.5c0.4-1.4,1-2.5,2-3.2
|
||||
c0.9-0.7,1.9-1.1,3-1.1c0.6,0,1.2,0.1,1.8,0.3c0.4,0.2,1.2,0.5,2.3,1c1.1,0.4,2.3,0.8,3.5,1.1c1.2,0.3,2.5,0.4,3.9,0.4
|
||||
c4.5,0,7.8-1,9.9-2.9c2.1-1.9,3.2-5.3,3.2-9.9v-1c-3.3,4.1-8.4,6.2-15.4,6.2c-3.3,0-6.2-0.8-8.8-2.3c-2.5-1.6-4.5-3.7-5.9-6.5
|
||||
c-1.4-2.8-2.1-5.9-2.1-9.5v-27.8c0-1.6,0.5-3,1.6-4.1c1.1-1.1,2.4-1.7,4.1-1.7s3,0.6,4.1,1.7c1.1,1.1,1.6,2.5,1.6,4.1v24.4
|
||||
c0,4,0.9,6.9,2.6,8.6c1.7,1.7,4.3,2.6,7.7,2.6c3.3,0,5.9-1,7.7-2.9c1.8-1.9,2.7-4.7,2.7-8.3v-24.4c0-1.6,0.5-3,1.6-4.1
|
||||
c1.1-1.1,2.4-1.7,4.1-1.7S373.2,460.4,374.3,461.6z"/>
|
||||
<path class="st1" d="M423,461.5c3.3,1.7,5,3.9,5,6.7c0,1.4-0.4,2.6-1.2,3.7c-0.8,1-1.9,1.6-3.2,1.6c-1,0-1.8-0.1-2.5-0.4
|
||||
c-0.6-0.3-1.3-0.7-1.9-1.1c-0.6-0.5-1.2-0.9-1.8-1.2c-0.6-0.3-1.6-0.6-2.8-0.9c-1.2-0.3-2.2-0.4-3-0.4c-4.8,0-8.5,1.5-11.2,4.4
|
||||
c-2.7,3-4,6.8-4,11.6c0,4.6,1.4,8.4,4.1,11.4c2.7,3,6.2,4.5,10.5,4.5c3.1,0,5.4-0.4,7-1.1c0.4-0.2,0.9-0.5,1.6-1
|
||||
c0.7-0.5,1.3-0.8,1.9-1.1c0.6-0.3,1.3-0.4,2.1-0.4c1.6,0,2.8,0.5,3.8,1.5c0.9,1,1.4,2.3,1.4,3.9c0,1.5-0.9,3-2.7,4.3
|
||||
c-1.8,1.3-4.1,2.4-7,3.2c-2.9,0.8-6,1.2-9.3,1.2c-4.9,0-9.2-1.1-12.9-3.4c-3.7-2.3-6.6-5.4-8.6-9.5c-2-4-3-8.5-3-13.5
|
||||
c0-5.1,1.1-9.7,3.2-13.7c2.1-4,5.1-7.1,8.9-9.4c3.8-2.3,8.1-3.4,12.9-3.4C415.4,458.9,419.7,459.8,423,461.5z"/>
|
||||
<path class="st1" d="M476.6,464.7c2.4,3.8,3.6,9.2,3.6,15.9V505c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7s-3-0.6-4.1-1.7
|
||||
c-1.1-1.1-1.6-2.5-1.6-4.1v-24.4c0-3.5-0.7-6.2-2-8.2c-1.4-2-3.8-3-7.2-3c-3.6,0-6.3,1.1-8.3,3.2c-2,2.1-3,4.8-3,8V505
|
||||
c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7s-3-0.6-4.1-1.7c-1.1-1.1-1.6-2.5-1.6-4.1v-58.8c0-1.7,0.5-3,1.6-4.1
|
||||
c1.1-1.1,2.4-1.7,4.1-1.7s3,0.6,4.1,1.7c1.1,1.1,1.6,2.5,1.6,4.1v21c1.7-2.3,3.9-4.2,6.5-5.9c2.6-1.6,5.6-2.4,8.8-2.4
|
||||
C469.9,458.9,474.2,460.9,476.6,464.7z"/>
|
||||
<path class="st1" d="M537.9,460.6c1.1,1.1,1.6,2.5,1.6,4.2V505c0,1.7-0.5,3-1.6,4.1c-1.1,1.1-2.4,1.7-4.1,1.7c-1.7,0-3-0.5-4-1.6
|
||||
c-1-1.1-1.6-2.4-1.7-4.1c-1.6,1.8-3.7,3.4-6.4,4.7c-2.7,1.3-5.5,2-8.5,2c-4.4,0-8.3-1.1-11.9-3.4c-3.6-2.3-6.4-5.4-8.4-9.4
|
||||
c-2.1-4-3.1-8.5-3.1-13.6c0-5.1,1-9.6,3-13.7c2-4,4.8-7.2,8.3-9.4c3.5-2.3,7.4-3.4,11.7-3.4c3,0,5.9,0.6,8.6,1.7
|
||||
c2.7,1.1,4.9,2.5,6.8,4.2v-0.1c0-1.6,0.5-3,1.6-4.1c1.1-1.1,2.4-1.7,4.1-1.7C535.5,458.9,536.9,459.5,537.9,460.6z M524.7,496.8
|
||||
c2.6-3,3.9-6.8,3.9-11.4c0-4.6-1.3-8.4-3.9-11.4c-2.6-3-6-4.6-10.1-4.6c-4.1,0-7.4,1.5-10,4.6c-2.6,3-3.9,6.9-3.9,11.4
|
||||
c0,4.6,1.3,8.4,3.9,11.4c2.6,3,5.9,4.5,10,4.5C518.7,501.3,522.1,499.8,524.7,496.8z"/>
|
||||
<path class="st1" d="M578.9,501.4c0.7,0.9,1.1,2,1.1,3.4c0,1.7-0.9,3.2-2.8,4.3c-1.9,1.2-4,1.8-6.3,1.8c-3.9,0-7.3-0.8-9.9-2.5
|
||||
c-2.7-1.7-4-5.3-4-10.7v-26.3h-4.4c-1.5,0-2.8-0.5-3.8-1.5c-1-1-1.5-2.3-1.5-3.8c0-1.5,0.5-2.7,1.5-3.7c1-1,2.3-1.5,3.8-1.5h4.4
|
||||
v-6.1c0-1.7,0.6-3,1.7-4.1c1.1-1.1,2.5-1.7,4.1-1.7c1.6,0,2.9,0.6,4,1.7c1.1,1.1,1.6,2.5,1.6,4.1v6.1h6.8c1.5,0,2.8,0.5,3.8,1.5
|
||||
s1.5,2.3,1.5,3.8c0,1.5-0.5,2.7-1.5,3.7s-2.3,1.5-3.8,1.5h-6.8v25.8c0,1.3,0.3,2.3,1,2.9c0.7,0.6,1.6,0.9,2.9,0.9
|
||||
c0.5,0,1.2-0.1,2.1-0.4c0.8-0.3,1.5-0.5,2.2-0.5C577.4,500.1,578.2,500.5,578.9,501.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M458.6,308.3c2.5-0.5,4.9-1.6,6.4-3.6c7-9.2,1.4-20-7.7-21.4c-1.3-0.2-2.4-1.2-2.7-2.5c-0.1-0.3-0.1-0.7-0.1-1
|
||||
c1.2-1.4,2.6-3.2,4.2-5.4c0,0,0,0,0,0c0.1-0.1,0.2-0.3,0.3-0.4c13.5-19.1,19.7-85.9,6-90.6c-16.8-5.8-50.6,10.9-65,29.4
|
||||
c-1.1-0.6-1.7-1.7-1.7-3c0.4-5-2.1-9.4-6.2-11.5c-7.9-4-15.2-0.2-18,5.4c-0.6,1.3-2.1,2-3.5,1.8c-1.3-0.2-2.4-1.2-2.8-2.5
|
||||
c-1-4.1-3.2-7.8-7.1-9.5c-8.2-3.6-16.5,1.3-18.1,9.1c-0.3,1.4-1.4,2.4-2.7,2.6c-1.4,0.2-2.7-0.4-3.4-1.6c-2.2-3.9-6.3-6.3-10.8-6.5
|
||||
c-7.1-0.2-13,5.4-13.1,12.5c0,0.1,0,0.3,0,0.4l0,0.3c0,1.3-0.7,2.5-1.9,3.1c-0.1,0.1-0.3,0.1-0.4,0.1
|
||||
c-14.2-18.6-48.5-35.5-65.5-29.6c-13.8,4.8-7.1,72.6,6.7,91.1c2.7,3.6,4.7,6,6.3,7.5c-0.4,1.4-1.5,2.4-3,2.5
|
||||
c-2.2,0.2-4.5,0.8-6.1,2.3c-8.9,8.7-4,20.5,5,22.7c1.4,0.3,2.4,1.5,2.5,3c0.1,1.5-0.7,2.9-2.1,3.4c-1.9,0.7-3.6,1.7-4.8,3.3
|
||||
c-6.9,9.8,0,20.8,9.6,21.1c1.3,0,2.5,0.9,3,2.1c0.5,1.2,0.2,2.6-0.7,3.6c-2.4,2.6-3.7,5.9-3.5,9.4c0.2,4.7,3.4,9.1,8,11.1
|
||||
c2.5,1.1,5,1.3,7.7,0.7c1.2-0.3,2.5,0.2,3.4,1.1c0.8,1,1,2.4,0.4,3.5c-1.2,2.7-1.5,5.6-0.8,8.6c1.1,4.7,4.8,8.2,9.5,9.3
|
||||
c4.1,0.9,7.4-0.3,9.4-1.4c0.7-0.4-5.6,15.3-10.1,26.3c-1.5,3.6,2.2,7.2,5.8,5.5c14-6.5,37.7-17.5,37.8-16.5c0.8,9.2,11.3,15.4,21,9
|
||||
c2.1-1.4,3.3-3.7,3.9-6.2c0.4-1.5,1.7-2.5,3.2-2.5c1.6,0,2.9,1.1,3.3,2.6c0.5,1.9,1.3,3.8,2.9,5.1c9.7,7.7,21,1.4,21.9-8.1
|
||||
c0.1-1.3,1-2.5,2.3-2.9c1.3-0.4,2.7,0,3.5,1c2.4,2.7,5.6,4.3,9.2,4.4c0,0,0.1,0,0.1,0c4.3,0.1,8.6-2.3,11.2-6.4
|
||||
c1.7-2.7,2.3-5.4,1.8-8.4c-0.2-1.3,0.3-2.5,1.4-3.3c1.1-0.7,2.4-0.8,3.5-0.2c2.7,1.5,5.7,2,8.8,1.4c4.7-0.9,8.7-4.5,9.9-9.2
|
||||
c0.8-3.1,0.5-6.2-0.8-9c-0.6-1.2-0.4-2.5,0.4-3.5c0.8-1,2.1-1.5,3.3-1.2c2.8,0.6,5.4,0.3,8.1-0.9c3.8-1.8,6.6-5.4,7.3-9.4
|
||||
c0.7-4.2-0.6-8.3-3.6-11.3c-0.9-0.9-1.2-2.3-0.8-3.6c0.5-1.2,1.6-2.1,3-2.1c3.2-0.1,6.3-1,8.5-3.3c7.2-7.8,3.7-18.2-4.1-21.3
|
||||
c-1.3-0.5-2.2-1.9-2.1-3.3C456,309.8,457.1,308.6,458.6,308.3z"/>
|
||||
<path class="st3" d="M424.3,218.2c0.9,2.5,0.9,5,0.1,7.6c-0.4,1.2,0,2.6,0.9,3.4c0.9,0.9,2.3,1.1,3.5,0.6c1.6-0.6,3.3-0.9,5.1-0.9
|
||||
c3.8,0.1,7.4,1.9,9.8,5c1.8,2.3,2.8,5.3,2.7,8.3c-0.1,2.4-0.8,4.7-2.2,6.7c-0.7,1.1-0.8,2.4-0.1,3.5c0.4,0.6,1,1.1,1.6,1.4
|
||||
c1.9-0.6,3.5-1.8,4.8-3.5c7.8-10.6,9.1-44.4,1.2-47.1c-7.5-2.6-20.9,2.7-30.4,10.1C422.7,214.8,423.7,216.4,424.3,218.2z"/>
|
||||
<path class="st3" d="M266.8,254.8c0.4-0.3,0.8-0.7,1.1-1.1c0.6-1.1,0.6-2.5-0.2-3.6c-2-2.9-2.8-6.3-2.1-9.8c0.9-4.8,4.7-8.8,9.4-10
|
||||
c2.6-0.7,5.2-0.5,7.7,0.4c1.2,0.5,2.5,0.2,3.5-0.7c0.9-0.9,1.3-2.2,0.9-3.4c-0.8-2.5-0.8-5.1,0-7.6c0.5-1.7,1.4-3.3,2.6-4.6
|
||||
c-9.5-7.8-23.6-13.4-31.4-10.7c-7.9,2.8-6.5,36.6,1.4,47.1C261.6,253.2,264,254.5,266.8,254.8z"/>
|
||||
<g>
|
||||
<circle class="st3" cx="304.3" cy="307.5" r="16"/>
|
||||
<path class="st3" d="M371.9,307.5c0,8.8-7.2,16-16,16s-16-7.2-16-16S371.9,298.6,371.9,307.5z"/>
|
||||
<circle class="st3" cx="407.5" cy="307.5" r="16"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB |
|
|
@ -1,37 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 73.8 73.8" style="enable-background:new 0 0 73.8 73.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#4C3D91;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M60.9,38.5c0.6-0.1,1.1-0.4,1.5-0.8c1.6-2.1,0.3-4.7-1.8-5c-0.3,0-0.6-0.3-0.6-0.6c0-0.1,0-0.2,0-0.2
|
||||
c0.3-0.3,0.6-0.7,1-1.3c3.2-4.3,4.7-20.1,1.5-21.3c-3.9-1.3-11.8,2.5-15.2,6.9c-0.2-0.1-0.4-0.4-0.4-0.7c0.1-1.2-0.5-2.2-1.4-2.7
|
||||
c-1.8-0.9-3.5,0-4.2,1.3c-0.2,0.3-0.5,0.5-0.8,0.4c-0.3,0-0.6-0.3-0.6-0.6c-0.2-1-0.8-1.8-1.7-2.2c-1.9-0.8-3.9,0.3-4.2,2.1
|
||||
c-0.1,0.3-0.3,0.6-0.6,0.6c-0.3,0.1-0.6-0.1-0.8-0.4C32,13.1,31,12.5,30,12.5c-1.6,0-3,1.3-3.1,2.9c0,0,0,0.1,0,0.1l0,0.1
|
||||
c0,0.3-0.2,0.6-0.4,0.7c0,0-0.1,0-0.1,0C23.1,12,15.1,8.1,11.1,9.4c-3.2,1.1-1.7,16.9,1.6,21.2c0.6,0.8,1.1,1.4,1.5,1.8
|
||||
c-0.1,0.3-0.4,0.6-0.7,0.6c-0.5,0-1,0.2-1.4,0.5c-2.1,2-0.9,4.8,1.2,5.3c0.3,0.1,0.6,0.4,0.6,0.7c0,0.3-0.2,0.7-0.5,0.8
|
||||
c-0.4,0.2-0.8,0.4-1.1,0.8c-1.6,2.3,0,4.9,2.2,4.9c0.3,0,0.6,0.2,0.7,0.5c0.1,0.3,0.1,0.6-0.2,0.8c-0.6,0.6-0.9,1.4-0.8,2.2
|
||||
c0.1,1.1,0.8,2.1,1.9,2.6c0.6,0.3,1.2,0.3,1.8,0.2c0.3-0.1,0.6,0,0.8,0.3c0.2,0.2,0.2,0.6,0.1,0.8c-0.3,0.6-0.4,1.3-0.2,2
|
||||
c0.3,1.1,1.1,1.9,2.2,2.2c1,0.2,1.7-0.1,2.2-0.3c0.2-0.1-1.3,3.6-2.4,6.1c-0.3,0.8,0.5,1.7,1.4,1.3c3.3-1.5,8.8-4.1,8.8-3.9
|
||||
c0.2,2.1,2.6,3.6,4.9,2.1c0.5-0.3,0.8-0.9,0.9-1.4c0.1-0.3,0.4-0.6,0.8-0.6c0.4,0,0.7,0.2,0.8,0.6c0.1,0.5,0.3,0.9,0.7,1.2
|
||||
c2.3,1.8,4.9,0.3,5.1-1.9c0-0.3,0.2-0.6,0.5-0.7c0.3-0.1,0.6,0,0.8,0.2c0.6,0.6,1.3,1,2.1,1c0,0,0,0,0,0c1,0,2-0.5,2.6-1.5
|
||||
c0.4-0.6,0.5-1.2,0.4-2c0-0.3,0.1-0.6,0.3-0.8c0.2-0.2,0.6-0.2,0.8,0c0.6,0.3,1.3,0.5,2,0.3c1.1-0.2,2-1.1,2.3-2.1
|
||||
c0.2-0.7,0.1-1.4-0.2-2.1c-0.1-0.3-0.1-0.6,0.1-0.8c0.2-0.2,0.5-0.3,0.8-0.3c0.7,0.1,1.3,0.1,1.9-0.2c0.9-0.4,1.5-1.2,1.7-2.2
|
||||
c0.2-1-0.1-1.9-0.8-2.6c-0.2-0.2-0.3-0.5-0.2-0.8c0.1-0.3,0.4-0.5,0.7-0.5c0.7,0,1.5-0.2,2-0.8c1.7-1.8,0.9-4.2-1-5
|
||||
c-0.3-0.1-0.5-0.4-0.5-0.8C60.3,38.8,60.6,38.5,60.9,38.5z"/>
|
||||
<path class="st1" d="M52.9,17.5c0.2,0.6,0.2,1.2,0,1.8c-0.1,0.3,0,0.6,0.2,0.8c0.2,0.2,0.5,0.3,0.8,0.2c0.4-0.2,0.8-0.2,1.2-0.2
|
||||
c0.9,0,1.7,0.4,2.3,1.2c0.4,0.5,0.7,1.2,0.6,1.9c0,0.6-0.2,1.1-0.5,1.6c-0.2,0.2-0.2,0.6,0,0.8c0.1,0.1,0.2,0.3,0.4,0.3
|
||||
c0.4-0.1,0.8-0.4,1.1-0.8c1.8-2.5,2.1-10.4,0.3-11c-1.8-0.6-4.9,0.6-7.1,2.4C52.6,16.7,52.8,17,52.9,17.5z"/>
|
||||
<path class="st1" d="M16.2,26c0.1-0.1,0.2-0.2,0.3-0.3c0.2-0.3,0.1-0.6,0-0.8c-0.5-0.7-0.6-1.5-0.5-2.3c0.2-1.1,1.1-2,2.2-2.3
|
||||
c0.6-0.2,1.2-0.1,1.8,0.1c0.3,0.1,0.6,0,0.8-0.2c0.2-0.2,0.3-0.5,0.2-0.8c-0.2-0.6-0.2-1.2,0-1.8c0.1-0.4,0.3-0.8,0.6-1.1
|
||||
c-2.2-1.8-5.5-3.1-7.3-2.5c-1.8,0.6-1.5,8.5,0.3,11C15,25.6,15.5,25.9,16.2,26z"/>
|
||||
<g>
|
||||
<circle class="st1" cx="24.9" cy="38.3" r="3.7"/>
|
||||
<path class="st1" d="M40.7,38.3c0,2.1-1.7,3.7-3.7,3.7c-2.1,0-3.7-1.7-3.7-3.7S40.7,36.2,40.7,38.3z"/>
|
||||
<circle class="st1" cx="49" cy="38.3" r="3.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
|
@ -1,173 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="contextual-menu.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.7812489"
|
||||
inkscape:cx="6.1078555"
|
||||
inkscape:cy="55.738071"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-8.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
<sodipodi:guide
|
||||
position="92,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4760" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;marker:none;enable-background:accumulate"
|
||||
d="m 416.99416,405.36222 -4.0016,0 0,-24 4.0016,0 z"
|
||||
id="path4182"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;marker:none;enable-background:accumulate"
|
||||
d="m 391.98426,405.36222 -4.00159,0 0,-24 4.00159,0 z"
|
||||
id="path4180"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;marker:none;enable-background:accumulate"
|
||||
d="m 366.97436,405.36222 -4.00158,0 0,-24 4.00158,0 z"
|
||||
id="rect4067"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.5 KiB |
|
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4874" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="96" viewBox="0 0 96 96.000001" width="96" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4879">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(67.857 -78.505)">
|
||||
<rect id="rect4782" style="color:#000000;fill:none" transform="rotate(90)" height="96" width="96" y="-28.143" x="78.505"/>
|
||||
<path id="path4643" style="color-rendering:auto;text-decoration-color:#000000;color:#000000;font-variant-numeric:normal;shape-rendering:auto;solid-color:#000000;text-decoration-line:none;fill:#808080;font-variant-position:normal;mix-blend-mode:normal;block-progression:tb;font-feature-settings:normal;shape-padding:0;font-variant-alternates:normal;text-indent:0;font-variant-caps:normal;image-rendering:auto;white-space:normal;text-decoration-style:solid;font-variant-ligatures:none;isolation:auto;text-transform:none" d="m-43.869 86.504-0.01172 0.002c-5.0328 0.05818-8.7136-0.12027-11.725 1.541-1.5055 0.83064-2.6968 2.2356-3.3555 3.9902-0.65866 1.7547-0.89648 3.8364-0.89648 6.4668v56.002c0 2.6304 0.23782 4.7121 0.89648 6.4668 0.65866 1.7546 1.85 3.1596 3.3555 3.9902 3.011 1.6613 6.6918 1.4848 11.725 1.543h0.01172 48.023 0.011719c5.0328-0.0582 8.7136 0.11832 11.725-1.543 1.5055-0.83064 2.6968-2.2356 3.3555-3.9902 0.65866-1.7547 0.89648-3.8364 0.89648-6.4668v-56.002c0-2.6304-0.23782-4.7121-0.89648-6.4668-0.66-1.759-1.851-3.163-3.356-3.994-3.011-1.661-6.6922-1.483-11.725-1.541l-0.011719-0.002h-48.023zm0.01172 4h48c5.0383 0.05877 8.3519 0.23688 9.8164 1.0449 0.73364 0.40478 1.1527 0.85491 1.543 1.8945 0.39025 1.0396 0.64062 2.691 0.64062 5.0605v56.002c0 2.3696-0.25037 4.0209-0.64062 5.0606-0.39025 1.0396-0.80933 1.4898-1.543 1.8945-1.4645 0.80804-4.7782 0.98616-9.8164 1.0449h-47.977-0.02344c-5.0383-0.0588-8.3519-0.23688-9.8164-1.0449-0.73364-0.40478-1.1508-0.85491-1.541-1.8945-0.39025-1.0396-0.64258-2.691-0.64258-5.0606v-56.002c0-2.3696 0.25232-4.0209 0.64258-5.0605 0.39025-1.0396 0.80738-1.4898 1.541-1.8945 1.4645-0.80804 4.7782-0.98616 9.8164-1.0449z"/>
|
||||
<path id="path4041-9" style="fill:#808080" d="m3.9651 110.9-27.18 23.805-15.662-13.434-2.8848 3.2617 18.541 19.508 29.266-30.795-2.0801-2.3457z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
|
|
@ -1,176 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="96"
|
||||
height="96"
|
||||
id="svg4874"
|
||||
version="1.1"
|
||||
inkscape:version="0.91+devel r"
|
||||
viewBox="0 0 96 96.000001"
|
||||
sodipodi:docname="find.svg">
|
||||
<defs
|
||||
id="defs4876" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.5967996"
|
||||
inkscape:cx="-36.35177"
|
||||
inkscape:cy="61.234959"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4780"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5451"
|
||||
empspacing="8" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="8,-8.0000001"
|
||||
id="guide4063" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="4,-8.0000001"
|
||||
id="guide4065" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,88.000001"
|
||||
id="guide4067" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,92.000001"
|
||||
id="guide4069" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="104,4"
|
||||
id="guide4071" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,8.0000001"
|
||||
id="guide4073" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="92,-8.0000001"
|
||||
id="guide4075" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="88,-8.0000001"
|
||||
id="guide4077" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-8,84.000001"
|
||||
id="guide4074" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="12,-8.0000001"
|
||||
id="guide4076" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="-5,12"
|
||||
id="guide4078" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="84,-9.0000001"
|
||||
id="guide4080" />
|
||||
<sodipodi:guide
|
||||
position="48,-8.0000001"
|
||||
orientation="1,0"
|
||||
id="guide4170" />
|
||||
<sodipodi:guide
|
||||
position="-8,48"
|
||||
orientation="0,1"
|
||||
id="guide4172" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4879">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(67.857146,-78.50504)">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,373.50506,516.50504)"
|
||||
id="g4845"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="next01.png"
|
||||
transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
|
||||
id="g4778"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,575.99999,611)"
|
||||
id="g4780"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:4;marker:none;enable-background:accumulate"
|
||||
id="rect4782"
|
||||
width="96.037987"
|
||||
height="96"
|
||||
x="-438.00244"
|
||||
y="345.36221"
|
||||
transform="scale(-1,1)" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 364.0904,368.96573 c -0.0215,-0.0161 -0.0354,-0.0404 -0.0567,-0.0566 -0.0253,-0.0201 -0.057,-0.0305 -0.0821,-0.0508 z"
|
||||
id="path4157" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="m 364.07673,417.80167 -0.13873,0.10742 c 0.0251,-0.0203 0.0569,-0.0307 0.0821,-0.0508 0.0214,-0.0162 0.0353,-0.0405 0.0567,-0.0566 z"
|
||||
id="path4344" />
|
||||
<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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.00079107;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 432,400.36133 c 0,19.30739 -15.69992,35 -35.01367,35 -19.31376,0 -35.01367,-15.69261 -35.01367,-35 0,-19.30739 15.69991,-35.00195 35.01367,-35.00195 19.31375,0 35.01367,15.69456 35.01367,35.00195 z m -4,0 c 0,-17.14435 -13.86125,-31.00196 -31.01367,-31.00195 -17.15243,0 -31.01367,13.8576 -31.01367,31.00195 0,17.14434 13.86124,31 31.01367,31 17.15242,0 31.01367,-13.85566 31.01367,-31 z"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<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;font-variant-ligatures:none;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: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;shape-padding:0;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:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.00118685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 353.08984,352.24023 -4.24218,4.24415 22.67187,22.66406 4.24219,-4.24414 -22.67188,-22.66407 z"
|
||||
id="path4229"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 110 KiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 242 KiB |
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 240 KiB |
|
Before Width: | Height: | Size: 276 KiB |
|
Before Width: | Height: | Size: 240 KiB |
|
Before Width: | Height: | Size: 387 KiB |
|
Before Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 1 MiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 1 MiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 446 KiB |
|
Before Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 247 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 235 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 28 KiB |
4
docs/_site/assets/js/jquery-3.2.1.min.js
vendored
|
|
@ -1,59 +0,0 @@
|
|||
/* Set header-click-event */
|
||||
window.onload = function(e){
|
||||
|
||||
$("#header_toggle_mobile").click(function () {
|
||||
$("#header_main_nav").slideToggle();
|
||||
});
|
||||
|
||||
$("#content, #header_main_nav a").click(function () {
|
||||
$("#header_main_nav").slideUp();
|
||||
});
|
||||
|
||||
$('a[href^="#"]').on('click',function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
var target = this.hash;
|
||||
var $target = $(target);
|
||||
|
||||
$('html, body').stop().animate({
|
||||
'scrollTop': $target.offset().top
|
||||
}, 900, 'swing', function () {
|
||||
window.location.hash = target;
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function switchToCorrectLanguage () {
|
||||
|
||||
/* Switch to correct language */
|
||||
var uri = document.documentURI
|
||||
if ( uri.endsWith ( "/" ) ) uri = uri.substr(0,uri.length-1)
|
||||
var splittedUrl = uri.split("/");
|
||||
|
||||
// Detect the current language
|
||||
var currentLanguage = splittedUrl[splittedUrl.length-1];
|
||||
if ( window.location.href.endsWith (".html") ) {
|
||||
currentLanguage = splittedUrl[splittedUrl.length-2];
|
||||
}
|
||||
|
||||
// If there is already a language selected then stop here
|
||||
if ( languages.indexOf( currentLanguage ) !== -1 ) return;
|
||||
|
||||
// Get the preferred language
|
||||
var preferredLanguageIndex = languages.indexOf(navigator.language.substr(0,2))
|
||||
|
||||
if ( preferredLanguageIndex !== -1 ) {
|
||||
var preferredLanguage = languages [ preferredLanguageIndex ]
|
||||
if ( window.location.href.endsWith (".html") ) {
|
||||
splittedUrl[splittedUrl.length] = splittedUrl[splittedUrl.length-1];
|
||||
splittedUrl[splittedUrl.length-2] = preferredLanguage;
|
||||
window.location.href = splittedUrl.join("/")
|
||||
}
|
||||
else window.location.href += preferredLanguage;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
switchToCorrectLanguage ()
|
||||
|
|
@ -1,154 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - F-Droid Paketquelle</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Gemeinschaft</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<h1 id="f-droid-repository">F-Droid Repository</h1>
|
||||
|
||||
<h2 id="paketquelle-zu-f-droid-hinzufügen">Paketquelle zu F-Droid hinzufügen</h2>
|
||||
|
||||
<p>Der einfachste Weg die Paketquelle in F-Droid hinzuzufügen ist den QR-Code zu scannen oder direkt auf dem Handy anzuklickken.</p>
|
||||
|
||||
<a href="fdroidrepos://fdroid.nordgedanken.dev/?fingerprint=8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB" >
|
||||
<img src="/assets/images/qr-code.svg" width="300" height="300"/>
|
||||
</a>
|
||||
|
||||
<h3 id="wenn-der-qr-code-nicht-funktioniert">Wenn der QR-Code nicht funktioniert:</h3>
|
||||
|
||||
<p>Zuerst prüf ob du die F-Droid App installiert hast. Sollte dies nicht der Fall sein kannst du die App auf <a href="https://f-droid.org/">https://f-droid.org/</a> runterladen.
|
||||
Nachdem du sichergegangen bist, dass die App installiert ist und F-Droid nicht zuvor installiert war prüf ob der QR-Code nun funktioniert.
|
||||
Falls es weitherhin nicht funktioniert folge den nächsten Schritten:</p>
|
||||
|
||||
<ol>
|
||||
<li>Öffne die F-Droid App</li>
|
||||
<li>Gehe zum <code class="language-plaintext highlighter-rouge">Optionen</code> Tab in der unteren Leiste</li>
|
||||
<li>Klicke auf <code class="language-plaintext highlighter-rouge">Paketquellen</code></li>
|
||||
<li>Drücke auf das Plus Symbol in der oberen Leiste</li>
|
||||
<li>Trag in das erste Feld <code class="language-plaintext highlighter-rouge">https://fdroid.nordgedanken.dev</code> und in das zweite Feld <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code> ein</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="wie-lautet-der-fingerabdruck">Wie lautet der Fingerabdruck?</h2>
|
||||
|
||||
<p>Der Fingerabdruck dieser Paketquelle ist: <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Hilfe bei der Übersetzung</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Entwickelt von Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Datenschutzvereinbarung</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Mitwirkende</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Danksagung</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Official Website</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Gemeinschaft</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<img src="/assets/images/banner.png" id="banner" />
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="one-half column paddingColumn" id="titleColumn">
|
||||
<h3>Frei. Unkommerziell. Knuffig ♥</h3>
|
||||
<b>Android:</b><br />
|
||||
<a href="https://play.google.com/store/apps/details?id=chat.fluffy.fluffychat" target="new"><img
|
||||
alt="Get it from PlayStore" style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/google-play-badge.png" /></a>
|
||||
<a href="/de/fdroid.html"><img alt="Get it from F-Droid" style="height: 50px;"
|
||||
class="animated bounceIn" src="/assets/images/fdroid_button.png" /></a><br />
|
||||
<b>iPhone:</b><br />
|
||||
<a href="https://testflight.apple.com/join/hL6Tyyaj" target="new"><img alt="Get it from the AppStore"
|
||||
style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/appstore-badge.png" /></a><br />
|
||||
<b>Ubuntu Touch:</b><br />
|
||||
<a href="https://open-store.io/app/fluffychat.christianpauly" target="new"><img
|
||||
style="height: 50px;width: auto;" class="buttonImage animated bounceIn"
|
||||
src="/assets/images/downloadButton.jpg" /></a><br />
|
||||
<b>Linux:</b><br />
|
||||
<a href="https://flathub.org/apps/details/im.fluffychat.Fluffychat" target="new"><img alt="Get it from FlatHub"
|
||||
style="height: 50px;" src="https://flathub.org/assets/badges/flathub-badge-en.png" /></a>
|
||||
<a href="https://snapcraft.io/fluffychat" target="new"><img alt="Get it from the Snap Store"
|
||||
style="height: 50px;"
|
||||
src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" /></a><br />
|
||||
<b>Browser:</b><br />
|
||||
<a href="https://web.fluffychat.im" id="browserbutton" target="new"><img alt="Open in "
|
||||
style="height: 42px; padding: 5px;" class="animated bounceIn"
|
||||
src="/assets/images/browser.png" />
|
||||
<p>Open in the browser</p>
|
||||
</a><br />
|
||||
</div>
|
||||
<div class="one-half column gridItem">
|
||||
<img id="screenshot" src="/assets/images/product-mini.png"
|
||||
class="article_image animated bounceInRight" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/open.svg" class="article_image" />
|
||||
<p><b>Offen</b><br>
|
||||
Quelloffene und transparente Entwicklung, bei der jeder mitmachen kann.</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/nonprofit.svg" class="article_image" />
|
||||
<p>
|
||||
<b>Unkommerziell</b><br>
|
||||
FluffyChat wurde für den Spaß entwickelt und nicht für den Profit.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/cute.svg" class="article_image" />
|
||||
<p><b>Knuffig ♥</b><br>
|
||||
Knuffiges Design und viele Personalisierungsmöglichkeiten, inklusive einem Nachtmodus.
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/chats.svg" class="article_image" />
|
||||
<p><b>Private- und Gruppenchats</b><br>
|
||||
Unbegrenzt viele Gruppen und private Chats.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/easy.svg" class="article_image" />
|
||||
<p><b>Einfach</b><br>
|
||||
FluffyChat wurde gemacht, um so einfach wie möglich zu sein.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/free.svg" class="article_image" />
|
||||
<p><b>Frei</b><br>
|
||||
Frei für alle ohne Werbung.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/connective.svg" class="article_image" />
|
||||
<p><b>Verbindend</b><br>
|
||||
Lade deine Freunde zu FluffyChat ein.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/decentralized.svg" class="article_image" />
|
||||
<p><b>Dezentral</b><br>
|
||||
Es gibt keinen "FluffyChat server" den du zwingend benutzen musst. Benutze den Server, dem du am meisten vertraust oder hoste deinen eigenen.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/compatible.svg" class="article_image" />
|
||||
<p><b>Kompatibel.</b><br>
|
||||
Kompatibel mit <a href="https://matrix.org/docs/projects/client/element-android.html" target="new">Element</a>, <a href="https://matrix.org/docs/projects/client/fractal.html" target="new">Fractal</a>, <a href="https://matrix.org/docs/projects/client/nheko.html" target="new">Nheko</a> und allen <a href="https://matrix.org/docs/projects/try-matrix-now.html" target="new">Matrix</a> Messengern.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column">
|
||||
<img class="article_image" src="/assets/images/if_50-_couple-lesbian-love-head-to-head-1_3011618.png" />
|
||||
</div>
|
||||
<div class="two-thirds column paddingColumn">
|
||||
<h3>FluffyChat kommt mit einem Traum</h3>
|
||||
<p>Stelle dir eine Welt vor, in dem man den Messenger benutzen kann, den man am meisten mag und trotzdem mit seinen Freunden schreiben kann. Eine Welt, wo es keine Firmen gibt, die dich ausspionieren wenn du Selfies zu deinen Freunden und Liebsten schickst. Und eine Welt in der Apps für Fluffyness entwickelt werden und nicht für Profit. ♥
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Hilfe bei der Übersetzung</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Entwickelt von Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Datenschutzvereinbarung</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Mitwirkende</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Danksagung</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,128 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Changelog</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<html><body>You are being <a href="https://gitlab.com/famedly/fluffychat/-/raw/main/CHANGELOG.md">redirected</a>.</body></html>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,154 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - F-Droid Repository</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<h1 id="f-droid-repository">F-Droid Repository</h1>
|
||||
|
||||
<h2 id="add-repository-to-f-droid">Add Repository to F-Droid</h2>
|
||||
|
||||
<p>Easiest way to add the Repository is to either scan the QR-Code or if you are on your phone directly click it.</p>
|
||||
|
||||
<a href="fdroidrepos://fdroid.nordgedanken.dev/?fingerprint=8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB" >
|
||||
<img src="/assets/images/qr-code.svg" width="300" height="300"/>
|
||||
</a>
|
||||
|
||||
<h3 id="if-the-qr-code-doesnt-work">If the QR-Code doesn’t work:</h3>
|
||||
|
||||
<p>First check if you have f-droid installed. If not you can get it from: <a href="https://f-droid.org/">https://f-droid.org/</a>.
|
||||
After you made sure you installed it and you didn’t have it installed before you can try again the QR-Code.
|
||||
If this still isn’t working follow the next steps:</p>
|
||||
|
||||
<ol>
|
||||
<li>Open the f-droid App</li>
|
||||
<li>Go to the <code class="language-plaintext highlighter-rouge">Settings</code> Tab in the Bottom bar</li>
|
||||
<li>Click the <code class="language-plaintext highlighter-rouge">Repositories</code> Action</li>
|
||||
<li>Click on the plus sign at the top.</li>
|
||||
<li>Fill in <code class="language-plaintext highlighter-rouge">https://fdroid.nordgedanken.dev</code> into the top field and <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code> in the bottom field.</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="what-is-the-fingerprint">What is the fingerprint?</h2>
|
||||
|
||||
<p>The fingerprint of the Repository is: <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Official Website</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<img src="/assets/images/banner.png" id="banner" />
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="one-half column paddingColumn" id="titleColumn">
|
||||
<h3>Open. Nonprofit. Cute ♥</h3>
|
||||
<b>Android:</b><br />
|
||||
<a href="https://play.google.com/store/apps/details?id=chat.fluffy.fluffychat" target="new"><img
|
||||
alt="Get it from PlayStore" style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/google-play-badge.png" /></a>
|
||||
<a href="/en/fdroid.html"><img alt="Get it from F-Droid" style="height: 50px;"
|
||||
class="animated bounceIn" src="/assets/images/fdroid_button.png" /></a><br />
|
||||
<b>iPhone:</b><br />
|
||||
<a href="https://testflight.apple.com/join/hL6Tyyaj" target="new"><img alt="Get it from the AppStore"
|
||||
style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/appstore-badge.png" /></a><br />
|
||||
<b>Ubuntu Touch:</b><br />
|
||||
<a href="https://open-store.io/app/fluffychat.christianpauly" target="new"><img
|
||||
style="height: 50px;width: auto;" class="buttonImage animated bounceIn"
|
||||
src="/assets/images/downloadButton.jpg" /></a><br />
|
||||
<b>Linux:</b><br />
|
||||
<a href="https://flathub.org/apps/details/im.fluffychat.Fluffychat" target="new"><img alt="Get it from FlatHub"
|
||||
style="height: 50px;" src="https://flathub.org/assets/badges/flathub-badge-en.png" /></a>
|
||||
<a href="https://snapcraft.io/fluffychat" target="new"><img alt="Get it from the Snap Store"
|
||||
style="height: 50px;"
|
||||
src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" /></a><br />
|
||||
<b>Browser:</b><br />
|
||||
<a href="https://web.fluffychat.im" id="browserbutton" target="new"><img alt="Open in "
|
||||
style="height: 42px; padding: 5px;" class="animated bounceIn"
|
||||
src="/assets/images/browser.png" />
|
||||
<p>Open in the browser</p>
|
||||
</a><br />
|
||||
</div>
|
||||
<div class="one-half column gridItem">
|
||||
<img id="screenshot" src="/assets/images/product-mini.png"
|
||||
class="article_image animated bounceInRight" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/open.svg" class="article_image" />
|
||||
<p><b>Open</b><br>
|
||||
Opensource and open development where everyone can join.</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/nonprofit.svg" class="article_image" />
|
||||
<p>
|
||||
<b>Nonprofit</b><br>
|
||||
FluffyChat is made for fun and not for profit.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/cute.svg" class="article_image" />
|
||||
<p><b>Cute ♥</b><br>
|
||||
Cute design and many theme settings including a dark mode.
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/chats.svg" class="article_image" />
|
||||
<p><b>One-to-one and groupchats</b><br>
|
||||
Unlimited groups and direct chats.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/easy.svg" class="article_image" />
|
||||
<p><b>Easy</b><br>
|
||||
FluffyChat is made as simple to use as possible.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/free.svg" class="article_image" />
|
||||
<p><b>Free</b><br>
|
||||
Free to use for everyone without ads.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/connective.svg" class="article_image" />
|
||||
<p><b>Connective</b><br>
|
||||
Invite your friends to FluffyChat.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/decentralized.svg" class="article_image" />
|
||||
<p><b>Decentralized</b><br>
|
||||
There is no "FluffyChat server" you are forced to use. Use the server you find trustworthy or host your own.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/compatible.svg" class="article_image" />
|
||||
<p><b>Compatible</b><br>
|
||||
Compatible with <a href="https://matrix.org/docs/projects/client/element-android.html" target="new">Element</a>, <a href="https://matrix.org/docs/projects/client/fractal.html" target="new">Fractal</a>, <a href="https://matrix.org/docs/projects/client/nheko.html" target="new">Nheko</a> and all <a href="https://matrix.org/docs/projects/try-matrix-now.html" target="new">matrix</a> messengers.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column">
|
||||
<img class="article_image" src="/assets/images/if_50-_couple-lesbian-love-head-to-head-1_3011618.png" />
|
||||
</div>
|
||||
<div class="two-thirds column paddingColumn">
|
||||
<h3>FluffyChat comes with a dream</h3>
|
||||
<p>Imagine a world where everyone can choose the messenger they like and is still able to chat with all of their friends.<br> A world where there are no companies spying on you when you send selfies to friends and lovers.<br> And a world where apps are made for fluffyness and not for profit. ♥
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,128 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Privacy</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<html><body>You are being <a href="https://gitlab.com/famedly/fluffychat/-/raw/main/PRIVACY.md">redirected</a>.</body></html>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,154 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - F-Droid Repository</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<h1 id="f-droid-repository">F-Droid Repository</h1>
|
||||
|
||||
<h2 id="add-repository-to-f-droid">Add Repository to F-Droid</h2>
|
||||
|
||||
<p>Easiest way to add the Repository is to either scan the QR-Code or if you are on your phone directly click it.</p>
|
||||
|
||||
<a href="fdroidrepos://fdroid.nordgedanken.dev/?fingerprint=8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB" >
|
||||
<img src="/assets/images/qr-code.svg" width="300" height="300"/>
|
||||
</a>
|
||||
|
||||
<h3 id="if-the-qr-code-doesnt-work">If the QR-Code doesn’t work:</h3>
|
||||
|
||||
<p>First check if you have f-droid installed. If not you can get it from: <a href="https://f-droid.org/">https://f-droid.org/</a>.
|
||||
After you made sure you installed it and you didn’t have it installed before you can try again the QR-Code.
|
||||
If this still isn’t working follow the next steps:</p>
|
||||
|
||||
<ol>
|
||||
<li>Open the f-droid App</li>
|
||||
<li>Go to the <code class="language-plaintext highlighter-rouge">Settings</code> Tab in the Bottom bar</li>
|
||||
<li>Click the <code class="language-plaintext highlighter-rouge">Repositories</code> Action</li>
|
||||
<li>Click on the plus sign at the top.</li>
|
||||
<li>Fill in <code class="language-plaintext highlighter-rouge">https://fdroid.nordgedanken.dev</code> into the top field and <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code> in the bottom field.</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="what-is-the-fingerprint">What is the fingerprint?</h2>
|
||||
|
||||
<p>The fingerprint of the Repository is: <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Official Website</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">Preguntas frecuentes</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Comunidad</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<img src="/assets/images/banner.png" id="banner" />
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="one-half column paddingColumn" id="titleColumn">
|
||||
<h3>Abierto. Sin ánimo de lucro. Adorable ♥</h3>
|
||||
<b>Android:</b><br />
|
||||
<a href="https://play.google.com/store/apps/details?id=chat.fluffy.fluffychat" target="new"><img
|
||||
alt="Get it from PlayStore" style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/google-play-badge.png" /></a>
|
||||
<a href="/es/fdroid.html"><img alt="Get it from F-Droid" style="height: 50px;"
|
||||
class="animated bounceIn" src="/assets/images/fdroid_button.png" /></a><br />
|
||||
<b>iPhone:</b><br />
|
||||
<a href="https://testflight.apple.com/join/hL6Tyyaj" target="new"><img alt="Get it from the AppStore"
|
||||
style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/appstore-badge.png" /></a><br />
|
||||
<b>Ubuntu Touch:</b><br />
|
||||
<a href="https://open-store.io/app/fluffychat.christianpauly" target="new"><img
|
||||
style="height: 50px;width: auto;" class="buttonImage animated bounceIn"
|
||||
src="/assets/images/downloadButton.jpg" /></a><br />
|
||||
<b>Linux:</b><br />
|
||||
<a href="https://flathub.org/apps/details/im.fluffychat.Fluffychat" target="new"><img alt="Get it from FlatHub"
|
||||
style="height: 50px;" src="https://flathub.org/assets/badges/flathub-badge-en.png" /></a>
|
||||
<a href="https://snapcraft.io/fluffychat" target="new"><img alt="Get it from the Snap Store"
|
||||
style="height: 50px;"
|
||||
src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" /></a><br />
|
||||
<b>Browser:</b><br />
|
||||
<a href="https://web.fluffychat.im" id="browserbutton" target="new"><img alt="Open in "
|
||||
style="height: 42px; padding: 5px;" class="animated bounceIn"
|
||||
src="/assets/images/browser.png" />
|
||||
<p>Open in the browser</p>
|
||||
</a><br />
|
||||
</div>
|
||||
<div class="one-half column gridItem">
|
||||
<img id="screenshot" src="/assets/images/product-mini.png"
|
||||
class="article_image animated bounceInRight" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/open.svg" class="article_image" />
|
||||
<p><b>Abierto</b><br>
|
||||
Código y desarrollo abierto al que todo el mundo puede unirse.</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/nonprofit.svg" class="article_image" />
|
||||
<p>
|
||||
<b>Sin ánimo de lucro</b><br>
|
||||
FluffyChat is made for fun and not for profit.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/cute.svg" class="article_image" />
|
||||
<p><b>Adorable ♥</b><br>
|
||||
Diseño adorable y muchas opciones de configuración de temas, incluyendo un modo oscuro.
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/chats.svg" class="article_image" />
|
||||
<p><b>Uno-a-uno y en grupo</b><br>
|
||||
Grupos ilimitados y chats directos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/easy.svg" class="article_image" />
|
||||
<p><b>Fácil</b><br>
|
||||
FluffyChat está pensado para ser lo más sencillo de usar posible.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/free.svg" class="article_image" />
|
||||
<p><b>Libre</b><br>
|
||||
Libre para todo el mundo y sin anuncios.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/connective.svg" class="article_image" />
|
||||
<p><b>Conectivo</b><br>
|
||||
Invite your friends to FluffyChat.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/decentralized.svg" class="article_image" />
|
||||
<p><b>Descentralizado</b><br>
|
||||
No hay un «servidor de FluffyChat» que usar obligatoriamente. Use uno externo que sea de su confianza o aloje uno propio.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/compatible.svg" class="article_image" />
|
||||
<p><b>Compatible</b><br>
|
||||
Compatible con <a href="https://matrix.org/docs/projects/client/riot-android.html" target="new">Riot</a>, <a href="https://matrix.org/docs/projects/client/fractal.html" target="new">Fractal</a>, <a href="https://matrix.org/docs/projects/client/nheko.html" target="new">Nheko</a> y todos los servicios de mensajería de <a href="https://matrix.org/docs/projects/try-matrix-now.html" target="new">matrix</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column">
|
||||
<img class="article_image" src="/assets/images/if_50-_couple-lesbian-love-head-to-head-1_3011618.png" />
|
||||
</div>
|
||||
<div class="two-thirds column paddingColumn">
|
||||
<h3>FluffyChat viene con un sueño</h3>
|
||||
<p>Imagine un mundo donde todos puedan elegir el servicio de mensajería que deseen y, aún así, poder conversar con todos los amigos.<br> Un mundo donde no hay empresas que le espian cuando envía fotos suyas a amigos o amantes.<br> Y un mundo donde las aplicaciones se hacen por «esponjosidad» y no por lucro. ♥
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">Licencia pública general de GNU («GPL»)</a> -
|
||||
<a href="/en/changelog.md" target="new">Registro de cambios</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Ayudar con la traducción</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Creado por Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Política de privacidad</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Colaboradores</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Agradecimiento especial a</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>FluffyChat Official Website</title>
|
||||
<description>Official Website of FluffyChat</description>
|
||||
<link>https://fluffychat.im//</link>
|
||||
<atom:link href="https://fluffychat.im//feed.xml" rel="self" type="application/rss+xml"/>
|
||||
<pubDate>Thu, 24 Dec 2020 11:10:15 +0100</pubDate>
|
||||
<lastBuildDate>Thu, 24 Dec 2020 11:10:15 +0100</lastBuildDate>
|
||||
<generator>Jekyll v4.2.0</generator>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -1,160 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("hr");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat – F-Droid repozitorij</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">ČPP</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Zajednica</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<h1 id="f-droid-repository">F-Droid repozitorij</h1>
|
||||
|
||||
<h2 id="add-repository-to-f-droid">Dodaj repozitorij u F-Droid</h2>
|
||||
|
||||
<p>Najjednostavniji način za dodavanje repozitorija: snimi QR kod ili ga dodirni izravno na mobitelu.</p>
|
||||
|
||||
<a href="fdroidrepos://fdroid.nordgedanken.dev/?fingerprint=8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB" >
|
||||
<img src="/assets/images/qr-code.svg" width="300" height="300"/>
|
||||
</a>
|
||||
|
||||
<h3 id="if-the-qr-code-doesnt-work">Ako QR kod ne radi:</h3>
|
||||
|
||||
<p>Provjeri je li f-droid instaliran. Ako nije, preuzmi ga s: <a href="https://f-droid.org/">https://f-droid.org/</a>.
|
||||
Nakon instaliranja (ako prethodno nije bio instaliran) ponovo pokušaj snimiti QR kod.
|
||||
Ako i dalje ne radi, slijedi sljedeće korake:</p>
|
||||
|
||||
<ol>
|
||||
<li>Otvori program f-droid</li>
|
||||
<li>Idi na karticu <code class="language-plaintext highlighter-rouge">Postavke</code> u donjoj traci</li>
|
||||
<li>Pritisni <code class="language-plaintext highlighter-rouge">Repozitoriji</code></li>
|
||||
<li>Pritisni znak plus.</li>
|
||||
<li>Upiši <code class="language-plaintext highlighter-rouge">https://fdroid.nordgedanken.dev</code> u gornje polje i <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code> u donje polje.</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="what-is-the-fingerprint">Kako glasi digitalni otisak?</h2>
|
||||
|
||||
<p>Digitalni otisak repozitorija je: <code class="language-plaintext highlighter-rouge">8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB</code></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Doniraj putem Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Dostupni jezici: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/hr">hr</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU opća javna licenca</a> -
|
||||
<a href="/en/changelog.md" target="new">Dnevnik promjena</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Pomogni prevesti</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Autor: Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Politika privatnosti</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Doprinositelji</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Zahvale</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,243 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("hr");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat – Javna web-stranica</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">ČPP</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Zajednica</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<img src="/assets/images/banner.png" id="banner" />
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="one-half column paddingColumn" id="titleColumn">
|
||||
<h3>Otvoren. Nekomercijalan. Simpatičan ♥</h3>
|
||||
<b>Android:</b><br />
|
||||
<a href="https://play.google.com/store/apps/details?id=chat.fluffy.fluffychat" target="new"><img
|
||||
alt="Get it from PlayStore" style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/google-play-badge.png" /></a>
|
||||
<a href="/en/fdroid.html"><img alt="Get it from F-Droid" style="height: 50px;"
|
||||
class="animated bounceIn" src="/assets/images/fdroid_button.png" /></a><br />
|
||||
<b>iPhone:</b><br />
|
||||
<a href="https://testflight.apple.com/join/hL6Tyyaj" target="new"><img alt="Get it from the AppStore"
|
||||
style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/appstore-badge.png" /></a><br />
|
||||
<b>Ubuntu Touch:</b><br />
|
||||
<a href="https://open-store.io/app/fluffychat.christianpauly" target="new"><img
|
||||
style="height: 50px;width: auto;" class="buttonImage animated bounceIn"
|
||||
src="/assets/images/downloadButton.jpg" /></a><br />
|
||||
<b>Linux:</b><br />
|
||||
<a href="https://flathub.org/apps/details/im.fluffychat.Fluffychat" target="new"><img alt="Get it from FlatHub"
|
||||
style="height: 50px;" src="https://flathub.org/assets/badges/flathub-badge-en.png" /></a>
|
||||
<a href="https://snapcraft.io/fluffychat" target="new"><img alt="Get it from the Snap Store"
|
||||
style="height: 50px;"
|
||||
src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" /></a><br />
|
||||
<b>Preglednik:</b><br />
|
||||
<a href="https://web.fluffychat.im" id="browserbutton" target="new"><img alt="Open in "
|
||||
style="height: 42px; padding: 5px;" class="animated bounceIn"
|
||||
src="/assets/images/browser.png" />
|
||||
<p>Otvori u pregledniku</p>
|
||||
</a><br />
|
||||
</div>
|
||||
<div class="one-half column gridItem">
|
||||
<img id="screenshot" src="/assets/images/product-mini.png"
|
||||
class="article_image animated bounceInRight" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/open.svg" class="article_image" />
|
||||
<p><b>Otvoren</b><br>
|
||||
Program otvorenog koda. Svatko može doprinijeti razvoju programa.</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/nonprofit.svg" class="article_image" />
|
||||
<p>
|
||||
<b>Nekomercijalan</b><br>
|
||||
FluffyChat je stvoren za zabavu, ne za zaradu.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/cute.svg" class="article_image" />
|
||||
<p><b>Simpatičan ♥</b><br>
|
||||
Simpatičan dizajn s raznim postavkama tema, uključujući tamnu temu.
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/chats.svg" class="article_image" />
|
||||
<p><b>Privatni i grupni razgovori</b><br>
|
||||
Neograničen broj grupa i privatni razgovori.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/easy.svg" class="article_image" />
|
||||
<p><b>Jednostavan</b><br>
|
||||
FluffyChat pruža maksimalno pojednostavljeno sučelje.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/free.svg" class="article_image" />
|
||||
<p><b>Slobodan</b><br>
|
||||
Svatko ga smije koristiti i ne sadrži oglase.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/connective.svg" class="article_image" />
|
||||
<p><b>Poveziv</b><br>
|
||||
Pozovi prijatelje u FluffyChat.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/decentralized.svg" class="article_image" />
|
||||
<p><b>Decentraliziran</b><br>
|
||||
Ne postoji jedan „FluffyChat poslužitelj” koji se mora koristiti. Koristi poslužitelj kojem vjeruješ ili vlastiti poslužitelj.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/compatible.svg" class="article_image" />
|
||||
<p><b>Kompatibilan</b><br>
|
||||
Kompatibilan s <a href="https://matrix.org/docs/projects/client/element-android.html" target="new">Element</a>, <a href="https://matrix.org/docs/projects/client/fractal.html" target="new">Fractal</a>, <a href="https://matrix.org/docs/projects/client/nheko.html" target="new">Nheko</a> i svim <a href="https://matrix.org/docs/projects/try-matrix-now.html" target="new">matrix</a> programima za slanje poruka.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column">
|
||||
<img class="article_image" src="/assets/images/if_50-_couple-lesbian-love-head-to-head-1_3011618.png" />
|
||||
</div>
|
||||
<div class="two-thirds column paddingColumn">
|
||||
<h3>Osnovna ideja FluffyChata</h3>
|
||||
<p>Zamisli svijet u kojem svatko može odabrati program za slanje poruka prijateljima koji mu se najviše sviđa.<br>Svijet u kojem nema tvrtki koje prate fotke koje šalješ prijateljima i ljubavnicima.<br>Svijet u kojem se programi stvaraju za zabavu, a ne za zaradu. ♥
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Dostupni jezici: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/hr">hr</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU opća javna licenca</a> -
|
||||
<a href="/en/changelog.md" target="new">Dnevnik promjena</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Pomogni prevesti</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Autor: Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Politika privatnosti</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Doprinositelji</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Zahvale</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
var languages = new Array();
|
||||
|
||||
languages.push("en");
|
||||
|
||||
languages.push("de");
|
||||
|
||||
languages.push("es");
|
||||
|
||||
languages.push("nl");
|
||||
|
||||
languages.push("ru");
|
||||
|
||||
</script>
|
||||
<!-- Basic Page Needs
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>FluffyChat - Official Website</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- FONT
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link href="/assets/css/font.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="/assets/css/normalize.css">
|
||||
<link rel="stylesheet" href="/assets/css/skeleton.css">
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/custom.css">
|
||||
|
||||
<!-- JS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<script src="/assets/js/nav.js"></script>
|
||||
<script src="/assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="headerContainer">
|
||||
<div class="header">
|
||||
<div class="left_side">
|
||||
<a class="header_button" href="index.html"><img src="/assets/images/favicon.png"></a>
|
||||
</div>
|
||||
<div class="right_side">
|
||||
<nav id="header_main_nav">
|
||||
<a href="https://gitlab.com/famedly/fluffychat/issues" target="new">FAQ</a>
|
||||
<a href="https://matrix.to/#/%23fluffychat:matrix.org" target="new" >Community</a>
|
||||
<a href="https://gitlab.com/famedly/fluffychat" target="new" >GitLab</a>
|
||||
<a href="https://liberapay.com/KrilleChritzelius/" target="new" >Liberapay</a>
|
||||
<a class="header_button" rel="me" href="https://metalhead.club/@krille" target="new"><img src="/assets/images/mastodon.png"></a>
|
||||
</nav>
|
||||
<a id="header_toggle_mobile" class="header_button"><img src="/assets/images/menu.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<img src="/assets/images/banner.png" id="banner" />
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="one-half column paddingColumn" id="titleColumn">
|
||||
<h3>Open. Nonprofit. Cute ♥</h3>
|
||||
<b>Android:</b><br />
|
||||
<a href="https://play.google.com/store/apps/details?id=chat.fluffy.fluffychat" target="new"><img
|
||||
alt="Get it from PlayStore" style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/google-play-badge.png" /></a>
|
||||
<a href="/en/fdroid.html"><img alt="Get it from F-Droid" style="height: 50px;"
|
||||
class="animated bounceIn" src="/assets/images/fdroid_button.png" /></a><br />
|
||||
<b>iPhone:</b><br />
|
||||
<a href="https://testflight.apple.com/join/hL6Tyyaj" target="new"><img alt="Get it from the AppStore"
|
||||
style="height: 50px;" class="animated bounceIn"
|
||||
src="/assets/images/appstore-badge.png" /></a><br />
|
||||
<b>Ubuntu Touch:</b><br />
|
||||
<a href="https://open-store.io/app/fluffychat.christianpauly" target="new"><img
|
||||
style="height: 50px;width: auto;" class="buttonImage animated bounceIn"
|
||||
src="/assets/images/downloadButton.jpg" /></a><br />
|
||||
<b>Linux:</b><br />
|
||||
<a href="https://flathub.org/apps/details/im.fluffychat.Fluffychat" target="new"><img alt="Get it from FlatHub"
|
||||
style="height: 50px;" src="https://flathub.org/assets/badges/flathub-badge-en.png" /></a>
|
||||
<a href="https://snapcraft.io/fluffychat" target="new"><img alt="Get it from the Snap Store"
|
||||
style="height: 50px;"
|
||||
src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" /></a><br />
|
||||
<b>Browser:</b><br />
|
||||
<a href="https://web.fluffychat.im" id="browserbutton" target="new"><img alt="Open in "
|
||||
style="height: 42px; padding: 5px;" class="animated bounceIn"
|
||||
src="/assets/images/browser.png" />
|
||||
<p>Open in the browser</p>
|
||||
</a><br />
|
||||
</div>
|
||||
<div class="one-half column gridItem">
|
||||
<img id="screenshot" src="/assets/images/product-mini.png"
|
||||
class="article_image animated bounceInRight" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/open.svg" class="article_image" />
|
||||
<p><b>Open</b><br>
|
||||
Opensource and open development where everyone can join.</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/nonprofit.svg" class="article_image" />
|
||||
<p>
|
||||
<b>Nonprofit</b><br>
|
||||
FluffyChat is made for fun and not for profit.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/cute.svg" class="article_image" />
|
||||
<p><b>Cute ♥</b><br>
|
||||
Cute design and many theme settings including a dark mode.
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/chats.svg" class="article_image" />
|
||||
<p><b>One-to-one and groupchats</b><br>
|
||||
Unlimited groups and direct chats.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/easy.svg" class="article_image" />
|
||||
<p><b>Easy</b><br>
|
||||
FluffyChat is made as simple to use as possible.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/free.svg" class="article_image" />
|
||||
<p><b>Free</b><br>
|
||||
Free to use for everyone without ads.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/connective.svg" class="article_image" />
|
||||
<p><b>Connective</b><br>
|
||||
Invite your friends to FluffyChat.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/decentralized.svg" class="article_image" />
|
||||
<p><b>Decentralized</b><br>
|
||||
There is no "FluffyChat server" you are forced to use. Use the server you find trustworthy or host your own.
|
||||
</p>
|
||||
</div>
|
||||
<div class="one-third column gridItem">
|
||||
<img src="/assets/images/compatible.svg" class="article_image" />
|
||||
<p><b>Compatible</b><br>
|
||||
Compatible with <a href="https://matrix.org/docs/projects/client/element-android.html" target="new">Element</a>, <a href="https://matrix.org/docs/projects/client/fractal.html" target="new">Fractal</a>, <a href="https://matrix.org/docs/projects/client/nheko.html" target="new">Nheko</a> and all <a href="https://matrix.org/docs/projects/try-matrix-now.html" target="new">matrix</a> messengers.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="row">
|
||||
<div class="one-third column">
|
||||
<img class="article_image" src="/assets/images/if_50-_couple-lesbian-love-head-to-head-1_3011618.png" />
|
||||
</div>
|
||||
<div class="two-thirds column paddingColumn">
|
||||
<h3>FluffyChat comes with a dream</h3>
|
||||
<p>Imagine a world where everyone can choose the messenger they like and is still able to chat with all of their friends.<br> A world where there are no companies spying on you when you send selfies to friends and lovers.<br> And a world where apps are made for fluffyness and not for profit. ♥
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
|
||||
<div class="centered">
|
||||
<script src="https://liberapay.com/KrilleChritzelius/widgets/button.js"></script>
|
||||
<noscript><a href="https://liberapay.com/KrilleChritzelius/donate"><img alt="Donate using Liberapay" src="https://liberapay.com//assets/widgets/donate.svg"></a></noscript>
|
||||
</div>
|
||||
|
||||
<div class="spacer"> </div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div id="footer">
|
||||
Languages available: (
|
||||
|
||||
|
||||
<a href="/en">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
|
||||
<a href="/es">es</a>
|
||||
|
||||
|
||||
|
||||
<a href="/nl">nl</a>
|
||||
|
||||
|
||||
|
||||
<a href="/ru">ru</a>
|
||||
|
||||
|
||||
)
|
||||
<br/>
|
||||
<a href="https://gitlab.com/famedly/flutter/-/blob/main/LICENSE" target="new">GNU General Public License</a> -
|
||||
<a href="/en/changelog.md" target="new">Changelog</a> -
|
||||
<a href="https://hosted.weblate.org/projects/fluffychat/" target="new">Help with translations</a> -
|
||||
<a href="https://christianpauly.gitlab.io/" target="new">Created by Christian Pauly</a> -
|
||||
<a href="/en/privacy.html">Privacy Policy</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter/-/graphs/main" target="new">Contributors</a> -
|
||||
<a href="https://gitlab.com/famedly/flutter#special-thanks-to" target="new">Special thanks to</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,661 +0,0 @@
|
|||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) 2020 Christian Pauly
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published
|
||||
by the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||