Almost working isPawned website.

This commit is contained in:
Indrajith K L
2018-07-30 17:25:19 +05:30
commit fe6ac74d50
324 changed files with 11070 additions and 0 deletions

6
.babelrc Normal file
View File

@@ -0,0 +1,6 @@
{
"presets": [
"env",
"react"
]
}

25
.gitignore vendored Normal file
View File

@@ -0,0 +1,25 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.
# dependencies
/node_modules
# testing
/coverage
#cache
/.cache
# production
/build
/dist
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

7054
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "ispawned",
"version": "1.0.0",
"description": "Is pawned frontend implemented in reac",
"main": "src/index.html",
"scripts": {
"start": "./node_modules/.bin/parcel src/index.html",
"build": "./node_modules/.bin/parcel build src/index.html"
},
"keywords": [
"react",
"ispawned",
"email",
"security"
],
"dependencies": {
"axios": "^0.18.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"vex-js": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.9.7"
},
"author": "Indrajith K L <mac91112@gmail.com>",
"license": "MIT"
}

17
src/app/App.js Normal file
View File

@@ -0,0 +1,17 @@
import React, {Component} from 'react';
import SearchField from './SearchField';
export default class App extends Component {
constructor(props){
super(props);
}
render(){
return(
<div id="content">
<SearchField />
</div>
);
}
}

16
src/app/PawnedListItem.js Normal file
View File

@@ -0,0 +1,16 @@
import React,{Component} from 'react';
export default class PawnedListItem extends Component{
constructor(props){
super(props);
}
render(){
return(
<div>
{this.props.breach.Description}
</div>
)
}
}

71
src/app/SearchField.js Normal file
View File

@@ -0,0 +1,71 @@
import React, { Component } from 'react';
import axios from 'axios';
import PawnedListItem from './PawnedListItem';
export default class SearchField extends Component {
constructor(props) {
super(props);
this.state = {
isPawnedEmail: '',
pawnedList: []
};
this.onFocus = this.onFocus.bind(this);
this.onBlur = this.onBlur.bind(this);
this.checkIsPawned = this.checkIsPawned.bind(this);
this.videoItems = [];
}
render() {
if (this.state.pawnedList.length > 0) {
this.videoItems = this.state.pawnedList.map((breach) => {
return <PawnedListItem key={breach.Domain} breach={breach} />
});
}
return (
<div className="searchWrapper">
<div className="search">
<div className="title">
<label>isPawned</label>
</div>
<input className="email-field pulse" type="email" placeholder="An Email Id" onChange={(event) => this.setState({ isPawnedEmail: event.target.value })} required onFocus={this.onFocus} onBlur={this.onBlur} />
<button className="kool-button-black check-button" onClick={this.checkIsPawned}>Check</button>
</div>
<div className="searchResults">
{this.videoItems}
</div>
</div>
);
}
onFocus(e) {
if (e.target.classList.contains('pulse')) {
e.target.classList.remove('pulse');
}
}
onBlur(e) {
if (!e.target.classList.contains('pulse') && e.target.value.length == 0) {
e.target.classList.add('pulse');
}
}
checkIsPawned() {
// axios.get()
console.log(this.state.isPawnedEmail)
axios({
method: 'get',
url: `https://haveibeenpwned.com/api/v2/breachedaccount/${this.state.isPawnedEmail}`
}).then((response) => {
console.log(response);
this.setState({
pawnedList: response.data
})
}).catch((error) => {
console.log('Error ', error);
})
}
}

0
src/app/index.css Normal file
View File

6
src/app/main.js Normal file
View File

@@ -0,0 +1,6 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
ReactDOM.render(<App />, document.getElementById('wrapper'));

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

38
src/css/icons.css Normal file
View File

@@ -0,0 +1,38 @@
@font-face {
font-family: 'Mono Social Icons Font';
src: url('font/MonoSocialIconsFont-1.10.eot');
src: url('font/MonoSocialIconsFont-1.10.eot?#iefix') format('embedded-opentype'),
url('font/MonoSocialIconsFont-1.10.woff') format('woff'),
url('font/MonoSocialIconsFont-1.10.ttf') format('truetype'),
url('font/MonoSocialIconsFont-1.10.svg#MonoSocialIconsFont') format('svg');
src: url('font/MonoSocialIconsFont-1.10.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.symbol, a.symbol:before {
font-family: 'Mono Social Icons Font';
-webkit-text-rendering: optimizeLegibility;
-moz-text-rendering: optimizeLegibility;
-ms-text-rendering: optimizeLegibility;
-o-text-rendering: optimizeLegibility;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-smoothing: antialiased;
}
a.symbol:before {
content: attr(title);
margin-right: 0.3em;
font-size: 130%;
}
a.symbol {
background: #9f9f9f;
padding: 7px 5px 3px 5px;
color: white;
text-decoration: none;
}

85
src/css/style.css Normal file
View File

@@ -0,0 +1,85 @@
@font-face {
font-family: 'RMTyperighter';
src: url(font/larabiefontrg.ttf) format('truetype');
}
html, body{
font-family: 'RMTyperighter' !important;
}
body
{
height: 100%;
margin: 0;
padding: 0;
}
#wrapper {
height: calc(100vh);
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
footer,header {
background:lightgray;
}
/* Other Styles */
.vex.vex-theme-wireframe .vex-content {
font-family: 'RMTyperighter' !important;
}
.kool-button-black{
background: #000;
color: #fff;
border: 2px solid transparent;
padding: .75em 2em;
cursor: pointer;
font-family: RMTyperighter;
}
.kool-button-white{
background: #fff;
color: #000;
border: 2px solid transparent;
padding: .75em 2em;
cursor: pointer;
}
.searchWrapper{
display: flex;
width: 500px;
justify-content: center;
align-items: center;
flex-direction: column
}
.search{
}
.searchResults {
padding-top: 21px;
max-height: 400px;
overflow: auto;
margin: 0 .4rem;
}
.searchResults div{margin: 5px 0}
.search .email-field{
border: 1px solid #000;
height: 46px;
width: 375px;
font-family: RMTyperighter;
font-size: 18px;
padding: 3px;
}
.check-button{
height: 52px;
padding-bottom: 7px;
margin-left: 11px;
}
.title{
font-size: 45px;
}

View File

@@ -0,0 +1,183 @@
@-webkit-keyframes vex-slideup {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 0; }
1% {
-webkit-transform: translateY(800px);
transform: translateY(800px);
opacity: 0; }
2% {
-webkit-transform: translateY(800px);
transform: translateY(800px);
opacity: 1; }
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1; } }
@keyframes vex-slideup {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 0; }
1% {
-webkit-transform: translateY(800px);
transform: translateY(800px);
opacity: 0; }
2% {
-webkit-transform: translateY(800px);
transform: translateY(800px);
opacity: 1; }
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1; } }
@-webkit-keyframes vex-slidedown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(800px);
transform: translateY(800px); } }
@keyframes vex-slidedown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(800px);
transform: translateY(800px); } }
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-bottom-right-corner {
top: auto;
bottom: 0;
right: 0;
overflow: visible; }
.vex.vex-theme-bottom-right-corner .vex-overlay {
display: none; }
.vex.vex-theme-bottom-right-corner.vex-closing .vex-content {
-webkit-animation: vex-slidedown .5s forwards;
animation: vex-slidedown .5s forwards; }
.vex.vex-theme-bottom-right-corner .vex-content {
-webkit-animation: vex-slideup .5s;
animation: vex-slideup .5s; }
.vex.vex-theme-bottom-right-corner .vex-content {
border-radius: 5px 0 0 0;
font-family: "Helvetica Neue", sans-serif;
background: #f0f0f0;
color: #444;
padding: 1em;
max-width: 100%;
width: 450px;
font-size: 1.1em;
line-height: 1.5em;
position: fixed;
bottom: 0;
right: 0;
left: auto; }
.vex.vex-theme-bottom-right-corner .vex-content h1, .vex.vex-theme-bottom-right-corner .vex-content h2, .vex.vex-theme-bottom-right-corner .vex-content h3, .vex.vex-theme-bottom-right-corner .vex-content h4, .vex.vex-theme-bottom-right-corner .vex-content h5, .vex.vex-theme-bottom-right-corner .vex-content h6, .vex.vex-theme-bottom-right-corner .vex-content p, .vex.vex-theme-bottom-right-corner .vex-content ul, .vex.vex-theme-bottom-right-corner .vex-content li {
color: inherit; }
.vex.vex-theme-bottom-right-corner .vex-close {
border-radius: 5px;
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-bottom-right-corner .vex-close:before {
border-radius: 3px;
position: absolute;
content: "\00D7";
font-size: 26px;
font-weight: normal;
line-height: 31px;
height: 30px;
width: 30px;
text-align: center;
top: 3px;
right: 3px;
color: #bbb;
background: transparent; }
.vex.vex-theme-bottom-right-corner .vex-close:hover:before, .vex.vex-theme-bottom-right-corner .vex-close:active:before {
color: #777;
background: #e0e0e0; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="week"] {
border-radius: 3px;
background: #fff;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #8dbdf1;
outline: none; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-bottom-right-corner .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-bottom-right-corner .vex-dialog-button {
border-radius: 3px;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-bottom-right-corner .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-bottom-right-corner .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-bottom-right-corner .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-bottom-right-corner .vex-dialog-button.vex-dialog-button-primary {
background: #3288e6;
color: #fff; }
.vex.vex-theme-bottom-right-corner .vex-dialog-button.vex-dialog-button-secondary {
background: #e0e0e0;
color: #777; }
.vex-loading-spinner.vex-theme-bottom-right-corner {
box-shadow: 0 0 0 0.5em #f0f0f0, 0 0 1px 0.5em rgba(0, 0, 0, 0.3);
border-radius: 100%;
background: #f0f0f0;
border: .2em solid transparent;
border-top-color: #bbb;
top: -1.1em;
bottom: auto; }
body.vex-open {
overflow: initial; }

View File

@@ -0,0 +1,162 @@
@-webkit-keyframes vex-flyin {
0% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes vex-flyin {
0% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes vex-flyout {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@keyframes vex-flyout {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-default {
padding-top: 160px;
padding-bottom: 160px; }
.vex.vex-theme-default.vex-closing .vex-content {
-webkit-animation: vex-flyout .5s forwards;
animation: vex-flyout .5s forwards; }
.vex.vex-theme-default .vex-content {
-webkit-animation: vex-flyin .5s;
animation: vex-flyin .5s; }
.vex.vex-theme-default .vex-content {
border-radius: 5px;
font-family: "Helvetica Neue", sans-serif;
background: #f0f0f0;
color: #444;
padding: 1em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 450px;
font-size: 1.1em;
line-height: 1.5em; }
.vex.vex-theme-default .vex-content h1, .vex.vex-theme-default .vex-content h2, .vex.vex-theme-default .vex-content h3, .vex.vex-theme-default .vex-content h4, .vex.vex-theme-default .vex-content h5, .vex.vex-theme-default .vex-content h6, .vex.vex-theme-default .vex-content p, .vex.vex-theme-default .vex-content ul, .vex.vex-theme-default .vex-content li {
color: inherit; }
.vex.vex-theme-default .vex-close {
border-radius: 5px;
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-default .vex-close:before {
border-radius: 3px;
position: absolute;
content: "\00D7";
font-size: 26px;
font-weight: normal;
line-height: 31px;
height: 30px;
width: 30px;
text-align: center;
top: 3px;
right: 3px;
color: #bbb;
background: transparent; }
.vex.vex-theme-default .vex-close:hover:before, .vex.vex-theme-default .vex-close:active:before {
color: #777;
background: #e0e0e0; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="week"] {
border-radius: 3px;
background: #fff;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-default .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #8dbdf1;
outline: none; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-default .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-default .vex-dialog-button {
border-radius: 3px;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-default .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-default .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-default .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-default .vex-dialog-button.vex-dialog-button-primary {
background: #3288e6;
color: #fff; }
.vex.vex-theme-default .vex-dialog-button.vex-dialog-button-secondary {
background: #e0e0e0;
color: #777; }
.vex-loading-spinner.vex-theme-default {
box-shadow: 0 0 0 0.5em #f0f0f0, 0 0 1px 0.5em rgba(0, 0, 0, 0.3);
border-radius: 100%;
background: #f0f0f0;
border: .2em solid transparent;
border-top-color: #bbb;
top: -1.1em;
bottom: auto; }

View File

@@ -0,0 +1,176 @@
@-webkit-keyframes vex-flipin-horizontal {
0% {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg); }
100% {
opacity: 1;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg); } }
@keyframes vex-flipin-horizontal {
0% {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg); }
100% {
opacity: 1;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg); } }
@-webkit-keyframes vex-flipout-horizontal {
0% {
opacity: 1;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg); }
100% {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg); } }
@keyframes vex-flipout-horizontal {
0% {
opacity: 1;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg); }
100% {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg); } }
.vex.vex-theme-flat-attack {
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-perspective-origin: 50% 150px;
perspective-origin: 50% 150px;
padding-top: 100px;
padding-bottom: 100px;
font-size: 1.5em; }
.vex.vex-theme-flat-attack.vex-closing .vex-content {
-webkit-animation: vex-flipout-horizontal .5s forwards;
animation: vex-flipout-horizontal .5s forwards; }
.vex.vex-theme-flat-attack .vex-content {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-animation: vex-flipin-horizontal .5s;
animation: vex-flipin-horizontal .5s; }
.vex.vex-theme-flat-attack .vex-content {
font-family: "Helvetica Neue", sans-serif;
font-weight: 200;
background: #fff;
color: #444;
padding: 2em 2em 3em 2em;
line-height: 1.5em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 600px; }
.vex.vex-theme-flat-attack .vex-content h1, .vex.vex-theme-flat-attack .vex-content h2, .vex.vex-theme-flat-attack .vex-content h3, .vex.vex-theme-flat-attack .vex-content h4, .vex.vex-theme-flat-attack .vex-content h5, .vex.vex-theme-flat-attack .vex-content h6, .vex.vex-theme-flat-attack .vex-content p, .vex.vex-theme-flat-attack .vex-content ul, .vex.vex-theme-flat-attack .vex-content li {
color: inherit; }
.vex.vex-theme-flat-attack .vex-close {
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-flat-attack .vex-close:before {
font-family: "Helvetica Neue", sans-serif;
font-weight: 100;
line-height: 1px;
padding-top: .5em;
display: block;
font-size: 2em;
text-indent: 1px;
overflow: hidden;
height: 1.25em;
width: 1.25em;
text-align: center;
top: 0;
right: 0;
color: #fff;
background: #666; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input {
margin-bottom: .5em; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="week"] {
border-radius: 3px;
background: #f0f0f0;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #666;
outline: none; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-buttons {
*zoom: 1;
padding-top: 1em;
margin-bottom: -3em;
margin-left: -2em;
margin-right: -2em; }
.vex.vex-theme-flat-attack .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-flat-attack .vex-dialog-button {
border-radius: 0;
border: 0;
margin: 0;
float: right;
padding: .5em 1em;
font-size: 1.13em;
text-transform: uppercase;
font-weight: 200;
letter-spacing: .1em;
line-height: 1em;
font-family: inherit; }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-flat-attack .vex-dialog-button:focus {
outline: none; }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-primary {
background: #666;
color: #fff; }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-primary:focus {
box-shadow: inset 0 3px rgba(0, 0, 0, 0.2); }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-secondary {
background: #fff;
color: #ccc; }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-secondary:focus {
box-shadow: inset 0 3px #aaa;
background: #eee;
color: #777; }
.vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-secondary:hover, .vex.vex-theme-flat-attack .vex-dialog-button.vex-dialog-button-secondary:active {
color: #777; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-close:before {
background: #ff7ea7; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #ff7ea7; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-pink .vex-dialog-form .vex-dialog-buttons .vex-dialog-button.vex-dialog-button-primary {
background: #ff7ea7; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-close:before {
background: #ce4a55; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #ce4a55; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-red .vex-dialog-form .vex-dialog-buttons .vex-dialog-button.vex-dialog-button-primary {
background: #ce4a55; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-close:before {
background: #34b989; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #34b989; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-green .vex-dialog-form .vex-dialog-buttons .vex-dialog-button.vex-dialog-button-primary {
background: #34b989; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-close:before {
background: #477FA5; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #477FA5; }
.vex.vex-theme-flat-attack.vex-theme-flat-attack-blue .vex-dialog-form .vex-dialog-buttons .vex-dialog-button.vex-dialog-button-primary {
background: #477FA5; }
.vex-loading-spinner.vex-theme-flat-attack {
height: 4em;
width: 4em; }

165
src/css/vex-theme-os.css Normal file
View File

@@ -0,0 +1,165 @@
@-webkit-keyframes vex-flyin {
0% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes vex-flyin {
0% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes vex-flyout {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@keyframes vex-flyout {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-os {
padding-top: 160px;
padding-bottom: 160px; }
.vex.vex-theme-os.vex-closing .vex-content {
-webkit-animation: vex-flyout .5s forwards;
animation: vex-flyout .5s forwards; }
.vex.vex-theme-os .vex-content {
-webkit-animation: vex-flyin .5s;
animation: vex-flyin .5s; }
.vex.vex-theme-os .vex-content {
border-radius: 5px;
box-shadow: inset 0 1px #a6a6a6, 0 0 0 1px rgba(0, 0, 0, 0.08);
font-family: "Helvetica Neue", sans-serif;
border-top: 20px solid #bbb;
background: #f0f0f0;
color: #444;
padding: 1em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 450px;
font-size: 1.1em;
line-height: 1.5em; }
.vex.vex-theme-os .vex-content h1, .vex.vex-theme-os .vex-content h2, .vex.vex-theme-os .vex-content h3, .vex.vex-theme-os .vex-content h4, .vex.vex-theme-os .vex-content h5, .vex.vex-theme-os .vex-content h6, .vex.vex-theme-os .vex-content p, .vex.vex-theme-os .vex-content ul, .vex.vex-theme-os .vex-content li {
color: inherit; }
.vex.vex-theme-os .vex-close {
border-radius: 0 5px 0 0;
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-os .vex-close:before {
border-radius: 3px;
position: absolute;
content: "\00D7";
font-size: 26px;
font-weight: normal;
line-height: 31px;
height: 30px;
width: 30px;
text-align: center;
top: 3px;
right: 3px;
color: #bbb;
background: transparent; }
.vex.vex-theme-os .vex-close:hover:before, .vex.vex-theme-os .vex-close:active:before {
color: #777;
background: #e0e0e0; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="week"] {
border-radius: 3px;
background: #fff;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-os .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 1px #3288e6;
outline: none; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-os .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-os .vex-dialog-button {
border-radius: 3px;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-os .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-os .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-os .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-os .vex-dialog-button.vex-dialog-button-primary {
background: #3288e6;
color: #fff; }
.vex.vex-theme-os .vex-dialog-button.vex-dialog-button-secondary {
background: #e0e0e0;
color: #777; }
.vex-loading-spinner.vex-theme-os {
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0.5em rgba(0, 0, 0, 0.2);
border-radius: 100%;
background: rgba(255, 255, 255, 0.2);
width: 0;
height: 0;
border: 1.2em solid #bbb;
border-top-color: #f0f0f0;
border-bottom-color: #f0f0f0; }

107
src/css/vex-theme-plain.css Normal file
View File

@@ -0,0 +1,107 @@
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-plain {
padding-top: 160px;
padding-bottom: 160px; }
.vex.vex-theme-plain .vex-content {
font-family: "Helvetica Neue", sans-serif;
background: #fff;
color: #444;
padding: 1em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 450px;
font-size: 1.1em;
line-height: 1.5em; }
.vex.vex-theme-plain .vex-content h1, .vex.vex-theme-plain .vex-content h2, .vex.vex-theme-plain .vex-content h3, .vex.vex-theme-plain .vex-content h4, .vex.vex-theme-plain .vex-content h5, .vex.vex-theme-plain .vex-content h6, .vex.vex-theme-plain .vex-content p, .vex.vex-theme-plain .vex-content ul, .vex.vex-theme-plain .vex-content li {
color: inherit; }
.vex.vex-theme-plain .vex-close {
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-plain .vex-close:before {
position: absolute;
content: "\00D7";
font-size: 26px;
font-weight: normal;
line-height: 31px;
height: 30px;
width: 30px;
text-align: center;
top: 3px;
right: 3px;
color: #bbb;
background: transparent; }
.vex.vex-theme-plain .vex-close:hover:before, .vex.vex-theme-plain .vex-close:active:before {
color: #777;
background: #e0e0e0; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"] {
background: #f0f0f0;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
outline: none; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-plain .vex-dialog-button {
border-radius: 0;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-plain .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-plain .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-plain .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-primary {
background: #3288e6;
color: #fff; }
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-secondary {
background: #e0e0e0;
color: #777; }
.vex-loading-spinner.vex-theme-plain {
height: 2.5em;
width: 2.5em; }

178
src/css/vex-theme-top.css Normal file
View File

@@ -0,0 +1,178 @@
@-webkit-keyframes vex-dropin {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 0; }
1% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 0; }
2% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 1; }
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1; } }
@keyframes vex-dropin {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 0; }
1% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 0; }
2% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 1; }
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1; } }
@-webkit-keyframes vex-dropout {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px); } }
@keyframes vex-dropout {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px); } }
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-top.vex-closing .vex-content {
-webkit-animation: vex-dropout .5s forwards;
animation: vex-dropout .5s forwards; }
.vex.vex-theme-top .vex-content {
-webkit-animation: vex-dropin .5s;
animation: vex-dropin .5s; }
.vex.vex-theme-top .vex-content {
border-radius: 0 0 5px 5px;
font-family: "Helvetica Neue", sans-serif;
background: #f0f0f0;
color: #444;
padding: 1em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 450px;
font-size: 1.1em;
line-height: 1.5em; }
.vex.vex-theme-top .vex-content h1, .vex.vex-theme-top .vex-content h2, .vex.vex-theme-top .vex-content h3, .vex.vex-theme-top .vex-content h4, .vex.vex-theme-top .vex-content h5, .vex.vex-theme-top .vex-content h6, .vex.vex-theme-top .vex-content p, .vex.vex-theme-top .vex-content ul, .vex.vex-theme-top .vex-content li {
color: inherit; }
.vex.vex-theme-top .vex-close {
border-radius: 5px;
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-top .vex-close:before {
border-radius: 3px;
position: absolute;
content: "\00D7";
font-size: 26px;
font-weight: normal;
line-height: 31px;
height: 30px;
width: 30px;
text-align: center;
top: 3px;
right: 3px;
color: #bbb;
background: transparent; }
.vex.vex-theme-top .vex-close:hover:before, .vex.vex-theme-top .vex-close:active:before {
color: #777;
background: #e0e0e0; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="week"] {
border-radius: 3px;
background: #fff;
width: 100%;
padding: .25em .67em;
border: 0;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-top .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
box-shadow: inset 0 0 0 2px #8dbdf1;
outline: none; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-top .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-top .vex-dialog-button {
border-radius: 3px;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-top .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-top .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-top .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-top .vex-dialog-button.vex-dialog-button-primary {
background: #3288e6;
color: #fff; }
.vex.vex-theme-top .vex-dialog-button.vex-dialog-button-secondary {
background: #e0e0e0;
color: #777; }
.vex-loading-spinner.vex-theme-top {
box-shadow: 0 0 0 0.5em #f0f0f0, 0 0 1px 0.5em rgba(0, 0, 0, 0.3);
border-radius: 100%;
background: #f0f0f0;
border: .2em solid transparent;
border-top-color: #bbb;
top: -1.1em;
bottom: auto; }

View File

@@ -0,0 +1,110 @@
@-webkit-keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
@keyframes vex-pulse {
0% {
box-shadow: inset 0 0 0 300px transparent; }
70% {
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
100% {
box-shadow: inset 0 0 0 300px transparent; } }
.vex.vex-theme-wireframe {
padding-top: 160px;
padding-bottom: 160px; }
.vex.vex-theme-wireframe .vex-overlay {
background: rgba(255, 255, 255, 0.4); }
.vex.vex-theme-wireframe .vex-content {
font-family: "Helvetica Neue", sans-serif;
background: #fff;
color: #000;
border: 2px solid #000;
padding: 2em;
position: relative;
margin: 0 auto;
max-width: 100%;
width: 400px;
font-size: 1.1em;
line-height: 1.5em; }
.vex.vex-theme-wireframe .vex-content h1, .vex.vex-theme-wireframe .vex-content h2, .vex.vex-theme-wireframe .vex-content h3, .vex.vex-theme-wireframe .vex-content h4, .vex.vex-theme-wireframe .vex-content h5, .vex.vex-theme-wireframe .vex-content h6, .vex.vex-theme-wireframe .vex-content p, .vex.vex-theme-wireframe .vex-content ul, .vex.vex-theme-wireframe .vex-content li {
color: inherit; }
.vex.vex-theme-wireframe .vex-close {
position: absolute;
top: 0;
right: 0;
cursor: pointer; }
.vex.vex-theme-wireframe .vex-close:before {
position: absolute;
content: "\00D7";
font-size: 40px;
font-weight: normal;
line-height: 80px;
height: 80px;
width: 80px;
text-align: center;
top: 3px;
right: 3px;
color: #000; }
.vex.vex-theme-wireframe .vex-close:hover:before, .vex.vex-theme-wireframe .vex-close:active:before {
color: #000; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-message {
margin-bottom: .5em; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input {
margin-bottom: 1em; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="week"] {
background: #fff;
width: 100%;
padding: .25em .67em;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
min-height: 2.5em;
margin: 0 0 .25em;
border: 2px solid #000; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
border-style: dashed;
outline: none; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-buttons {
*zoom: 1; }
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-buttons:after {
content: "";
display: table;
clear: both; }
.vex.vex-theme-wireframe .vex-dialog-button {
border-radius: 0;
border: 0;
float: right;
margin: 0 0 0 .5em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: .1em;
font-size: .8em;
line-height: 1em;
padding: .75em 2em; }
.vex.vex-theme-wireframe .vex-dialog-button.vex-last {
margin-left: 0; }
.vex.vex-theme-wireframe .vex-dialog-button:focus {
-webkit-animation: vex-pulse 1.1s infinite;
animation: vex-pulse 1.1s infinite;
outline: none; }
@media (max-width: 568px) {
.vex.vex-theme-wireframe .vex-dialog-button:focus {
-webkit-animation: none;
animation: none; } }
.vex.vex-theme-wireframe .vex-dialog-button.vex-dialog-button-primary {
background: #000;
color: #fff;
border: 2px solid transparent; }
.vex.vex-theme-wireframe .vex-dialog-button.vex-dialog-button-secondary {
background: #fff;
color: #000;
border: 2px solid #000; }
.vex-loading-spinner.vex-theme-wireframe {
height: 2.5em;
width: 2.5em; }

117
src/css/vex.css Normal file
View File

@@ -0,0 +1,117 @@
@-webkit-keyframes vex-fadein {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes vex-fadein {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-webkit-keyframes vex-fadeout {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes vex-fadeout {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@-webkit-keyframes vex-rotation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg); } }
@keyframes vex-rotation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg); } }
.vex, .vex *, .vex *:before, .vex *:after {
-moz-box-sizing: border-box;
box-sizing: border-box; }
.vex {
position: fixed;
overflow: auto;
-webkit-overflow-scrolling: touch;
z-index: 1111;
top: 0;
right: 0;
bottom: 0;
left: 0; }
.vex-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll; }
.vex-overlay {
-webkit-animation: vex-fadein .5s;
animation: vex-fadein .5s;
position: fixed;
z-index: 1111;
background: rgba(0, 0, 0, 0.4);
top: 0;
right: 0;
bottom: 0;
left: 0; }
.vex-overlay.vex-closing {
-webkit-animation: vex-fadeout .5s forwards;
animation: vex-fadeout .5s forwards; }
.vex-content {
-webkit-animation: vex-fadein .5s;
animation: vex-fadein .5s;
background: #fff; }
.vex.vex-closing .vex-content {
-webkit-animation: vex-fadeout .5s forwards;
animation: vex-fadeout .5s forwards; }
.vex-close:before {
font-family: Arial, sans-serif;
content: "\00D7"; }
.vex-dialog-form {
margin: 0; }
.vex-dialog-button {
text-rendering: optimizeLegibility;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
-webkit-tap-highlight-color: transparent; }
.vex-loading-spinner {
-webkit-animation: vex-rotation .7s linear infinite;
animation: vex-rotation .7s linear infinite;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
position: fixed;
z-index: 1112;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 2em;
width: 2em;
background: #fff; }
body.vex-open {
overflow: hidden; }

1020
src/css/wickedcss.css Normal file

File diff suppressed because it is too large Load Diff

5
src/css/wickedcss.min.css vendored Normal file

File diff suppressed because one or more lines are too long

16
src/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/wickedcss.css">
<link rel="stylesheet" href="css/style.css">
<title>Indrajith K L's - IsPawned</title>
</head>
<body>
<div id="wrapper"></div>
<script src="./app/main.js"></script>
</body>
</html>

BIN
src/logos/000webhost.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

1
src/logos/126.svg Normal file
View File

@@ -0,0 +1 @@
<svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 54.5 27.5" overflow="scroll" xml:space="preserve"><path fill="#158144" d="M0,4.9C3.9,3.2,11.9,0.1,11.9,0c-1.6,9.1-3.1,18.1-4.7,27.2c-2.4,0-4.8,0-7.2,0c0.2,0,0,0,2.9-18.4 c0,0-2.1,0.1-2.9,0.1C0.1,7.9,0,5.9,0,4.9L0,4.9z"/><path fill="#158144" d="M14.4,1.5c3.6-1.1,7.8-1.9,11.3,0c2.8,1.3,4.6,4.4,4,7.5c-0.8,4.4-4.6,7.4-6.5,11.3c2.4,0,4.9-0.1,7.3,0 c-0.5,2.3-0.9,4.5-1.3,6.8c-6.8,0.2-13.6,0.1-20.4,0.1c3.3-4.7,7.7-8.6,11-13.4c0.8-1.3,1.8-2.4,1-4.6c-1-3-5.4-1.6-7.6-0.3 C13.3,9,13.9,4,14.4,1.5L14.4,1.5z"/><path fill="#158144" d="M52.5,12.6c-2-2.6-5.5-3-8.6-2.7c2.3-3,4.5-6,6.7-9.1c-2.7,0.1-0.2,0-8.3,0.2c-3.6,4.2-7.7,8.2-10.1,13.3 c-2.1,4.1-0.4,9.7,3.8,11.7c4.8,2.4,11.3,2,15.4-1.6C54.7,21.5,55.7,15.9,52.5,12.6z M40.5,21.6c-2.4-1.5-1.5-5.3,0.8-6.4 c1.7-1.3,4.9-0.5,5.1,1.8C47.1,20.2,43.4,23.1,40.5,21.6z"/></svg>

After

Width:  |  Height:  |  Size: 968 B

BIN
src/logos/17173.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

1
src/logos/17Media.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 680.8 414.5" overflow="scroll" xml:space="preserve"><path fill="#FFFFFF" d="M326.8,0.6c28.4-2.4,57.5,2.7,83.2,15.2C452.2,35.7,484.6,75,496,120.2c9.2,35.7,5.7,74.6-10,108 c-15.9,34.1-44.2,62.2-78.4,77.8c-41.1,19-90.3,19.4-131.7,1.2c-30.1-13.1-56-35.8-73-63.9c-13.8-22.7-21.8-49-22.9-75.6 c-1.8-35.8,9-72.1,30-101.1C236.9,28.9,280.7,4,326.8,0.6L326.8,0.6z"/><path fill="#FFFFFF" d="M55.8,123.4c11.7-2.7,24.6,0.3,33.7,8.1c11.3,9.4,17.2,23.8,19.3,38c2.3,16.6,0.5,33.8-5.5,49.4 c-4.8,12.4-13.9,23.3-26.2,28.7c-15.9,7-34.4,5.5-50.3-0.4c-10.5-3.8-20.1-11.5-24-22.2C-1.5,213.1-0.2,200,2.5,188 c4.3-19.6,13.9-38.6,29.2-51.9C38.6,130.1,46.8,125.4,55.8,123.4L55.8,123.4z"/><path fill="#FFFFFF" d="M607.7,123.3c13.1-3,26.9,1.6,37.4,9.5c14.7,11,24.8,27.3,30.4,44.7c4.3,13.8,7.2,28.7,3.8,43 c-2.4,10.7-10.3,19.5-20.1,24.3c-13.3,6.4-28.6,8.9-43.2,6.6c-13.9-2.1-26.6-10.7-33.8-22.8c-8.9-14.9-11.8-32.7-11.2-49.9 c0.6-14.2,4.6-28.6,13.3-40C590.1,131.2,598.3,125.3,607.7,123.3L607.7,123.3z"/><path fill="#FFFFFF" d="M181.2,272.6c7.4-4.8,18.6,1.4,18.6,10.2c-0.9,10.3-5.9,19.9-12.8,27.4c8.9,21.9,25.9,39.7,45.7,52.1 c23,14.4,49.4,22.8,76.2,26.6c42.2,5.9,86.5,0.1,125-18.6c25.9-12.6,49.1-33.1,60-60.2c-6.8-7.5-11.9-16.9-12.8-27.1 c-0.3-9.1,11.6-15.6,18.9-10.2c4.1,2.9,3.4,8.5,5.5,12.7c3.8,9.7,13.2,16.9,23.6,17.7c3.8,0.5,8.3-0.7,11.6,2c6.3,5,5.1,16.3-2,19.9 c-2.8,1.7-6.2,1.3-9.3,1.3c-5.5,0-10.8-1.4-15.9-3.2c-12.8,29.7-38.2,52.3-66.6,66.7c-41.1,21.1-88.6,27.9-134.2,23 c-21.5-2.4-42.7-7.6-62.7-15.8c-21.7-8.9-42.2-21.5-58.6-38.5c-9.9-10.3-18.1-22.3-23.8-35.5c-7.3,2.6-15.1,3.9-22.8,2.9 c-8.9-1.9-11.6-15.1-4.7-20.8c3.5-3,8.4-1.5,12.5-2.2c10.3-1.2,19.4-8.4,23-18.1C177.3,280.9,176.9,275.3,181.2,272.6L181.2,272.6z" /></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 206.5 218" overflow="scroll" xml:space="preserve"><path fill="none" stroke="#FFFFFF" stroke-width="8" stroke-miterlimit="10" d="M197.5,214H9c-2.8,0-5-2.3-5-5V9c0-2.8,2.3-5,5-5 h188.5c2.8,0,5,2.3,5,5v200C202.5,211.8,200.3,214,197.5,214z"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="34" x2="173.5" y2="34"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="64" x2="173.5" y2="64"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="93" x2="173.5" y2="93"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="124" x2="173.5" y2="124"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="154" x2="173.5" y2="154"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="184" x2="173.5" y2="184"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
src/logos/2fast4u.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/logos/7k7k.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/logos/8tracks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
src/logos/AIType.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/logos/AKP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
src/logos/Abandonia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
src/logos/AbuseWithUs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

1
src/logos/AcneOrg.svg Normal file
View File

@@ -0,0 +1 @@
<svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 147.1 146.3" xml:space="preserve"><g><path fill="#2B9EE2" d="M144.9,23.2c-0.1-3.6-2.5-6.7-5.8-7.9C114.9,3.9,87.8-1.6,61.1,0.4C42,2.3,23.2,7.4,6,16 c-4,1.9-4.3,6.8-4.6,10.7C0.6,49.5-2.6,73,4.4,95.2c3.1,10.2,9.6,19.2,17.9,25.8c13.6,10.7,29.4,18.3,45.5,24.5 c3,1.3,6.3,0.8,9.3-0.4c16.5-6.2,32.9-13.3,47-24.1c6.6-5.1,12.3-11.6,15.7-19.3c5.7-12.9,7-27.2,7.4-41.1 C146.2,48.2,145.7,35.6,144.9,23.2z M139,76.6c-1.3,13.3-5.5,27.4-16.2,36.2c-13.1,11.3-29.3,18.4-45.2,24.7 c-2.6,0.9-5.3,2.5-8.1,1.2c-12.5-4.9-24.7-10.6-35.9-18.1c-7.6-5.2-15-11.3-19.3-19.6C8.8,90.5,7.4,78.4,7.1,66.7 C6.9,51.8,8,37,8.9,22.3C29.7,12.3,52.6,6.4,75.7,7c21.5,0.6,42.9,5.9,62.2,15.4C138.7,40.4,140.3,58.5,139,76.6z"/><path fill="#2B9EE2" d="M64.6,21.9C50.4,23,36.4,26.4,23.3,32c-0.7,15.5-2.3,31.2-0.2,46.7c1.2,8.4,3.8,17.2,10.4,23.1 c10.2,9.3,22.9,15.2,35.3,20.8c4.2,2.3,8.4-1,12.3-2.4c-8.8-4.6-16.3-12.3-19.1-22c-2.7-8.4-1.3-17.5,2.2-25.5 c-1.6,0.2-3.2,0.4-4.8,0.6c-0.5-2.3-0.9-4.6-1.4-7c7.1-1.4,14.2-2.5,21.2-4c1.5,6.4,2.9,12.8,4.1,19.3c-2.3,0.4-4.7,0.8-7,1.3 c-0.3-0.8-0.6-1.6-0.9-2.4c-1.4,4.9-2,10.3,0,15.1c3.2,9,12.7,15,22.2,14.6c5.7,0.2,9.9-4.1,14.1-7.3c8.8-6.9,11.5-18.5,12.3-29.1 c0.7-13.9,0.2-27.9-0.9-41.8C104.8,24.3,84.5,20.8,64.6,21.9z M100.3,44.6c-0.4,6.6-9.3,10-14.1,5.5c-4.8-3.8-3-12.2,2.8-14 C94.4,34.1,101,38.7,100.3,44.6z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

1
src/logos/Adobe.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100px' height='85.811px' viewBox='0 0 100 85.811' xml:space='preserve'><path fill-rule='evenodd' fill='#ED1C24' d='M49.608,32.625c0.104,0.105,23.395,53.232,23.373,53.186c-5.098,0-10.174,0-15.264,0 c0-0.164-7.23-17.32-7.155-17.41c-5.5,0-10.963,0-16.456,0C34.254,68.444,49.838,32.446,49.608,32.625L49.608,32.625z'/><path fill-rule='evenodd' fill='#ED1C24' d='M0,0c0.119,0,35.767,0,35.775,0C35.879-0.022,0.238,85.804,0.119,85.692 C0.119,85.572,0.038-0.06,0,0L0,0z'/><path fill-rule='evenodd' fill='#ED1C24' d='M63.009,0H100c0,0.216-0.024,85.856-0.024,85.736C99.997,86.014,63.009,0,63.009,0 L63.009,0z'/></svg>

After

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

1
src/logos/AhaShare.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
src/logos/Aipai.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

1
src/logos/Ancestry.svg Normal file
View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1088.6 199.2" style="enable-background:new 0 0 1088.6 199.2;" xml:space="preserve"><style type="text/css">.st0{fill:#FFFFFF;}.st1{fill:#9CBE30;}</style><title>ancestry</title><path class="st0" d="M319.8,85.2c-12.1,1.5-19.7,5-24.7,10.1c-4,4-6.1,9.1-6.1,14.1c0,9.1,6.6,15.6,14.6,15.6c5,0,10.1-2,12.6-5c1-1,2-3,2-5L319.8,85.2L319.8,85.2z M340.5,139.2c-10.1,0-19.2-6.6-21.7-16.6c-5,9.1-14.6,16.6-27.2,16.6c-14.1,0-26.2-11.1-26.2-25.2c0-19.7,18.7-33.8,54-34.3v-5c0.5-14.1-7.6-22.7-21.7-22.7c-10.1,0-20.7,6.6-27.7,15.1c-0.5,0.5-3.5-2.5-3.5-3c9.1-18.2,25.7-28.2,42.9-28.2c19.7,0,33.8,14.1,33.3,37.8L341,113c0,9.1,4,13.1,8.6,13.1c5,0,8.6-4,10.6-9.6c0-0.5,3,1,3,1.5C363.2,131.7,353.1,139.2,340.5,139.2L340.5,139.2z M466.1,135.7h-26.7c-0.5,0-0.5-5,0-5c11.1-1.5,12.6-2.5,12.6-24.2V76.2c0-13.6-8.1-23.2-19.7-23.2c-8.1,0-15.6,4-19.2,9.1c-2.5,3-4,8.6-4,15.6v28.8c0,21.7,2.5,22.7,13.6,24.2c0,0,0.5,5,0,5h-51.5c-0.5,0-0.5-5-0.5-5c12.1-2,13.6-2.5,13.6-24.2V69.6c0-22.2-2.5-23.2-15.6-25.2c-1,0-0.5-5,0-5h38.3v22.2h0.5c8.6-16.1,21.7-25.7,37.8-25.7c18.2,0,32.3,14.1,32.3,37.3v32.8c0,21.7,2,22.7,14.1,24.2c1,0,0.5,5,0,5C484.2,135.7,473.1,135.7,466.1,135.7 M547.3,139.2c-30.3,0-49.9-23.7-49.9-50.9c0-29.3,19.7-52.5,52-52.5c15.1,0,22.7,5,27.2,5c2,0,4-1.5,5-4c0-0.5,6.1-0.5,6.1,0v36.3c0,0.5-6.1,0.5-6.1,0c-8.1-16.6-19.2-30.8-32.3-30.8c-16.1,0-25.7,17.2-25.7,40.9c0,25.2,13.1,41.9,31.3,41.9c12.1,0,25.7-8.6,31.3-18.2c0.5-1,4.5,1,4.5,2C584.1,126.1,567,139.2,547.3,139.2 M669.9,75.2v-7.1c0-15.6-7.6-24.7-17.2-24.7c-12.1,0-21.2,13.1-23.2,31.8L669.9,75.2L669.9,75.2z M629.5,86.8c0,21.7,12.1,38.3,32.8,38.3c12.1,0,24.2-8.1,30.8-18.2c0-0.5,4,1,4,2c-5.5,17.2-23.7,30.3-43.9,30.3c-31.8,0-50.4-23.2-50.4-50.9s19.7-52.5,53-52.5c25.2,0,41.9,16.6,43.4,39.3v7.1h-68.6C629.5,83.2,629.5,85.7,629.5,86.8L629.5,86.8z M749.6,139.2c-15.6,0-29.3-4-33.8-7.1c-0.5-0.5-2-13.6-2-26.7c0-0.5,6.1-1,6.1,0c8.1,17.7,19.7,27.7,32.3,27.7c10.6,0,18.2-5.5,18.2-14.1c0-10.1-12.1-14.6-24.2-20.2c-14.6-5.5-31.3-13.1-31.3-31.8c0-14.6,12.6-29.8,36.3-29.8c10.1,0,16.6,4,21.2,4c2,0,4-1.5,5.5-4c0-0.5,6.1-0.5,6.1,0v33.3c0,0.5-6.1,0.5-6.1,0c-8.1-15.1-17.7-25.7-29.3-25.7c-10.6,0-15.6,7.1-15.6,12.6c0,10.1,11.6,14.1,23.7,19.2c14.6,6.1,31.8,13.6,31.8,32.8C788.4,125.6,773.3,139.2,749.6,139.2 M799.5,49.9c-1.5,0-2-4-0.5-5c10.6-9.6,28.2-25.7,37.8-35.8c0.5-0.5,4,0,4,1v29.8h34.3c1,0,1,9.6,0,9.6h-34.3v56c0,12.6,7.6,18.2,15.6,18.2c6.1,0,12.6-5,15.6-11.1c0-0.5,4,1.5,4,2c-4,13.6-17.2,24.2-31.8,24.2c-15.6,0-28.2-10.1-28.2-29.8v-59L799.5,49.9L799.5,49.9z M958.9,66.1c-3,0-10.6-9.1-16.1-9.1c-2.5,0-5.5,1.5-8.1,4c-4,4-7.6,13.6-7.6,21.7v24.2c0,22.2,3.5,22.7,15.1,24.2c0,0,0.5,5,0,5h-53.5c-0.5,0-0.5-5,0-5c12.1-2,13.6-2.5,13.6-24.2V70.1c0-21.7-2.5-23.2-15.6-25.2c-1,0-0.5-5,0-5h38.8v25.2h1c1-3,3-6.6,4.5-10.1c7.1-11.6,15.6-18.7,24.7-18.7c8.6,0,15.6,6.6,15.6,13.6C972,58,961.4,66.1,958.9,66.1 M1063.3,79.2l-32.8,84.2c-11.6,29.8-22.2,35.8-36.3,35.8c-8.1,0-17.2-4-17.2-6.6c-0.5-4,5-18.7,8.1-18.7c1,0,13.1,5.5,19.2,5.5c8.6,0,14.1-5.5,18.7-17.7l6.1-16.1c-2-8.1-26.2-61-29.3-68.1c-6.1-14.1-10.1-25.2-14.1-29.3c-2.5-2.5-5-3.5-12.1-4.5c-0.5,0-0.5-5,0-5c6.6,0,20.2,0.5,27.7,0.5s20.7-0.5,27.2-0.5c0.5,0,0.5,5,0,5c-15.1,2-13.6,7.1-5.5,27.2l17.7,42.9l14.1-36.8c5-12.6,7.6-20.2,7.6-24.7c0-5.5-3.5-7.6-14.1-8.1c-0.5,0-0.5-5.5,0-5.5c7.1,0,16.1,0.5,22.2,0.5c4.5,0,9.1-0.5,17.7-0.5c0.5,0,1,5.5,0,5.5c-5.5,0.5-8.1,2-11.1,5C1072.9,53.5,1069.9,61.5,1063.3,79.2L1063.3,79.2z"/><path class="st1" d="M150.8,33.3c-17.7-19.2-35.3-16.1-38.3-15.6c1.5,0.5,3,33.8,21.7,51.4c12.6,11.6,38.3,7.6,38.3,7.6S168,52,150.8,33.3 M172,98.4c-5.6,0-28.2,2-43.4,20.7c-15.6,19.7-15.1,35.3-18.7,38.8c3,1,34.8,4,48.4-16.6C171.5,122.1,172,101.4,172,98.4 M33.8,84.7c3.5,0.5,15.6,16.1,37.3,18.2c23.7,2.5,31.8-9.6,32.3-9.6c0-1.5-19.2-22.2-40.4-22.2C48.4,71.6,33.8,84.7,33.8,84.7 M120.1,95.3c-0.5,0.5-20.2,26.7-66.6,19.7C16.1,109,2.5,88.3,0,87.8c3-4,31.3-26.7,64.1-26.2c32.3,1,56,19.2,56,19.2h20.7c-16.6-5-36.8-14.1-45.9-34.3C86.8,27.7,88.3,16.6,84.7,1c0,0,37.3-3,66.1,15.6c26.2,17.1,40.9,62.5,41.4,64.1h16.1L204.8,0L225,0.5c-3.5,21.2,1,172.5,0,172.5c-2,0.5-19.2,1.5-20.7-2.5c0,0,4-74.1,4.5-75.7h-15.6c0,1-1.5,42.9-33.3,65.1c-31.8,22.2-77.7,15.6-77.7,15.6c5.6-8.6,0-17.7,16.1-42.4c18.7-28.2,43.4-38.3,42.9-38.3C139.7,95.3,120.6,95.3,120.1,95.3"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
src/logos/AndroidForums.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

1
src/logos/AntiPublic.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 206.5 218" overflow="scroll" xml:space="preserve"><path fill="none" stroke="#FFFFFF" stroke-width="8" stroke-miterlimit="10" d="M197.5,214H9c-2.8,0-5-2.3-5-5V9c0-2.8,2.3-5,5-5 h188.5c2.8,0,5,2.3,5,5v200C202.5,211.8,200.3,214,197.5,214z"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="34" x2="173.5" y2="34"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="64" x2="173.5" y2="64"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="93" x2="173.5" y2="93"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="124" x2="173.5" y2="124"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="154" x2="173.5" y2="154"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="184" x2="173.5" y2="184"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="826.166px" height="796.729px" viewBox="0 0 826.166 796.729" xml:space="preserve"><path fill="#FFFFFF" d="M376.173,1.74c11.36-0.96,22.76-1.65,34.17-1.68c-26.36,34.47-55.4,66.88-86.8,96.82 c-18.37,17.43-37.74,33.86-58.62,48.23c-11.89,8.31-24.63,15.32-36.63,23.48c-46.22,30.84-86.1,71.18-115.94,118.09 c-25.86,40.76-44.43,86-55.82,132.87c-5.6,22.64-9.51,45.67-12.84,68.75c-3.35,25.6-1.69,51.5,0.04,77.16 c0.86,11.01,1.88,22.01,2.92,33.01c-43.25-80.97-56.78-177.03-39.12-267c13.52-70.72,46.76-137.38,94.4-191.29 c23.34-26.45,50.06-49.9,79.32-69.61C239.003,31.63,306.733,7.52,376.173,1.74L376.173,1.74z"/><path fill="#FFFFFF" d="M410.653,0c7.74,0.13,15.52-0.33,23.22,0.78c-6.53,21.24-11.85,42.83-16.62,64.53 c-4.5,20.09-10.54,39.95-19.59,58.5c-15.6,32.67-40.96,60.11-70.89,80.22c-29.9,20.04-57.49,43.66-81.14,70.83 c-23.57,27.13-42.91,57.98-56.78,91.15c-17.41,41.94-26.24,87.11-28.61,132.36c-1.1,24.35-0.11,48.729,0.6,73.08 c2.13,56.159,5.61,112.26,9.67,168.31c-10.37-14.07-19-29.35-26.92-44.9c-18.21-36.46-31.74-75.369-38.88-115.539 c-12.78-72.721-5.7-149.311,22.7-217.661c20.25-49.52,51.31-94.21,88.55-132.45c21.04-21.75,44.03-41.54,67.98-60.02 c11.13-8.77,22.72-17.1,32.58-27.36c15.73-16.23,29.26-34.42,41.9-53.12C377.633,60.25,394.833,30.47,410.653,0L410.653,0z"/><path fill="#FFFFFF" d="M441.163,0.92c38.93,2.99,77.64,10.55,114.31,24.15c68.261,24.78,129.7,67.94,176.141,123.77 c45.02,53.8,75.93,119.39,88.109,188.52c12.67,69.97,6.561,143.22-17.489,210.14c-30.351,84.24-89.271,157.79-164.78,205.899 c4.479-22.329,10.899-44.229,16.79-66.22c3.7-13.05,7.14-26.189,11.55-39.03c3.87-12.229,6.06-26.04,0.7-38.18 c-2.471-5.96-7.43-11.95-14.33-12.32c-6.95-0.81-13.08,3.04-19.18,5.7c0-4.37-1.58-9.109,0.77-13.14c2.84-5.94,5.1-12.28,5.68-18.86 c0-7.51-4.439-14.84-11.14-18.29c8.85-1.8,17.64-3.87,26.51-5.59c-0.97-3.49-2.03-6.939-3.189-10.37 c-10.58-4.77-21.101-9.67-31.65-14.51c-4.22,2.02-8.43,4.05-12.64,6.07c4.359,6.76,8.71,13.54,13.02,20.33 c-5.34-1.37-11.1-1.851-16.27,0.409c-7.54,2.641-13.53,8.391-18.07,14.82c-1.17,1.83-2.91,3.12-4.78,4.18 c0.351-11.39-0.47-22.92-3.569-33.92c-1.15-3.58-2.45-7.68-5.971-9.609c-7.659-4.48-16.6-8.101-25.619-6.33 c-5.2,0.649-9.551,4.04-12.811,7.96c-5,6.04-8.6,13.16-10.92,20.64c-0.31-14.26,1.03-28.46,1.71-42.67 c1.61-30.05,3.64-60.07,4.88-90.14c1.311-13.05,3.21-26.03,4.75-39.05c0.9-8.31,2.78-16.59,2.061-24.99 c-0.101-6.37-2.94-12.22-5.811-17.75c-1.59-2.92-3.39-6.16-6.689-7.36c-3.95-1.36-8.37-1.36-12.341-0.15 c-2.979,1.34-4.46,4.46-5.949,7.16c-2.21,4.41-5.051,8.53-6.58,13.26c-7.21,22.34-7.641,46.06-12.69,68.85 c-7.74,56.6-15.43,113.22-22.78,169.87c-4.27,26.24-11.12,52.38-10.3,79.17c0.09,10.5,5.15,19.95,7.62,29.96 c9.21,33.51,11.65,69.51,3.17,103.43c-12.47-6.29-24.01-14.239-35.71-21.83c-29.83-19.92-58.39-41.93-83.98-67.119 c-8.86-8.891-17.61-18.091-23.94-29.021c-12.47-20.97-19.25-44.729-24.15-68.47c-8.15-41.07-10-83.13-9.02-124.9 c0.26-10.31,0.75-20.609,1.54-30.88c20.67,0.51,41.31,1.74,61.99,1.63c16.35,0.98,32.74,0.5,49.07-0.479 c14.9-1.61,30.47,0.01,44.72-5.521c13.04-5.01,22.31-16.97,26.85-29.85c4.2-14.5-6.92-28.35-3.689-42.91 c2.14-7.65,9.14-12.22,13.779-18.23c4.721-6.46,11.391-12.33,12.17-20.79c0.03-7.95-5.42-14.46-10.199-20.28 c8.47-6.56,16.689-14.93,18.869-25.8c1.141-4.91-3.22-8.26-6-11.58c-4.649-5.57-11.029-9.72-14.47-16.25 c-1.439-2.75,0.37-5.77,1.88-8.06c5.25-6.9,12.74-11.69,20.36-15.59c8.1-4.04,16.71-9.41,19.79-18.43 c2.34-5.5,0.18-11.55-2.59-16.45c-5.021-8.42-11.811-15.58-17.95-23.16c-18.88-23.04-36.71-46.91-55.01-70.41 c8.02,0.95,16.569,2.03,24.26-1.13c4.53-2,8.33-5.48,10.75-9.8c-0.59-0.42-1.771-1.25-2.351-1.66 c-8.819,1.66-18.55,3.85-26.899-0.72c-7.99-3.97-11.12-13.23-11.75-21.57c-1.561-21.03,3.8-41.99,1.21-63.01 C442.393,9.94,441.553,5.46,441.163,0.92L441.163,0.92z"/><path fill="#FFFFFF" d="M594.193,561.07c5.979-4.37,13.38-7.671,20.939-6.15c5.83,1.31,11.88,3.979,15.42,9.01 c3.61,5.601,2.221,12.55,0.271,18.47c-0.59-6.04,0.38-13.579-5.13-17.71c-5.641-4.109-12.4-7.899-19.63-7.069 C601.913,557.97,598.113,559.84,594.193,561.07L594.193,561.07z"/></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

1
src/logos/AstroPID.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
src/logos/Aternos.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1048.73 178.8"><defs><style>.a{isolation:isolate;}.b,.c{fill:#e43626;}.c{fill-rule:evenodd;}.d{fill:#333;}</style></defs><title>autocentrum-pl-logo</title><g class="a"><rect class="b" x="115.33" y="-10.6" width="22.11" height="126.43" transform="translate(-0.29 104.68) rotate(-45)"/></g><g class="a"><rect class="b" x="63.17" y="115.33" width="126.43" height="22.11" transform="translate(-52.45 126.28) rotate(-45)"/></g><g class="a"><rect class="b" x="54.02" y="112.59" width="22.11" height="52.51" transform="translate(-79.22 86.58) rotate(-45)"/></g><g class="a"><rect class="b" x="-10.6" y="41.56" width="126.43" height="22.11" transform="translate(-21.89 52.52) rotate(-45)"/></g><g class="a"><polygon class="c" points="66.49 84.47 74.33 92.31 52.29 114.34 66.9 128.95 88.94 106.92 96.78 114.76 101.62 79.63 66.49 84.47"/></g><g class="a"><path class="b" d="M223.37,53.69l-32.92,76.19h18.09l7.08-16.46h31.94l7.09,16.46h18.09L239.83,53.69H223.37Zm-1.31,44.8,9.59-22.13,9.48,22.13H222.06Zm102.46-2.72q0,9.16-4.2,14.44a13.77,13.77,0,0,1-11.39,5.29,13.92,13.92,0,0,1-11.45-5.29q-4.25-5.29-4.25-14.44V53.69h-17V96.3q0,16.46,9.21,25.4t23.49,8.94q14.28,0,23.44-8.88t9.16-25.45V53.69h-17V95.76ZM350.68,68.4h21.58v61.48h17V68.4h21.58V53.69H350.68V68.4Zm132.43-5.18q-11.55-11.28-28.45-11.28T426.22,63.22Q414.66,74.5,414.67,91.29t11.55,28.07q11.55,11.28,28.45,11.28t28.45-11.28q11.55-11.28,11.55-28.07T483.12,63.22ZM470.8,108.68a21.67,21.67,0,0,1-32.15,0,24.73,24.73,0,0,1-6.54-17.33A24.93,24.93,0,0,1,438.65,74a21.56,21.56,0,0,1,32.15,0,24.93,24.93,0,0,1,6.54,17.39A24.73,24.73,0,0,1,470.8,108.68Z" transform="translate(-0.1 -0.1)"/></g><g class="a"><path class="d" d="M545.36,68.18q12,0,20.06,10l10.57-12Q563.35,51.94,544.6,51.94q-16.79,0-28.39,11.34T504.6,91.56q0,17,11.39,28.07t29,11.12q17.6,0,30.57-14.61l-10.9-11.23a25.09,25.09,0,0,1-20.49,9.92,21.22,21.22,0,0,1-15.59-6.43q-6.43-6.43-6.43-17.06T529,74.45A23.37,23.37,0,0,1,545.36,68.18ZM603.79,99H637.9V84.53H603.79V68.84h37.93V53.69H586.78v76.19h56.14v-15H603.79V99Zm105.4,3.71L671.8,53.69H655.89v76.19h17V82.13l36.3,47.74h17V53.69h-17v49.05ZM736.44,68.4H758v61.48h17V68.4H796.6V53.69H736.44V68.4ZM868.65,79q0-13.3-7.58-19.29t-25.34-6H806.85v76.19h17V105.57h11.77l16.89,24.31h20.93l-19.29-27.25Q868.65,97.29,868.65,79Zm-20.49,9q-3.16,2.84-11.88,2.83H823.85V68.29h12.75q8.17,0,11.45,2.29T851.32,79Q851.32,85.19,848.16,88Zm82.95,7.74q0,9.16-4.2,14.44a13.77,13.77,0,0,1-11.39,5.29,13.92,13.92,0,0,1-11.45-5.29q-4.25-5.29-4.25-14.44V53.69h-17V96.3q0,16.46,9.21,25.4t23.49,8.94q14.28,0,23.43-8.88t9.16-25.45V53.69h-17V95.76Zm94.83-42.07-19.73,41.86L986.59,53.69h-23v76.19h17v-48l20.49,41.64h10.14l20.6-41.64v48h17V53.69h-22.89Z" transform="translate(-0.1 -0.1)"/></g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

1
src/logos/Avast.svg Normal file
View File

@@ -0,0 +1 @@
<svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48.3 48.3" xml:space="preserve"><path fill="#F6891F" d="M45.8,33.6c-1.4-1.4-3.2-2.2-5-2.5c-1.5-0.2-2.9-0.9-4.1-2.1c-1.6-1.6-2.3-3.7-2.1-5.8 c0.1-1.6,0.1-3.3,0-4.7c-0.2-1.7,0.6-3.4,1.9-4.5c0.8-0.6,1.7-1,2.6-1.2c1.4-0.1,2.8-0.8,3.9-1.8c2.5-2.5,2.5-6.6,0-9.1 c-2.5-2.5-6.6-2.5-9.1,0c-1.1,1-1.7,2.4-1.8,3.7c-0.1,1.1-0.7,2.2-1.6,3c-1.2,1.2-2.8,1.8-4.3,1.6c-2.9-0.4-3.3-0.4-6.4-0.1 c-1.7,0.2-2.2-0.5-2.6-1.3c-0.2-0.4-0.3-0.9-0.2-1.3c0.1-0.7,0-1.4-0.4-2c-0.8-1.5-2.7-2-4.2-1.1c-1.5,0.8-2,2.7-1.1,4.2 c0.4,0.6,0.9,1.1,1.5,1.3c0.5,0.2,0.9,0.6,1.2,1.1c0.4,0.7,0.7,1.5-0.3,2.6c-2.7,2.9-3.9,6.5-3.5,10.1c0.2,1.7-1.1,2.3-2.3,2.8 c-0.7,0.2-1.4,0.3-2,0.2c-1-0.2-2.1-0.2-3,0.3c-2.3,1.1-3.2,3.8-2.2,6.1c1.1,2.3,3.8,3.2,6.1,2.1c1-0.5,1.7-1.2,2.1-2.1 c0.4-0.7,1-1.3,1.8-1.7c1.1-0.5,2.9-0.6,3.8,0.1c2.6,2.2,5.9,3.2,9.1,2.9c2.2-0.2,4.5,0.7,6.1,2.6c0.9,1,1.4,2.2,1.6,3.4 c0.2,1.9,1,3.7,2.5,5.2c3.4,3.4,8.8,3.4,12.2,0C49.1,42.4,49.1,37,45.8,33.6 M27.9,28.1c-3.2,3.2-8.5,3.2-11.8,0 c-3.2-3.2-3.2-8.5,0-11.8c3.2-3.2,8.5-3.2,11.8,0C31.1,19.5,31.1,24.8,27.9,28.1"/><path fill="#FFFFFF" d="M22,17c-2.9,0-5.2,2.3-5.2,5.2c0,2,1.2,3.9,2.9,4.6c1.9,0.8,3.8-0.2,3.8-2c-0.1,0-1.5,0-1.5,0 c-1.4,0-2.6-1.2-2.6-2.6c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6c0,0,0,1.8,0,1.8l0,0c0,0.9,0,1.7,0,2.6c1.4,0,2.6-1.2,2.6-2.6 c0,0,0-1.8,0-1.8C27.2,19.3,24.9,17,22,17z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
src/logos/BTCE.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

1
src/logos/BTSec.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="413.9px" height="167.9px" viewBox="0 0 413.9 167.9" xml:space="preserve"><g id="Layer_1"><g><path fill="#F99C31" d="M104,2.5C59.1-8.7,13.7,18.6,2.5,63.5c-11.2,44.9,16.1,90.3,61,101.5c44.9,11.2,90.3-16.1,101.5-61 C176.1,59.1,148.8,13.7,104,2.5z M120.6,71.8c-1.2,8.2-5.7,12.1-11.7,13.5c8.2,4.3,12.4,10.9,8.4,22.3 c-5,14.2-16.7,15.4-32.4,12.4l-3.8,15.2l-9.2-2.3l3.8-15c-2.4-0.6-4.8-1.2-7.3-1.9l-3.8,15.1l-9.2-2.3l3.8-15.3 c-2.1-0.5-4.3-1.1-6.6-1.7l-12-3l4.6-10.5c0,0,6.8,1.8,6.7,1.7c2.6,0.6,3.8-1.1,4.2-2.2l6-24.1c0.3,0.1,0.7,0.2,1,0.2 c-0.4-0.1-0.7-0.2-1-0.3l4.3-17.2c0.1-2-0.6-4.4-4.3-5.3c0.1-0.1-6.7-1.7-6.7-1.7l2.4-9.8l12.7,3.2l0,0c1.9,0.5,3.9,0.9,5.9,1.4 l3.8-15.1l9.2,2.3l-3.7,14.8c2.5,0.6,4.9,1.1,7.4,1.7l3.7-14.7l9.2,2.3l-3.8,15.1C113.8,54.7,122.3,60.7,120.6,71.8z M83.3,57.1 l-4.6,18.3c5.2,1.3,21.2,6.6,23.8-3.8C105.2,60.8,88.5,58.4,83.3,57.1z M76.4,84.7l-5,20.2c6.2,1.5,25.4,7.7,28.3-3.7 C102.6,89.3,82.6,86.3,76.4,84.7z"/></g><path fill="#EDE7DE" d="M413.9,152.7c0,8.4-6.8,15.1-15.1,15.1H198c-8.4,0-15.1-6.8-15.1-15.1V15.4c0-8.4,6.8-15.1,15.1-15.1h200.7 c8.4,0,15.1,6.8,15.1,15.1V152.7z"/><path fill="#BEBDB0" d="M413.9,20.1v132.6c0,8.4-6.8,15.1-15.1,15.1h-18.4l-84.4-61.6L413.9,20.1z"/><polygon fill="#ACABA1" points="219.5,167.9 413.9,25.9 413.9,20.1 211.5,167.9 "/><path fill="#B32317" d="M413.9,15.4v137.3c0,1.5-0.2,2.9-0.6,4.3c-1.8,6.3-7.6,10.9-14.5,10.9h-11.2V8l0.7-0.5l9.8-7.1h0.7 C407.1,0.3,413.9,7.1,413.9,15.4z"/><path fill="#E8503E" d="M398.7,0.3H398l-9.8,7.1L387.6,8l-88.4,64.6l-90-65.7l-8.9-6.5H198c-8.4,0-15.1,6.8-15.1,15.1v8.2v129.1 c0,1.5,0.2,2.9,0.6,4.3c1.8,6.3,7.6,10.9,14.5,10.9h11.2v-125l65.3,47.7l21.5,15.7l4,2.9l24.7-18l63-46l0.7-0.5l25.6-18.7V15.4 C413.9,7.1,407.1,0.3,398.7,0.3z"/></g><g id="Layer_2"></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

1
src/logos/Badoo.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1134.2 326.3" style="enable-background:new 0 0 1134.2 326.3;" xml:space="preserve"><style type="text/css"> .st0{fill:#49B719;} .st1{fill:#006FBC;} .st2{fill:#FF7700;} .st3{fill:#00B9F4;} .st4{fill:#FF3B00;}</style><g><g><path class="st0" d="M625.4,2.9c5.9-3.6,13.5-3.7,19.8-1.1c5.6,2.3,8.9,8.5,8.6,14.4c0,35,0,70,0,105c0,22,0,44,0,66 c-0.9,15.6-3.8,31.3-10.7,45.4c-6.7,14.5-16.8,27.6-29.5,37.4c-15.8,12.6-35.7,19.8-55.8,21.4c-17.9,1.1-35.8-3.5-51.7-11.4 c-23.1-12.1-41.5-33.2-49.7-58c-8.1-24.4-7-51.5,2.5-75.4c4.9-12,12.5-22.7,21.5-31.9c10-10.6,22.3-18.8,35.8-24.2 c16.4-5.9,34.3-8.3,51.6-5.3c19,2.6,36.9,11.5,51.2,24.2c0.1-31.4,0-62.8,0-94.3C619,10.4,621.2,5.4,625.4,2.9z M542,120.5 c-15.3,2.4-29.9,10.1-39.8,22.1c-10.6,11.9-16.4,27.7-16.9,43.6c-0.1,15.3,4.3,30.8,13.8,43c9.6,12.4,23.2,22,38.7,25.3 c16.1,3.8,33.6,1,47.8-7.3c14.1-8.5,25.3-21.9,30.1-37.8c5.8-17.9,4-38.1-5-54.8c-7-12.6-17.9-23.3-31.2-29.1 C567.8,120.3,554.6,118.4,542,120.5z"/></g></g><g><g><path class="st1" d="M8.1,2.6c5.8-2.5,12.6-2.5,18.4-0.2c5,2,8.3,7.3,8.3,12.7c0.1,27.6-0.1,55.2,0.1,82.7 c12.8-13.4,28.3-24.2,45.5-31c34-12.6,73.7-10.7,105.3,7.5c27.7,15.9,49.8,42.1,58.9,72.9c3.6,12,5.6,24.5,6,37 c-0.3,28.3-9,56.9-26.5,79.3c-18.6,24.2-46.1,41.2-76.2,46.5c-24.6,5-50.3,1-73.2-8.7C47.4,289.2,24.9,267,12.2,240 c-7.1-15.6-11-32.7-11.7-49.8c0.1-30.4-0.4-60.7-0.3-91c0.2-28-0.5-56-0.2-84.1C0.2,9.9,3.2,4.7,8.1,2.6z M115,94.6 c-13.1,1.5-25.9,5.8-37.1,12.8c-10.6,6.5-19.3,15.5-26.7,25.4c-23,32-21.5,79.3,3.3,109.8c7,8.6,15.4,16.2,24.8,22 c17.9,10.8,39.8,15,60.5,11.6c17.9-2.8,34.9-11.3,47.7-24.1c14.6-13.9,24.4-32.8,27.3-52.8c2.8-16.8,0.3-34.2-6.1-49.9 c-6.6-15.4-17.7-28.8-31.1-38.8C159.8,97.5,136.9,92,115,94.6z"/></g></g><g><g><path class="st2" d="M742.2,63.7c34.8-23.9,80.7-29.3,120.6-16.4c46.6,15.2,83.4,56.8,93,104.9c2.1,10.2,3.4,20.6,3.5,31.1 c-0.4,20-4.1,40-12.1,58.4c-10.7,24.9-28.5,46.9-51.3,61.7c-17.3,11.5-37.4,18.6-58,21.5c-21.3,3.3-43.2,0.6-63.6-6.1 c-30.8-9.9-57.2-31.6-74-59.1c-13.5-21.6-20.2-47-21.3-72.3c-0.4-22.6,4.2-45.4,13.7-66C703.7,98.1,721.2,78.3,742.2,63.7z M761.8,92.3c-16.9,11.3-30.8,27.3-39.1,46c-6.6,15.4-9.9,32.2-9.5,49c1.1,18.3,5.8,36.6,15.4,52.4c10.6,17.9,26.5,32.7,45.4,41.5 c15.6,7,32.7,11,49.9,10.3c15.3-1,30.3-5.2,44-12.1c17.2-9,31.9-22.7,41.8-39.4c9.6-15.9,14.5-34.3,15.6-52.8 c0.5-26.1-7.5-52.8-24.4-72.9c-12-14.8-28.2-26.1-46-32.8C824.3,70.8,788.7,74.2,761.8,92.3z"/></g></g><g><g><path class="st3" d="M325.5,108.1c17.9-6,38.2-5,55.3,3.1c15.7,7.4,28,20.8,35.8,36.2c5.7,11.8,8.2,24.9,8,37.9 c0,12.3,0,24.7,0,37c0,8,0,16,0,24.1c0,5.3-2,11-6.8,13.8c-4.7,3-10.6,2.6-16,2.1c-6.8-1.1-10.9-7.7-11.9-14 c-12,8.1-26.6,12.8-41.2,12.4c-18.6,0.1-37.1-7.6-50.3-20.8c-11.8-11.2-19.9-26.3-22.7-42.4c-3.3-16.7-0.9-34.4,6.4-49.8 C291,129.6,306.4,114.4,325.5,108.1z M341.2,136.8c-5.5,1.2-10.8,3.2-15.6,6.2c-9.3,5.6-15.6,15.4-18.4,25.7 c-1.6,6.3-3.2,12.9-1.8,19.3c1.9,13.6,8.8,27.4,21.3,34.1c9.4,4.9,20.5,8.2,31,5.3c12.4-2.5,24-9.9,29.9-21.4 c5-10.1,8-21.8,5.1-32.9c-2.4-12.8-9.7-25.2-21.6-31.3C362,137.3,351.3,134.1,341.2,136.8z"/></g></g><g><g><path class="st4" d="M1013.2,122.7c24.5-19.9,62.2-21,88-3c11.7,8.1,21.1,19.8,26.8,32.9c12.7,29.4,5.5,66.7-18.9,87.9 c-20,19.3-51.5,24.3-77.1,14.3c-14.2-5.4-26.1-15.8-34.7-28.2c-14.7-21.4-17.1-50.3-6.9-74.1 C995.4,140.9,1003.5,130.8,1013.2,122.7z M1052.3,138.8c-10.5,1.9-20.7,6.9-27.4,15.4c-6.4,8.3-9.5,18.7-10.2,29 c0.7,9.9,3.4,19.9,9.3,27.9c6.7,9.6,18,14.9,29.3,16.9c7.7,1.8,15.7-0.5,23-3.1c11.5-4.3,20.7-13.9,24.4-25.7 c2.3-7.3,4.4-15.1,2.5-22.6c-2.2-13.6-9.9-26.9-22.7-33.1C1071.8,139.5,1061.8,136.6,1052.3,138.8z"/></g><path class="st4" d="M747.6,170c4.5-7.7,13.6-11.6,22.2-11.8c7.6,0.4,15.4,3.7,19.8,10.1c3.8,5.4,5.8,12.3,4.8,18.9 c-1.2,8.8-6.4,17.5-14.9,20.9c-8.5,4-18.9,2.2-26.2-3.4c-5.4-4.2-8.2-10.8-9.4-17.4C742.9,181.3,744.7,175.2,747.6,170z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

1
src/logos/Bell.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="643.4px" height="368.6px" viewBox="0 0 643.4 368.6" xml:space="preserve"><g><path fill="#0066A4" d="M478.1,212.8c-3.4-16.3-9.8-29.8-19.2-42.1c-19.1-25.2-50-41.1-91.9-41.1c-65.1,0-105.1,44.2-117,90.8 c-10.6-32.9-39.1-55-69.2-64.4c22.7-16.5,34.5-40.1,34.5-67.1c0-25-10.4-47.8-27.9-62.6C161.9,4.4,127,0,84,0C51,0,38.6,0,0,0 v362.8c23.8,0,48.3-0.1,72.1,0c21.2,0.1,41.9,0,61.3-0.8c61.2-2.5,103-33.2,116.4-79.5c4.6,20.6,13.5,37.3,25,50 c23.6,25.9,57.7,36.1,92.1,36.1c42.3,0,73-12.3,93.9-31.1l-29.9-35.2c-15.1,11.4-34.4,18.1-56.2,18.1 c-42.6-0.1-61.4-27.1-63.1-53.1h166.5v95.5h62.4V1.8h-62.4V212.8z M64.1,49l17.3,0c16.7,0,30,1.8,39.5,5.5 c18.8,7.3,27.7,22.2,27.7,40.9c0,15.8-6,40.6-39.2,47.4c-5.6,1.1-13.6,1.8-24.9,1.8c-16,0-20.5,0-20.5,0V49z M134.6,309.7 c-7.8,1.4-17.4,1.7-25.1,1.7c-23.5,0-45.4,0-45.4,0l0-118.3c0,0,23.8,0,40.6,0c12.8,0,27.3,1.4,35.6,3.6 c28.5,7.5,44.9,27.9,44.9,55C185.2,279.7,170.2,303.3,134.6,309.7z M312.7,222.2c5.5-26.4,25-45.4,53.8-45.4c28.8,0,48,17,53,45.4 H312.7z"/><rect x="582.1" y="1.8" fill="#0066A4" width="61.3" height="360.9"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

1
src/logos/Bell2017.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="643.4px" height="368.6px" viewBox="0 0 643.4 368.6" xml:space="preserve"><g><path fill="#0066A4" d="M478.1,212.8c-3.4-16.3-9.8-29.8-19.2-42.1c-19.1-25.2-50-41.1-91.9-41.1c-65.1,0-105.1,44.2-117,90.8 c-10.6-32.9-39.1-55-69.2-64.4c22.7-16.5,34.5-40.1,34.5-67.1c0-25-10.4-47.8-27.9-62.6C161.9,4.4,127,0,84,0C51,0,38.6,0,0,0 v362.8c23.8,0,48.3-0.1,72.1,0c21.2,0.1,41.9,0,61.3-0.8c61.2-2.5,103-33.2,116.4-79.5c4.6,20.6,13.5,37.3,25,50 c23.6,25.9,57.7,36.1,92.1,36.1c42.3,0,73-12.3,93.9-31.1l-29.9-35.2c-15.1,11.4-34.4,18.1-56.2,18.1 c-42.6-0.1-61.4-27.1-63.1-53.1h166.5v95.5h62.4V1.8h-62.4V212.8z M64.1,49l17.3,0c16.7,0,30,1.8,39.5,5.5 c18.8,7.3,27.7,22.2,27.7,40.9c0,15.8-6,40.6-39.2,47.4c-5.6,1.1-13.6,1.8-24.9,1.8c-16,0-20.5,0-20.5,0V49z M134.6,309.7 c-7.8,1.4-17.4,1.7-25.1,1.7c-23.5,0-45.4,0-45.4,0l0-118.3c0,0,23.8,0,40.6,0c12.8,0,27.3,1.4,35.6,3.6 c28.5,7.5,44.9,27.9,44.9,55C185.2,279.7,170.2,303.3,134.6,309.7z M312.7,222.2c5.5-26.4,25-45.4,53.8-45.4c28.8,0,48,17,53,45.4 H312.7z"/><rect x="582.1" y="1.8" fill="#0066A4" width="61.3" height="360.9"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="296.5px" height="159.2px" viewBox="0 0 296.5 159.2" xml:space="preserve">
<g> <polygon fill="none" stroke="#D6D6D7" points="77,56 104,42.1 104,14.4 77,0.6 50,14.4 50,42.1 "/> <polygon fill="#D6D6D7" points="141,56 168,42.1 168,14.4 141,0.6 114,14.4 114,42.1 "/> <polygon fill="#D6D6D7" points="205,56 232,42.1 232,14.4 205,0.6 178,14.4 178,42.1 "/> <polygon fill="none" stroke="#D6D6D7" points="269,56 296,42.1 296,14.4 269,0.6 242,14.4 242,42.1 "/> <polygon fill="#D6D6D7" points="109,103.5 136,89.6 136,61.9 109,48.1 82,61.9 82,89.6 "/> <polygon fill="#D6D6D7" points="173,103.5 200,89.6 200,61.9 173,48.1 146,61.9 146,89.6 "/> <polygon fill="#D6D6D7" points="237,103.5 264,89.6 264,61.9 237,48.1 210,61.9 210,89.6 "/> <polygon fill="none" stroke="#D6D6D7" points="141,151 168,137.1 168,109.4 141,95.6 114,109.4 114,137.1 "/> <path fill="none" stroke="#000000" d="M8.8,126.4"/> <path fill="none" stroke="#000000" d="M35.8,112.5"/> <path fill="none" stroke="#000000" d="M0,159.2"/> <path fill="none" stroke="#000000" d="M27,145.4"/> <g> <polygon fill="#149B49" points="193.7,65.1 193.7,86.4 173,97.1 173,75.8 "/> <polygon fill="#1F5329" points="152.2,65.1 173,54.5 193.7,65.1 173,75.8 "/> </g> <g> <polygon fill="#149B49" points="129.7,65.1 129.7,86.4 109,97.1 109,75.8 "/> <polygon fill="#1F5329" points="88.2,65.1 109,54.5 129.7,65.1 109,75.8 "/> </g> <g> <polygon fill="#149B49" points="161.7,17.6 161.7,38.9 141,49.6 141,28.3 "/> <polygon fill="#1F5329" points="120.2,17.6 141,7 161.7,17.6 141,28.3 "/> </g></g><g> <g> <path fill="#1F5329" d="M91.9,71.7l6.3,3.2c1.2,0.6,2.2,1.2,2.8,1.6c0.6,0.4,1.2,0.9,1.6,1.5c0.5,0.6,0.9,1.2,1.2,1.9 c0.3,0.7,0.5,1.4,0.5,2.1c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-0.9,0.6-1.6,0.6c1,0.8,1.7,1.6,2.2,2.5c0.5,0.9,0.8,1.8,0.8,2.8 c0,0.7-0.2,1.3-0.5,1.8c-0.3,0.5-0.8,0.8-1.4,0.9c-0.6,0.1-1.3,0-2.1-0.3c-0.5-0.2-1.8-0.8-3.8-1.8l-5.3-2.7V71.7z M95.1,75.9v3.6 l2.1,1.1c1.2,0.6,2,1,2.3,1.1c0.5,0.2,1,0.2,1.3,0.1c0.3-0.2,0.5-0.5,0.5-1c0-0.5-0.1-0.9-0.4-1.4c-0.3-0.4-0.7-0.8-1.2-1.2 c-0.3-0.2-1.2-0.7-2.7-1.4L95.1,75.9z M95.1,82.1v4.2l2.9,1.5c1.1,0.6,1.9,0.9,2.2,1c0.5,0.2,0.9,0.1,1.1,0 c0.3-0.2,0.4-0.5,0.4-1.1c0-0.5-0.1-0.9-0.3-1.4c-0.2-0.4-0.6-0.8-1-1.2c-0.4-0.4-1.4-0.9-2.8-1.7L95.1,82.1z"/> </g> <g> <path fill="#1F5329" d="M122.5,38.4V22.8l4.7,2.4l2.8,12.1l2.8-9.2l4.7,2.4v15.7l-2.9-1.5V32.3l-3.1,10.7l-3-1.6l-3.1-13.9v12.3 L122.5,38.4z"/> </g> <g> <path fill="#1F5329" d="M163.1,75.2l3.1,1.6v9.9c0,1.3-0.1,2.2-0.3,2.8c-0.3,0.8-0.9,1.2-1.7,1.3c-0.8,0.1-1.9-0.1-3.2-0.8 c-1.5-0.8-2.7-1.8-3.6-3.1s-1.3-2.8-1.3-4.4l3,1.2c0,0.9,0.2,1.6,0.4,2.1c0.3,0.7,0.9,1.3,1.6,1.6c0.7,0.4,1.2,0.4,1.5,0.2 c0.3-0.3,0.4-1,0.4-2.3V75.2z"/> </g></g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
src/logos/BinWeevils.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
src/logos/BiohackMe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/logos/BitTorrent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 208.7 21.2" overflow="scroll" xml:space="preserve"><path fill="#FFFFFF" d="M0,0h11.5c1.9,0,3.4,0.5,4.4,1.5s1.5,2.2,1.5,3.7c0,1.2-0.4,2.3-1.1,3.2c-0.5,0.6-1.2,1.1-2.1,1.4c1.4,0.4,2.5,1,3.1,1.9c0.7,0.9,1,2,1,3.3c0,1.1-0.2,2.1-0.7,2.9s-1.1,1.5-2,2c-0.5,0.3-1.3,0.5-2.3,0.7c-1.4,0.2-2.3,0.3-2.7,0.3H0V0z M6.2,8.2h2.7c1,0,1.6-0.2,2-0.5s0.6-0.8,0.6-1.5c0-0.6-0.2-1.1-0.6-1.4c-0.4-0.3-1-0.5-2-0.5H6.2V8.2z M6.2,16.4h3.1c1.1,0,1.8-0.2,2.2-0.6c0.4-0.4,0.6-0.9,0.6-1.6c0-0.6-0.2-1.1-0.6-1.5c-0.4-0.4-1.2-0.6-2.3-0.6H6.2V16.4z"/><path fill="#FFFFFF" d="M21.4,0h5.5v3.9h-5.5V0z M21.4,5.7h5.5v15.1h-5.5V5.7z"/><path fill="#FFFFFF" d="M37,0v5.7h3V10h-3v5.4c0,0.6,0.1,1.1,0.2,1.3c0.2,0.3,0.5,0.5,0.9,0.5c0.4,0,1-0.1,1.7-0.4l0.4,4c-1.4,0.3-2.6,0.5-3.8,0.5c-1.4,0-2.4-0.2-3-0.6c-0.6-0.4-1.1-0.9-1.4-1.7c-0.3-0.8-0.5-2-0.5-3.7V10h-2V5.7h2V3L37,0z"/><path fill="#FFFFFF" d="M53.4,14.9l5.2,0.6c-0.3,1.1-0.8,2.1-1.4,3s-1.5,1.5-2.5,2c-1,0.5-2.3,0.7-3.9,0.7c-1.5,0-2.8-0.1-3.8-0.4c-1-0.3-1.9-0.8-2.6-1.4c-0.7-0.7-1.3-1.5-1.7-2.4C42.2,16,42,14.9,42,13.4c0-1.6,0.3-2.8,0.8-3.9c0.4-0.8,0.9-1.4,1.5-2c0.6-0.6,1.3-1,2-1.3c1.1-0.5,2.4-0.7,4.1-0.7c2.3,0,4.1,0.4,5.4,1.3c1.2,0.9,2.1,2.2,2.6,3.9l-5.2,0.7c-0.2-0.6-0.5-1.1-0.9-1.5c-0.4-0.3-1-0.5-1.7-0.5c-0.9,0-1.6,0.3-2.2,1c-0.6,0.7-0.8,1.7-0.8,3.1c0,1.2,0.3,2.2,0.8,2.8c0.6,0.6,1.3,1,2.1,1c0.7,0,1.3-0.2,1.8-0.6C52.8,16.3,53.2,15.7,53.4,14.9z"/><path fill="#FFFFFF" d="M60.5,13.3c0-2.3,0.7-4.2,2.2-5.7c1.5-1.5,3.5-2.2,6-2.2c2.9,0,5,0.9,6.5,2.6c1.2,1.4,1.8,3.2,1.8,5.2c0,2.3-0.7,4.2-2.2,5.7c-1.5,1.5-3.5,2.2-6.1,2.2c-2.3,0-4.2-0.6-5.6-1.8C61.4,17.8,60.5,15.8,60.5,13.3z M66,13.3c0,1.3,0.3,2.3,0.8,3s1.2,1,2,1c0.8,0,1.4-0.3,2-1s0.8-1.7,0.8-3.1c0-1.3-0.3-2.3-0.8-2.9c-0.5-0.6-1.1-1-1.9-1c-0.8,0-1.5,0.3-2,1C66.3,11,66,12,66,13.3z"/><path fill="#FFFFFF" d="M79.8,0h5.5v3.9h-5.5V0z M79.8,5.7h5.5v15.1h-5.5V5.7z"/><path fill="#FFFFFF" d="M88.9,5.7H94v2.5c0.8-1,1.5-1.7,2.3-2.2c0.8-0.4,1.7-0.6,2.9-0.6c1.5,0,2.7,0.5,3.6,1.4c0.9,1,1.3,2.4,1.3,4.4v9.6h-5.5v-8.3c0-0.9-0.2-1.6-0.5-2s-0.8-0.6-1.4-0.6c-0.7,0-1.2,0.3-1.6,0.8c-0.4,0.5-0.6,1.5-0.6,2.9v7.3h-5.5V5.7z"/><path fill="#FFFFFF" d="M117,0h15.1v4.5h-9v3.6h7.7v4.2h-7.7v8.5H117V0z"/><path fill="#FFFFFF" d="M133.4,13.3c0-2.3,0.7-4.2,2.2-5.7c1.5-1.5,3.5-2.2,6-2.2c2.9,0,5,0.9,6.5,2.6c1.2,1.4,1.8,3.2,1.8,5.2c0,2.3-0.7,4.2-2.2,5.7c-1.5,1.5-3.5,2.2-6.1,2.2c-2.3,0-4.2-0.6-5.6-1.8C134.3,17.8,133.4,15.8,133.4,13.3z M138.9,13.3c0,1.3,0.3,2.3,0.8,3s1.2,1,2,1c0.8,0,1.4-0.3,2-1s0.8-1.7,0.8-3.1c0-1.3-0.3-2.3-0.8-2.9c-0.5-0.6-1.1-1-1.9-1c-0.8,0-1.5,0.3-2,1C139.2,11,138.9,12,138.9,13.3z"/><path fill="#FFFFFF" d="M152.6,5.7h5.2v2.5c0.5-1.1,1-1.8,1.5-2.2c0.5-0.4,1.2-0.6,2-0.6c0.8,0,1.7,0.3,2.7,0.8l-1.7,4.1c-0.6-0.3-1.2-0.4-1.5-0.4c-0.7,0-1.3,0.3-1.7,0.9c-0.6,0.9-0.9,2.5-0.9,5v5.1h-5.5V5.7z"/><path fill="#FFFFFF" d="M180.9,20.9h-5.1v-2.4c-0.8,1-1.5,1.7-2.3,2.1s-1.7,0.6-2.9,0.6c-1.5,0-2.7-0.5-3.6-1.4s-1.3-2.4-1.3-4.4V5.7h5.5v8.3c0,0.9,0.2,1.6,0.5,2c0.3,0.4,0.8,0.6,1.4,0.6c0.7,0,1.2-0.3,1.6-0.8c0.4-0.5,0.6-1.5,0.6-2.9V5.7h5.5V20.9z"/><path fill="#FFFFFF" d="M184.3,5.7h5.1V8c0.7-0.9,1.5-1.6,2.2-2c0.8-0.4,1.7-0.6,2.7-0.6c1.1,0,2.1,0.2,2.7,0.6c0.7,0.4,1.2,1.1,1.6,1.9c0.9-1,1.7-1.7,2.4-2c0.7-0.4,1.6-0.5,2.6-0.5c1.5,0,2.7,0.5,3.6,1.4s1.3,2.5,1.3,4.5v9.5h-5.5v-8.6c0-0.7-0.1-1.2-0.4-1.5c-0.4-0.5-0.8-0.8-1.4-0.8c-0.6,0-1.2,0.2-1.6,0.7s-0.6,1.3-0.6,2.4v7.8h-5.5v-8.3c0-0.7,0-1.1-0.1-1.4c-0.1-0.4-0.3-0.7-0.6-0.9c-0.3-0.2-0.6-0.3-1-0.3c-0.6,0-1.2,0.3-1.6,0.8c-0.4,0.5-0.6,1.3-0.6,2.5v7.7h-5.5V5.7z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

1
src/logos/Bitly.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
src/logos/BlackHatWorld.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

BIN
src/logos/Bolt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/logos/BotOfLegends.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

1
src/logos/Boxee.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="140.915px" height="140.916px" viewBox="0 0 140.915 140.916" xml:space="preserve"><path fill-rule="evenodd" fill="#87BF51" stroke="#87BF51" stroke-width="0.5" stroke-miterlimit="2.6131" d="M70.154,31.029c3.991,0,7.229,3.237,7.229,7.229c0,3.991-3.238,7.229-7.229,7.229c-3.992,0-7.229-3.237-7.229-7.229C62.926,34.266,66.163,31.029,70.154,31.029L70.154,31.029z"/><g><g><path fill-rule="evenodd" fill="#87BF51" d="M129.596,43.86c-6.123-6.122-13.824-9.704-21.793-10.748c-1.045-7.97-4.627-15.671-10.748-21.793c-14.76-14.759-38.698-14.759-53.458,0c-6.062,6.063-9.634,13.674-10.716,21.562c-7.888,1.082-15.499,4.654-21.562,10.716c-14.759,14.76-14.759,38.698,0,53.458c6.122,6.122,13.823,9.705,21.792,10.748c1.044,7.97,4.626,15.672,10.748,21.793c14.76,14.76,38.697,14.76,53.457,0l32.279-32.278C144.354,82.558,144.354,58.619,129.596,43.86z M38.119,77.422c-3.992,0-7.229-3.237-7.229-7.229c0-3.991,3.237-7.228,7.229-7.228c3.991,0,7.229,3.237,7.229,7.228C45.348,74.185,42.11,77.422,38.119,77.422z M49.634,38.257c0-11.331,9.189-20.52,20.52-20.52c11.331,0,20.52,9.189,20.52,20.52s-9.189,20.52-20.52,20.52C58.823,58.777,49.634,49.588,49.634,38.257z M109.893,77.715L109.893,77.715l-32.07,32.139c-1.951,1.951-4.646,3.158-7.623,3.158c-5.954,0-10.782-4.828-10.782-10.782c0-2.977,1.207-5.673,3.158-7.624l32.069-32.138v0c1.951-1.952,4.646-3.159,7.625-3.159c5.953,0,10.781,4.829,10.781,10.782C113.051,73.068,111.844,75.764,109.893,77.715z"/></g><g><path fill="none" stroke="#87BF51" stroke-width="0.5" stroke-miterlimit="2.6131" d="M129.596,43.86c-6.123-6.122-13.824-9.704-21.793-10.748c-1.045-7.97-4.627-15.671-10.748-21.793c-14.76-14.759-38.698-14.759-53.458,0c-6.062,6.063-9.634,13.674-10.716,21.562c-7.888,1.082-15.499,4.654-21.562,10.716c-14.759,14.76-14.759,38.698,0,53.458c6.122,6.122,13.823,9.705,21.792,10.748c1.044,7.97,4.626,15.672,10.748,21.793c14.76,14.76,38.697,14.76,53.457,0l32.279-32.278C144.354,82.558,144.354,58.619,129.596,43.86z M38.119,77.422c-3.992,0-7.229-3.237-7.229-7.229c0-3.991,3.237-7.228,7.229-7.228c3.991,0,7.229,3.237,7.229,7.228C45.348,74.185,42.11,77.422,38.119,77.422z M49.634,38.257c0-11.331,9.189-20.52,20.52-20.52c11.331,0,20.52,9.189,20.52,20.52s-9.189,20.52-20.52,20.52C58.823,58.777,49.634,49.588,49.634,38.257z M109.893,77.715L109.893,77.715l-32.07,32.139c-1.951,1.951-4.646,3.158-7.623,3.158c-5.954,0-10.782-4.828-10.782-10.782c0-2.977,1.207-5.673,3.158-7.624l32.069-32.138v0c1.951-1.952,4.646-3.159,7.625-3.159c5.953,0,10.781,4.829,10.781,10.782C113.051,73.068,111.844,75.764,109.893,77.715z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/logos/Brazzers.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
src/logos/CDProjektRed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/logos/COMELEC.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

BIN
src/logos/CafeMom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

BIN
src/logos/CashCrate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
src/logos/CheapAssGamer.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
src/logos/CivilOnline.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
src/logos/ClixSense.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
src/logos/CloudPets.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
src/logos/Coachella.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

1
src/logos/Comcast.svg Normal file
View File

@@ -0,0 +1 @@
<svg id="svg2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 76.92 44.18"><defs><style>.cls-1{fill:#f37021;}.cls-2{fill:#cc004c;}.cls-3{fill:#6460aa;}.cls-4{fill:#0089d0;}.cls-5{fill:#0db14b;}.cls-6{fill:#fcb711;}</style></defs><title>Comcast</title><g id="g3886"><g id="g3898"><path id="path3862" class="cls-1" d="M9,12.49a8.32,8.32,0,0,0,1.4,13.24l23,15.73L22.26,16C19.93,10,13.54,8.68,9,12.49"/><path id="path3864" class="cls-2" d="M28.8,0.11A8.17,8.17,0,0,0,22,11.39L33.48,38.5l4-28.51C38.46,2.9,33.09-.37,28.8.11"/><path id="path3866" class="cls-3" d="M39.33,8.9H41.5s1.16,0,1.32.55c-0.86.7-3.19,0.79-2.88,4.52L43.61,38.5,55.05,11.32A8.27,8.27,0,0,0,48.12,0L47.5,0c-3.91,0-8.4,2.84-8.18,8.9"/><path id="path3868" class="cls-4" d="M54.59,16.23L43.77,41.38l23-15.81c5.3-3.75,4.44-9.74,1.48-12.7a8.24,8.24,0,0,0-5.94-2.47c-2.86,0-5.91,1.51-7.68,5.82"/><path id="path3870" class="cls-5" d="M64.17,29.15l-21.57,15H69.15c5.45,0,9-5.61,7.39-10.75a8.3,8.3,0,0,0-7.71-5.77,8.44,8.44,0,0,0-4.68,1.49"/><path id="path3872" class="cls-6" d="M8.4,44.18H34.57L13,29.15C8,26,2.41,27.83.38,33.13a8.39,8.39,0,0,0,8,11.06"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
src/logos/CrackingForum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

1
src/logos/Creative.svg Normal file
View File

@@ -0,0 +1 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 866.3 160.5" style="enable-background:new 0 0 866.3 160.5;" xml:space="preserve"><style type="text/css">.st0{fill:#009BDC;}.st1{fill:#F3AA56;}</style><path class="st0" d="M866.3,105.2v26.7h-2.4c-0.5-1.8-1.2-3.1-2-3.8c-0.8-0.7-2-1-3.5-1h-93.6v-2.4c1.8-0.5,3-1.2,3.7-2c0.7-0.8,1.1-2,1.1-3.6V81.7l22.5,0V110h66.3c1.5,0,2.7-0.4,3.5-1.1c0.8-0.7,1.4-1.9,2-3.7L866.3,105.2L866.3,105.2z"/><path class="st0" d="M864.5,19v26.7h-2.4c-0.5-1.8-1.2-3-2-3.7c-0.8-0.7-2-1.1-3.5-1.1h-64.5v24.3l-22.5-0.1V31.7c0-1.6-0.4-2.7-1.1-3.6c-0.7-0.8-1.9-1.5-3.7-2v-2.4h91.8c1.5,0,2.7-0.4,3.5-1.1c0.8-0.7,1.5-2,2-3.7L864.5,19L864.5,19z"/><rect x="811.1" y="65.2" class="st0" width="18.9" height="16.7"/><path class="st0" d="M756.2,23.8v2.4c-2.2,0.3-3.8,0.9-4.6,1.9c-0.9,1-2.4,3.7-4.5,8.3l-35.9,77.3c-1.5,3.3-2.3,5.4-2.3,6.4c0,2.6,1.6,4.1,4.8,4.5v2.4h-35.6v-2.4c1.6-0.2,2.8-0.7,3.6-1.5c0.8-0.8,1.2-1.8,1.2-3.1c0-1-0.8-3.1-2.3-6.4l-35.8-77.3c-1.1-2.3-2-4.1-2.7-5.5c-0.7-1.4-1.3-2.3-1.8-2.8c-0.9-1-2.4-1.6-4.6-1.9v-2.4h36.8v2.4c-1.7,0.3-2.9,0.8-3.7,1.5c-0.8,0.7-1.3,1.6-1.3,2.7c0,1.4,0.6,3.4,1.7,6l27.2,61l27.7-61c1.2-2.6,1.7-4.6,1.7-6c0-2.2-1.7-3.6-5-4.2v-2.4L756.2,23.8L756.2,23.8z"/><path class="st0" d="M627,124.7v2.4h-32.1v-2.4c1.8-0.5,3.1-1.2,3.8-2c0.7-0.8,1-2,1-3.6V31.7c0-1.5-0.4-2.7-1-3.5c-0.7-0.8-2-1.5-3.8-2v-2.4H627v2.4c-1.8,0.5-3.1,1.1-3.7,1.9c-0.7,0.8-1.1,2-1.1,3.5v87.5c0,1.6,0.4,2.8,1.1,3.6C624,123.6,625.3,124.2,627,124.7z"/><path class="st0" d="M584.7,19v26.7h-2.4c-0.5-1.8-1.2-3.1-2-3.8c-0.8-0.7-2-1-3.5-1h-32v78.2c0,1.6,0.4,2.7,1.1,3.6c0.7,0.8,1.9,1.5,3.7,2v2.4h-32.1v-2.4c1.8-0.5,3-1.2,3.7-2c0.7-0.8,1.1-2,1.1-3.6V40.9h-32.1c-1.5,0-2.7,0.3-3.5,1c-0.8,0.7-1.5,1.9-2,3.8h-2.4V19h2.4c0.6,1.8,1.2,3.1,2,3.8c0.8,0.7,1.9,1,3.4,1h86.6c1.6,0,2.7-0.4,3.5-1c0.8-0.7,1.5-1.9,2-3.8H584.7z"/><path class="st1" d="M492.9,124.7v2.4h-38.1v-2.4c3.4-0.6,5.1-2.1,5.1-4.7c0-1.1-0.5-2.6-1.5-4.7L428,49.8l-30.6,65.4c-1,2-1.4,3.6-1.4,4.8c0,1.1,0.4,2.1,1.3,2.8c0.9,0.8,2.1,1.4,3.8,1.8v2.4h-34.2v-2.4c2-0.4,3.6-1.1,4.6-2.1s2.3-3,3.6-5.9L429.7,0l53.8,115.3c1.7,3.4,3.1,5.7,4.4,6.9C489.1,123.5,490.8,124.3,492.9,124.7z"/><rect x="371.9" y="140.9" class="st0" width="115.9" height="19.6"/><path class="st0" d="M359.2,105.2v26.7h-2.4c-0.5-1.8-1.2-3.1-2-3.8c-0.8-0.7-1.9-1-3.5-1h-93.6v-2.4c1.8-0.5,3-1.2,3.7-2c0.7-0.8,1.1-2,1.1-3.6V81.7l22.5,0V110h66.3c1.5,0,2.7-0.4,3.5-1.1c0.8-0.7,1.5-1.9,2-3.7L359.2,105.2L359.2,105.2z"/><path class="st0" d="M357.4,19v26.7H355c-0.5-1.8-1.2-3-2-3.7c-0.8-0.7-2-1.1-3.5-1.1h-64.5v24.3l-22.5-0.1V31.7c0-1.6-0.4-2.7-1.1-3.6c-0.7-0.8-1.9-1.5-3.7-2v-2.4h91.8c1.5,0,2.7-0.4,3.5-1.1c0.8-0.7,1.5-2,2-3.7L357.4,19L357.4,19z"/><rect x="304.1" y="65.2" class="st0" width="18.9" height="16.7"/><path class="st0" d="M245.3,124.7v2.4h-37.1v-2.4c2.5-0.4,3.8-1.3,3.8-2.7c0-0.9-1.2-3.1-3.5-6.6l-33.4-47.5c5.2,0,28.2-0.2,30.4-0.4c2.1-0.3,4.1-0.9,5.8-1.9c3.8-2.1,5.8-5.8,5.8-11.2s-1.9-9.1-5.8-11.2c-1.8-1-3.7-1.6-5.8-1.9c-1-0.1-2.4-0.2-4.3-0.3c-1.8-0.1-4.1-0.1-6.7-0.1h-34.8v78.3c0,1.5,0.4,2.7,1.1,3.5c0.7,0.8,1.9,1.5,3.7,1.9v2.4h-32.1v-2.4c1.8-0.5,3.1-1.2,3.8-2c0.7-0.8,1-2,1-3.5V31.7c0-1.6-0.3-2.7-1-3.6c-0.7-0.8-1.9-1.5-3.8-2v-2.4h64.6c7.9,0,14.1,0.4,18.7,1.4c4.6,0.9,8.6,2.5,12.1,4.8c4,2.6,7,6.2,8.9,10.7c1.9,4.3,2.8,9,2.8,13.9c0,8.4-2.3,15.1-7,20.1c-4.7,4.9-11.7,8.1-21.1,9.6l20,28.5c3.5,5,6.1,8.2,7.8,9.6C240.9,123.7,242.9,124.5,245.3,124.7z"/><path class="st0" d="M116.8,37.6l-14.3,21.6l-2-1.4c0.1-0.8,0.2-1.5,0.2-2.1c0-1.5-0.6-2.8-1.9-4.1c-1.3-1.3-3.5-2.8-6.7-4.7c-8.9-5-18.3-7.6-28.3-7.6c-11.8,0-21.1,3-28.1,8.9c-8.3,6.9-12.4,16-12.4,27.1c0,11.2,4.1,20.2,12.4,27.2c7,5.9,16.4,8.9,28.1,8.9c10,0,19.4-2.5,28.3-7.6c3.2-1.8,5.5-3.4,6.7-4.6s1.9-2.7,1.9-4.1c0-0.6-0.1-1.2-0.2-2l2-1.4l14.3,21.4l-2,1.4c-1.4-1.3-2.6-2-3.5-2s-3.5,1.2-7.6,3.6c-8.7,5-16,8.4-21.9,10.1c-5.9,1.7-13,2.6-21.1,2.6c-16.3,0-29.6-3.9-40.1-11.6c-6.2-4.5-11-10.1-14.5-16.7C2,93,0,84.6,0,75.4C0,62.9,3.7,52,11,42.8C21.9,28.9,38.6,22,60.8,22c8.1,0,15.2,0.9,21,2.6c5.8,1.7,13.2,5.1,21.9,10.1c4.2,2.4,6.7,3.5,7.6,3.5s2.1-0.7,3.5-2L116.8,37.6z"/></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="154.396px" height="39.148px" viewBox="0 0 154.396 39.148" enable-background="new 0 0 154.396 39.148" xml:space="preserve"><g><g><path fill="#184D66" d="M43.483,17.816v-0.107c1.405-0.607,2.56-1.69,3.465-3.246c0.903-1.557,1.355-3.372,1.355-5.447 c0-2.861-2.006-5.447-3.579-6.654C43.012,1.049,39.762,0,36.999,0h-6.316v38.477h6.816c2.811,0,6.052-0.992,8.048-3.099 c1.804-1.903,3.741-4.86,3.741-8.386c0-2.414-0.525-4.462-1.58-6.145C46.654,19.168,45.246,18.156,43.483,17.816z M36.262,6.387 h1.641c2.717,0,4.527,1.412,4.527,4.238c0,1.521-0.332,2.715-0.994,3.582c-0.662,0.868-2.02,1.303-3.171,1.303h-2.003V6.387z M42.318,30.695c-0.732,0.931-2.192,1.396-3.483,1.396h-2.572V21.948h2.607c1.29,0,2.745,0.438,3.465,1.315 c0.72,0.876,1.08,2.084,1.08,3.623C43.415,28.496,43.048,29.766,42.318,30.695z"/><path fill="#184D66" d="M64.198,26.725c0,1.824-0.294,3.27-0.882,4.334c-0.587,1.063-1.37,1.596-2.349,1.596 c-1.981,0-2.972-1.941-2.972-5.822v-15.83h-5.442v16.581c0,7.71,1.938,10.472,6.15,10.966c2.242,0.262,4.06-1.021,5.407-4.258 h0.087v4.186h5.441V11.002h-5.441V26.725z"/><rect x="74.235" y="1.143" fill="#184D66" width="5.459" height="37.334"/><rect x="84.289" y="1.143" fill="#184D66" width="5.459" height="37.334"/><path fill="#184D66" d="M102.135,10.33c-2.486,0-4.584,1.333-6.287,3.998c-1.705,2.666-2.557,6.279-2.557,10.841 c0,4.399,0.787,7.83,2.365,10.29c1.578,2.459,3.795,3.689,6.652,3.689c2.613,0,4.74-0.68,6.375-2.039v-6.118 c-1.475,1.431-3.186,2.146-5.131,2.146c-3.053,0-4.672-1.995-4.855-5.983h11.541v-3.569c0-4.078-0.705-7.307-2.117-9.686 C106.711,11.52,104.715,10.33,102.135,10.33z M98.662,21.948c0.139-1.681,0.527-3.085,1.168-4.213 c0.639-1.126,1.396-1.689,2.271-1.689c2.049,0,3.074,1.968,3.074,5.902H98.662z"/><path fill="#184D66" d="M120.207,1.273l-5.443-0.074v9.803h-2.867v6.252h2.867v12.583c0,6.207,1.924,9.312,5.771,9.312 c1.623,0,2.838-0.332,3.645-0.993v-6.278c-0.611,0.519-1.203,0.777-1.779,0.777c-1.463,0-2.193-1.432-2.193-4.293V17.254h3.973 v-6.252h-3.973V1.273z"/><rect x="127.254" y="11.002" fill="#184D66" width="5.461" height="27.475"/><path fill="#184D66" d="M148.521,10.33c-2.488,0-4.381,1.674-5.684,5.018h-0.068v-4.346h-5.459v27.475h5.459v-15.67 c0-1.733,0.305-3.166,0.916-4.293c0.609-1.127,1.387-1.689,2.33-1.689c1.959,0,2.938,2.129,2.938,6.386v15.267h5.443V21.653 C154.396,14.105,152.438,10.33,148.521,10.33z"/><rect x="127.17" y="1.199" fill="#184D66" width="5.404" height="5.533"/></g><g><polygon fill="#184D66" points="13.249,23.768 16.01,8.611 0,8.611 0,15.918 11.553,15.918 "/><polygon fill="#184D66" points="24.146,8.611 17.35,33.018 9.773,33.018 5.872,21.512 0,21.448 0,38.477 27.155,38.477 27.155,8.611 "/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
src/logos/CrossFire.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
src/logos/DDO.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
src/logos/DLH.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
src/logos/DVDShopCH.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/logos/DaFont.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1 @@
<svg version="1.1" id="svg2" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1771.7 316.6" style="enable-background:new 0 0 1771.7 316.6;" xml:space="preserve"><style type="text/css"> .st0{fill:#FFFFFF;}</style><path id="path14" inkscape:connector-curvature="0" class="st0" d="M1500,215.3c23,0,41.7-19.4,41.7-43.3 c0-24.3-18.7-43.7-41.7-43.7c-23,0-41.7,19.4-41.7,43.7C1458.3,195.9,1477.3,215.3,1500,215.3z M1434,106.6 c17.7-17.7,41-27.6,65-27.6c25.6,0,47.6,8.9,65.3,25.6c18.7,17.7,28.9,42,28.9,66c0,26.6-8.9,48.6-26.6,66.3 c-18.1,18.1-40.4,27.6-66.9,27.6c-26.9,0-48.6-9.2-66.6-28.2c-17.1-17.7-25.9-40.4-25.9-65C1407.1,146.7,1416.6,124,1434,106.6"/><path id="path16" inkscape:connector-curvature="0" class="st0" d="M1120,215.3c23,0,41.7-19.4,41.7-43.3 c0-24.3-18.7-43.7-41.7-43.7s-41.7,19.4-41.7,43.7C1078.4,195.9,1097.4,215.3,1120,215.3z M1054.1,106.6c17.7-17.7,41-27.6,65-27.6 c25.6,0,47.6,8.9,65.3,25.6c18.7,17.7,28.9,42,28.9,66c0,26.6-8.9,48.6-26.6,66.3c-18.1,18.1-40.4,27.6-67,27.6 c-26.9,0-48.6-9.2-66.6-28.2c-17.1-17.7-25.9-40.4-25.9-65C1027.2,146.7,1036.7,124,1054.1,106.6"/><path id="path18" inkscape:connector-curvature="0" class="st0" d="M490,259.6h51.5V15.5L490,26.2L490,259.6"/><path id="path20" inkscape:connector-curvature="0" class="st0" d="M411.3,259.5h51.5V83.3h-51.5V259.5z"/><path id="path22" inkscape:connector-curvature="0" class="st0" d="M437.1,0c-17.5,0-31.6,14.2-31.6,31.6s14.2,31.6,31.6,31.6 c17.5,0,31.6-14.2,31.6-31.6S454.5,0,437.1,0"/><path id="path24" inkscape:connector-curvature="0" class="st0" d="M648.6,186L615.5,83.3h-57.4l64.7,165.4l-25.1,67.9h52.2 l92-233.3H686L648.6,186"/><path id="path26" inkscape:connector-curvature="0" class="st0" d="M97.5,213.1c-26.6,0-45.6-18.7-45.6-43.3 c0-23.6,19-43.6,43.6-43.6c24.3,0,43,19,43,44.3C138.5,194.7,119.8,213.1,97.5,213.1z M174.6,170.8c0-19.4,4.7-37.7,13.8-54V15 l-51.9,10.7v76.8C124.7,87.4,108.3,80.2,87,80.2c-22.3,0-42.3,8.2-58.7,24.3C9.8,122.2,0,144.9,0,170.1c0,27.6,10.5,51.2,30.8,69.2 C46.3,253.2,64.7,260,86,260c21,0,36.8-5.6,52.2-20.7v19.7h50.2v-33.4C179.3,209.3,174.6,190.8,174.6,170.8"/><path id="path28" inkscape:connector-curvature="0" class="st0" d="M1017.3,122.1c-2.2-9.4-5.9-16.8-11.5-23.4 c-9.8-11.5-23.6-16.8-40.2-18.3c-13.5-1.2-25.1,0.6-36.4,6.5c-12.1,6.4-25.9,21.4-25.9,21.4S889.6,80,855.3,80 c-24.2,0-38.9,10.3-48.9,26.9V83.3h-46.9v176.2h49.2v-92.8c0-19.3,4.5-38.5,30.6-38.5c22.5,0,24.2,18.3,24.2,33.5v97.7h50.9v-93.4 c0-29.8,12.9-37.9,30.8-37.9c14.4,0,24,6.5,24,33.5v97.7h50.5V226c-9-16.6-13.8-35.1-13.8-55C1006,153.7,1010,137.2,1017.3,122.1"/><path id="path30" inkscape:connector-curvature="0" class="st0" d="M1297.8,15.5l-52.5,10.7v58H1223v51h22.3v124.3h52.5V135.2h23.3 v-51h-23.3V15.5"/><path id="path32" inkscape:connector-curvature="0" class="st0" d="M1369.7,63.2c17.5,0,31.6-14.2,31.6-31.6S1387.1,0,1369.7,0 s-31.6,14.2-31.6,31.6S1352.2,63.2,1369.7,63.2"/><path id="path34" inkscape:connector-curvature="0" class="st0" d="M1395.4,126.2V83.3h-51.5v176.2h51.5v-42 c-6.2-14.3-9.5-29.8-9.5-46.2C1385.9,155.5,1389.3,140.3,1395.4,126.2"/><path id="path36" inkscape:connector-curvature="0" class="st0" d="M1711.6,80c-23.3,0-39.7,9.2-50.6,26.9l0.7-23.6h-49.2v176.2 h50.9V164c0-23.6,10.8-35.8,31.2-35.8c20,0,25.3,11.2,25.3,35.8v95.5h51.8V143.4C1771.6,103,1748,80,1711.6,80"/><path id="path38" inkscape:connector-curvature="0" class="st0" d="M293.2,213.6c22.3,0,41-18.4,41-42.7c0-25.3-18.7-44.3-43-44.3 c-24.6,0-43.6,20-43.6,43.6C247.6,194.9,266.6,213.6,293.2,213.6z M333.9,239.9c-15.4,15.1-31.2,20.7-52.2,20.7 c-21.3,0-39.7-6.9-55.1-20.7c-20.3-18.1-30.8-41.7-30.8-69.3c0-25.3,9.8-47.9,28.2-65.6c16.4-16.1,36.4-24.3,58.7-24.3 c21.3,0,37.7,7.2,49.6,22.3V83.3h51.9v176.2h-50.2V239.9"/></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
src/logos/DaniWeb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 206.5 218" overflow="scroll" xml:space="preserve"><path fill="none" stroke="#FFFFFF" stroke-width="8" stroke-miterlimit="10" d="M197.5,214H9c-2.8,0-5-2.3-5-5V9c0-2.8,2.3-5,5-5 h188.5c2.8,0,5,2.3,5,5v200C202.5,211.8,200.3,214,197.5,214z"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="34" x2="173.5" y2="34"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="64" x2="173.5" y2="64"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="93" x2="173.5" y2="93"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="124" x2="173.5" y2="124"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="154" x2="173.5" y2="154"/><line fill="none" stroke="#FFFFFF" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="33.5" y1="184" x2="173.5" y2="184"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Some files were not shown because too many files have changed in this diff Show More