New stuff

This commit is contained in:
Jesse Cardone 2018-10-22 20:21:46 -04:00
parent 6c91fa1585
commit 9cd0caadf9
62 changed files with 713 additions and 56 deletions

View File

@ -3,6 +3,18 @@ const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
const sourcemaps = require('gulp-sourcemaps');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify-es').default;
gulp.task('js', function () {
return gulp.src([
'node_modules/moment/moment.js',
'src/js/**/*.js'
])
.pipe(concat('weatherscan.js'))
.pipe(uglify())
.pipe(gulp.dest('webroot/js'));
});
gulp.task('sass', function () {
return gulp.src('src/scss/*.scss')
@ -14,8 +26,9 @@ gulp.task('sass', function () {
.pipe(gulp.dest('webroot/css'));
});
gulp.task('default', ['sass']);
gulp.task('default', ['js', 'sass']);
gulp.task('watch', function () {
gulp.watch('scss/*.scss', ['sass']);
gulp.watch('src/scss/*.scss', ['sass']);
gulp.watch('src/js/*.js', ['js']);
});

174
package-lock.json generated
View File

@ -391,6 +391,12 @@
"node-releases": "1.0.0-alpha.11"
}
},
"buffer-from": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
"integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
"dev": true
},
"builtin-modules": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
@ -521,12 +527,29 @@
"integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
"dev": true
},
"clone-buffer": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
"integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=",
"dev": true
},
"clone-stats": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
"integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=",
"dev": true
},
"cloneable-readable": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz",
"integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==",
"dev": true,
"requires": {
"inherits": "2.0.3",
"process-nextick-args": "2.0.0",
"readable-stream": "2.3.6"
}
},
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
@ -584,6 +607,12 @@
"delayed-stream": "1.0.0"
}
},
"commander": {
"version": "2.17.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
"integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
"dev": true
},
"component-emitter": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
@ -596,6 +625,23 @@
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"concat-with-sourcemaps": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz",
"integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==",
"dev": true,
"requires": {
"source-map": "0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"console-control-strings": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
@ -1655,6 +1701,45 @@
"vinyl-sourcemaps-apply": "0.2.1"
}
},
"gulp-concat": {
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz",
"integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=",
"dev": true,
"requires": {
"concat-with-sourcemaps": "1.1.0",
"through2": "2.0.3",
"vinyl": "2.2.0"
},
"dependencies": {
"clone": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
"dev": true
},
"clone-stats": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
"integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=",
"dev": true
},
"vinyl": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz",
"integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==",
"dev": true,
"requires": {
"clone": "2.1.2",
"clone-buffer": "1.0.0",
"clone-stats": "1.0.0",
"cloneable-readable": "1.1.2",
"remove-trailing-separator": "1.1.0",
"replace-ext": "1.0.0"
}
}
}
},
"gulp-sass": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-4.0.1.tgz",
@ -1698,6 +1783,47 @@
}
}
},
"gulp-uglify-es": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/gulp-uglify-es/-/gulp-uglify-es-1.0.4.tgz",
"integrity": "sha512-UMRufZsBmQizCYpftutaiVoLswpbzFEfY90EJLU4YlTgculeHnanb794s88TMd5tpCZVC638sAX6JrLVYTP/Wg==",
"dev": true,
"requires": {
"o-stream": "0.2.2",
"plugin-error": "1.0.1",
"terser": "3.8.2",
"vinyl": "2.2.0",
"vinyl-sourcemaps-apply": "0.2.1"
},
"dependencies": {
"clone": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
"dev": true
},
"clone-stats": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
"integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=",
"dev": true
},
"vinyl": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz",
"integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==",
"dev": true,
"requires": {
"clone": "2.1.2",
"clone-buffer": "1.0.0",
"clone-stats": "1.0.0",
"cloneable-readable": "1.1.2",
"remove-trailing-separator": "1.1.0",
"replace-ext": "1.0.0"
}
}
}
},
"gulp-util": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
@ -2594,6 +2720,11 @@
}
}
},
"moment": {
"version": "2.22.2",
"resolved": "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz",
"integrity": "sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y="
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
@ -2805,6 +2936,12 @@
"integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
"dev": true
},
"o-stream": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/o-stream/-/o-stream-0.2.2.tgz",
"integrity": "sha512-V3j76KU3g/Gyl8rpdi2z72rn5zguMvTCQgAXfBe3pxEefKqXmOUOD7mvx/mNjykdxGqDVfpSoo8r+WdrkWg/1Q==",
"dev": true
},
"oauth-sign": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
@ -3607,6 +3744,24 @@
"urix": "0.1.0"
}
},
"source-map-support": {
"version": "0.5.9",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz",
"integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==",
"dev": true,
"requires": {
"buffer-from": "1.1.1",
"source-map": "0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"source-map-url": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
@ -3805,6 +3960,25 @@
"inherits": "2.0.3"
}
},
"terser": {
"version": "3.8.2",
"resolved": "https://registry.npmjs.org/terser/-/terser-3.8.2.tgz",
"integrity": "sha512-FGSBXiBJe2TSXy6pWwXpY0YcEWEK35UKL64BBbxX3aHqM4Nj0RMqXvqBuoSGfyd80t8MKQ5JwYm5jRRGTSEFNg==",
"dev": true,
"requires": {
"commander": "2.17.1",
"source-map": "0.6.1",
"source-map-support": "0.5.9"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"through2": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",

View File

@ -9,13 +9,16 @@
"url": "git+https://github.com/Jessecar96/Weatherscan.git"
},
"dependencies": {
"http-server": "^0.11.1"
"http-server": "^0.11.1",
"moment": "^2.22.2"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4"
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify-es": "^1.0.4"
}
}

24
src/js/autosize.js Normal file
View File

@ -0,0 +1,24 @@
let image = {width: 1440, height: 1080};
document.addEventListener('DOMContentLoaded', updateScale);
window.addEventListener('resize', updateScale);
function updateScale() {
let windowWidth = window.innerWidth;
let windowHeight = window.innerHeight;
// Get largest dimension increase
let xScale = windowWidth / image.width;
let yScale = windowHeight / image.height;
let scale;
if (xScale < yScale) {
// The image fits perfectly in x axis, stretched in y
scale = xScale;
} else {
// The image fits perfectly in y axis, stretched in x
scale = yScale;
}
document.getElementById("main").style.transform = `scale(${scale})`;
}

12
src/js/clock.js Normal file
View File

@ -0,0 +1,12 @@
//setInterval(updateClock, 1000);
//document.addEventListener('DOMContentLoaded', updateClock);
let $clock = document.getElementById("clock");
function updateClock() {
let time = moment();
$clock.innerHTML = time.format('MMM D[<br/>]h:m:ssa');
}

0
src/js/main.js Normal file
View File

9
src/scss/_clock.scss Normal file
View File

@ -0,0 +1,9 @@
#clock {
font-family: 'Interstate Condensed';
font-size: 29px;
text-align: right;
width: 465px;
position: absolute;
top: 100px;
line-height: 36px;
}

View File

@ -30,3 +30,18 @@
font-style: normal;
}
@font-face {
font-family: 'Interstate Condensed';
src: url('/fonts/Interstate-RegularCondensed.woff2') format('woff2'),
url('/fonts/Interstate-RegularCondensed.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Interstate Condensed';
src: url('/fonts/Interstate-BoldCondensed.woff2') format('woff2'),
url('/fonts/Interstate-BoldCondensed.woff') format('woff');
font-weight: bold;
font-style: normal;
}

View File

@ -20,23 +20,24 @@ html,
body {
height: 100%;
background-color: #000000;
font-size: 100%
font-size: 100%;
margin: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
#main {
position: relative;
top: 50%;
left: 50%;
overflow: hidden;
transform: translate(-50%, -50%);
width: 1440px;
height: 1080px;
}
#main > #template {
display: block;
max-height: 100%;
max-width: 100%;
background: url('/images/template-4k.jpg');
background-size: 100%;
background-repeat: no-repeat;
flex-shrink: 0;
}
.leaflet-top,
@ -273,7 +274,7 @@ body {
}
#date-time * {
font-family: 'Interstate Mono';
font-family: 'Interstate';
font-size: 25px;
line-height: 33px;
}

View File

@ -1,3 +1,4 @@
@import "fonts";
@import "slides";
@import "misc";
@import "misc";
@import "clock";

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="232.09998"
height="33.300011"
viewBox="0 0 61.409785 8.8106279"
version="1.1"
id="svg532"
inkscape:version="0.92.0 r15299"
sodipodi:docname="blue ridge.svg">
<defs
id="defs526">
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.8983051"
inkscape:cx="115.05"
inkscape:cy="15.650006"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
inkscape:window-width="1280"
inkscape:window-height="744"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1" />
<metadata
id="metadata529">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(198.26174,-194.81225)">
<g
id="g624"
transform="translate(0.2645826,-0.26457555)">
<polygon
transform="matrix(0.26458333,0,0,0.26458333,-198.26174,195.34141)"
style="fill:#00b085"
points="28.6,24.6 50.7,8.4 68,24.6 77,24.6 50.8,0 24.5,24.6 "
id="polygon534" />
<polygon
transform="matrix(0.26458333,0,0,0.26458333,-198.26174,195.34141)"
style="fill:#00b085"
points="27.2,18.5 31.7,14.2 21.4,4.5 0,24.6 4.3,24.6 20.8,12.5 "
id="polygon536" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -176.01028,201.79724 v -6.45583 h 1.45521 1.05833 c 0.76729,0 1.34937,0.15875 1.66687,0.47625 0.34396,0.3175 0.50271,0.71437 0.50271,1.16417 0,0.39687 -0.10583,0.71437 -0.34396,0.92604 -0.21166,0.21166 -0.5027,0.37041 -0.87312,0.47625 0.52917,0.13229 0.89958,0.34396 1.13771,0.60854 0.23812,0.26458 0.34396,0.60854 0.34396,1.00542 0,0.5027 -0.21167,0.92604 -0.60855,1.27 -0.39687,0.34395 -0.97895,0.5027 -1.7727,0.5027 h -1.32292 -1.24354 z m 1.32291,-3.86291 h 0.50271 c 0.55563,0 0.97896,-0.0529 1.19063,-0.18521 0.23812,-0.13229 0.34396,-0.3175 0.34396,-0.60854 0,-0.26459 -0.10584,-0.4498 -0.29105,-0.60855 -0.1852,-0.13229 -0.52916,-0.21166 -0.97895,-0.21166 h -0.26459 -0.50271 z m 0,2.8575 h 0.50271 c 0.76729,0 1.27,-0.0794 1.48167,-0.26459 0.21167,-0.18521 0.3175,-0.39687 0.3175,-0.68791 0,-0.26459 -0.10583,-0.47625 -0.3175,-0.66146 -0.21167,-0.18521 -0.52917,-0.26459 -0.9525,-0.26459 h -0.52917 -0.50271 z"
id="path540" />
<rect
style="fill:#00a8e1;stroke-width:0.26458332"
x="-170.69215"
y="195.36787"
width="1.2170833"
height="6.455833"
id="rect542" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -169.05174,197.27287 h 1.21708 v 2.19604 0.55562 c 0,0.37042 0.0794,0.66146 0.23813,0.84667 0.15875,0.18521 0.37041,0.26458 0.60854,0.26458 0.3175,0 0.55562,-0.10583 0.74083,-0.29104 0.18521,-0.21166 0.29104,-0.58208 0.29104,-1.11125 v -0.15875 -2.30187 h 1.21709 v 4.55083 h -1.19063 v -0.66146 c -0.15875,0.23813 -0.34396,0.42334 -0.60854,0.55563 -0.23812,0.13229 -0.55562,0.21166 -0.89958,0.21166 -0.55563,0 -0.9525,-0.15875 -1.24354,-0.44979 -0.26459,-0.29104 -0.39688,-0.74083 -0.39688,-1.32291 v -0.50271 -2.38125 z"
id="path544" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -163.15153,199.81287 c 0,0.87312 0.3175,1.29646 0.92604,1.29646 0.21167,0 0.39687,-0.0794 0.55562,-0.21167 0.15875,-0.13229 0.23813,-0.37042 0.23813,-0.635 h 1.21708 c 0,0.50271 -0.18521,0.89958 -0.52916,1.21708 -0.37042,0.29104 -0.84667,0.44979 -1.45521,0.44979 -0.71438,0 -1.27,-0.21166 -1.61396,-0.60854 -0.37042,-0.39687 -0.55563,-0.97896 -0.55563,-1.71979 0,-0.76729 0.18521,-1.34937 0.58209,-1.79917 0.39687,-0.42333 0.92604,-0.66145 1.64041,-0.66145 0.635,0 1.13771,0.21166 1.50813,0.60854 0.37042,0.39687 0.52917,1.00541 0.52917,1.79916 v 0.29105 h -3.04271 z m 0.0265,-0.74084 h 1.7727 c -0.0529,-0.74083 -0.34395,-1.1377 -0.87312,-1.1377 -0.26458,0 -0.47625,0.10583 -0.66146,0.29104 -0.13229,0.18521 -0.21167,0.47625 -0.23812,0.84666"
id="path546" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -158.23028,201.79724 v -6.45583 h 1.79916 0.92605 c 0.79375,0 1.37583,0.15875 1.71979,0.47625 0.37041,0.3175 0.52916,0.71437 0.52916,1.21708 0,0.42334 -0.13229,0.76729 -0.37041,1.03188 -0.23813,0.26458 -0.58209,0.44979 -0.97896,0.52916 0.3175,0.0265 0.55562,0.1323 0.76729,0.3175 0.21167,0.18521 0.34396,0.55563 0.39688,1.11125 0.10583,1.00542 0.23812,1.61396 0.39687,1.79917 h -1.42875 c -0.0794,-0.26458 -0.15875,-0.76729 -0.23812,-1.45521 -0.0529,-0.47625 -0.1323,-0.79375 -0.26459,-0.9525 -0.13229,-0.15875 -0.39687,-0.23812 -0.79375,-0.23812 h -0.42333 -0.68792 v 2.61937 z m 1.34937,-3.62479 h 0.82021 c 0.50271,0 0.87313,-0.0794 1.13771,-0.23812 0.23812,-0.15875 0.37042,-0.39688 0.37042,-0.71438 0,-0.26458 -0.0794,-0.47625 -0.26459,-0.635 -0.18521,-0.15875 -0.47625,-0.23812 -0.87312,-0.23812 h -0.50271 -0.66146 v 1.82562 z"
id="path548" />
<rect
style="fill:#00a8e1;stroke-width:0.26458332"
x="-152.7534"
y="197.27287"
width="1.2170833"
height="4.5508337"
id="rect550" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -147.93799,197.6962 v -2.32833 h 1.21708 v 6.45583 h -1.13771 v -0.71437 c -0.13229,0.23812 -0.29104,0.44979 -0.52916,0.58208 -0.23813,0.15875 -0.50271,0.23812 -0.84667,0.23812 -0.58208,0 -1.05833,-0.21166 -1.40229,-0.60854 -0.34396,-0.42333 -0.52917,-1.00541 -0.52917,-1.71979 0,-0.71437 0.15875,-1.29646 0.50271,-1.74625 0.34396,-0.44979 0.82021,-0.68792 1.42875,-0.68792 0.23813,0 0.47625,0.0529 0.68792,0.1323 0.21166,0.0529 0.42333,0.1852 0.60854,0.39687 m -2.01083,1.905 c 0,0.47625 0.0794,0.84667 0.26458,1.11125 0.18521,0.26458 0.42333,0.39688 0.76729,0.39688 0.3175,0 0.55563,-0.1323 0.74083,-0.39688 0.18521,-0.26458 0.29105,-0.66146 0.29105,-1.21708 0,-0.50271 -0.0794,-0.89959 -0.23813,-1.16417 -0.15875,-0.26458 -0.42333,-0.39687 -0.74083,-0.39687 -0.34396,0 -0.58209,0.13229 -0.76729,0.42333 -0.21167,0.29104 -0.3175,0.68792 -0.3175,1.24354"
id="path552" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -146.19174,202.11474 h 1.21708 c 0.0529,0.47625 0.3175,0.71438 0.76729,0.71438 0.26459,0 0.50271,-0.0794 0.68792,-0.26459 0.18521,-0.1852 0.26458,-0.44979 0.26458,-0.84666 v -0.635 c -0.34395,0.42333 -0.76729,0.66146 -1.29645,0.66146 -0.58209,0 -1.03188,-0.21167 -1.37584,-0.635 -0.34396,-0.42334 -0.50271,-0.97896 -0.50271,-1.66688 0,-0.66146 0.18521,-1.21708 0.52917,-1.64042 0.34396,-0.42333 0.82021,-0.635 1.40229,-0.635 0.3175,0 0.58209,0.0529 0.79375,0.21167 0.21167,0.13229 0.37042,0.26458 0.44979,0.39688 v -0.50271 h 1.21709 v 4.07458 0.23813 c 0,0.76729 -0.18521,1.29645 -0.58209,1.5875 -0.37041,0.29104 -0.89958,0.44979 -1.53458,0.44979 -0.60854,0 -1.11125,-0.13229 -1.48167,-0.37042 -0.37041,-0.23812 -0.55562,-0.635 -0.55562,-1.13771 m 1.03187,-2.69875 c 0,0.42334 0.0794,0.79375 0.23813,1.08479 0.15875,0.29105 0.42333,0.42334 0.74083,0.42334 0.29104,0 0.50271,-0.13229 0.71438,-0.37042 0.18521,-0.23812 0.29104,-0.60854 0.29104,-1.08479 0,-0.47625 -0.0794,-0.84667 -0.26458,-1.11125 -0.15875,-0.29104 -0.42334,-0.42333 -0.74084,-0.42333 -0.29104,0 -0.52916,0.13229 -0.71437,0.37041 -0.18521,0.26459 -0.26459,0.635 -0.26459,1.11125"
id="path554" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -140.42382,199.81287 c 0,0.87312 0.3175,1.29646 0.92604,1.29646 0.21166,0 0.39687,-0.0794 0.55562,-0.21167 0.15875,-0.13229 0.23813,-0.37042 0.23813,-0.635 h 1.21708 c 0,0.50271 -0.18521,0.89958 -0.52917,1.21708 -0.37041,0.29104 -0.84666,0.44979 -1.4552,0.44979 -0.71438,0 -1.27,-0.21166 -1.61396,-0.60854 -0.37042,-0.39687 -0.55563,-0.97896 -0.55563,-1.71979 0,-0.76729 0.18521,-1.34937 0.58209,-1.79917 0.39687,-0.42333 0.92604,-0.66145 1.64041,-0.66145 0.635,0 1.13771,0.21166 1.50813,0.60854 0.37041,0.39687 0.52916,1.00541 0.52916,1.79916 v 0.29105 h -3.0427 z m 0,-0.74084 h 1.7727 c -0.0529,-0.74083 -0.34395,-1.1377 -0.87312,-1.1377 -0.26458,0 -0.47625,0.10583 -0.66146,0.29104 -0.10583,0.18521 -0.21167,0.47625 -0.23812,0.84666"
id="path556" />
<path
style="fill:#00a8e1;stroke-width:0.26458332"
inkscape:connector-curvature="0"
d="m -151.37757,195.94995 c 0,0.34396 -0.26459,0.60854 -0.60855,0.60854 -0.34395,0 -0.60854,-0.26458 -0.60854,-0.60854 0,-0.34396 0.26459,-0.60854 0.60854,-0.60854 0.3175,0 0.60855,0.26458 0.60855,0.60854"
id="path558" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="175.748" height="18.021"
viewBox="0 0 175.748 18.021" overflow="visible" enable-background="new 0 0 175.748 18.021" xml:space="preserve">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="3.258,17.374 3.103,17.374 7.756,0 7.911,0 3.258,17.374
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="9.85,0 5.429,17.374 5.197,17.374 9.695,0 9.85,0 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="9.229,17.374 8.842,17.374 13.418,0.078 13.728,0.078
9.229,17.374 "/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M15.046,17.374h-0.388L19.234,0c0,0,0,0,0.388,0.078
L15.046,17.374L15.046,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M20.243,17.374h-0.465C19.7,17.374,24.354,0,24.354,0.078h0.62
L20.243,17.374L20.243,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M132.548,1.706c0.854,0.311,1.396-0.698,1.706-1.085h9.928
c-0.077,0-0.311,0.465-0.311,0.465c-0.775,0-1.628,0.232-1.938,1.085l-4.11,14.271c0,0.389,0.697,0.697,1.318,0.697h0.543
l-0.232,0.467h-9.308l0.311-0.467c0,0,0.697,0.078,1.241-0.232c0.62-0.311,1.008-0.775,1.24-1.473l3.567-12.487
c0.155-0.621,0.155-1.551-0.542-1.707l-1.319-0.232c-0.62,1.784-1.008,3.645-1.474,5.429h-0.697
c0.31-1.784-0.311-3.568-1.861-4.421c-0.931-0.543-2.017-0.388-2.947-0.078c-0.854,0.31-1.552,1.008-1.862,1.861
c-0.232,0.698-0.077,1.551,0.621,2.017c2.481,1.629,6.593,2.481,6.67,6.282c0.077,2.404-2.017,4.422-4.033,5.275
c-2.869,1.162-5.816,0.154-8.531-0.621c-0.543-0.156-0.854,0.697-1.318,0.854h-9.385c0.232-0.467,0.232-0.467,0.232-0.467
c0.543,0,1.318-0.154,1.707-0.697l0.697-1.318l3.801-12.72c0.077-0.465,0.388-1.318-0.466-1.318c-0.775,0-2.017,1.706-2.56,2.714
l-8.996,13.806h-3.956l0.078-15.9c0-0.31-0.078-0.543-0.466-0.543h-0.388l-1.163,4.421c0.077,0-0.621,0-0.621,0
c0-0.853,0.388-1.706-0.077-2.482c-0.854-1.318-2.404-1.318-3.801-1.318l-1.938,6.282c1.163,0.078,2.637,0.311,3.49-0.543
c0.388-0.388,0.62-1.085,0.62-1.085h0.621l-1.474,4.886h-0.466c0.155-0.775,0.232-2.017-0.62-1.938l-2.404-0.155l-2.095,7.059
c2.482,0.232,5.042,0.154,6.825-1.475c0.543-0.543,0.775-1.162,1.086-1.783h0.62l-1.473,4.576H69.958
c0.078,0,0.233-0.467,0.233-0.467s0.775-0.076,1.085-0.387c0.621-0.389,1.241-0.932,1.474-1.629l3.801-13.107
c0.078-0.543-0.311-0.854-0.776-0.931h-0.853l0.232-0.465h8.842l-0.232,0.465c-0.311,0-0.698-0.078-1.086,0.232
c-0.854,0.388-1.241,1.241-1.474,2.094l-3.646,12.875c2.56,0.076,4.033-0.543,5.274-2.25l0.466-1.008h0.542l-1.163,3.877
c0.465,0.078,1.163-0.154,1.474-0.619c0.31-0.389,0.621-1.242,0.621-1.242l3.722-12.952c0.156-0.388-0.154-0.931-0.62-1.008h-1.008
l0.233-0.465h20.631l-0.155,0.465c-0.698,0-2.172-0.078-2.095,0.853v11.402l6.98-10.782c0.388-0.62,0.078-1.085-0.543-1.318
c-0.388-0.155-1.318-0.155-1.318-0.155l0.155-0.465h13.03c-0.311,0.465-0.232,0.465-0.311,0.465c-0.543,0-1.861,0.077-2.172,1.241
l-4.033,14.038c-0.154,0.232,0.078,0.621,0.543,0.621h0.775l1.164-5.119h0.62c-0.077,1.861,0.62,3.49,2.172,4.422
c1.086,0.543,2.481,0.619,3.646,0.309c0.931-0.309,1.706-1.086,2.016-1.938c0.155-0.775-0.077-1.475-0.465-2.018
c-1.784-2.326-5.972-1.551-6.515-5.119c-0.388-2.404,0.853-4.498,2.715-5.817C126.343,0.078,130.222,0,132.548,1.706L132.548,1.706
z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M165.355,0.621l3.878,11.867l3.103-10.316
c0.077-0.465-0.311-1.085-0.854-1.085h-0.775l0.155-0.465h4.886l-0.155,0.465c-0.543,0-1.706,0.155-2.094,1.396l-4.498,15.125
h-2.947c-1.474-4.344-2.947-8.688-4.576-13.031l-3.335,10.859c-0.311,0.854,0.155,1.705,0.775,1.705c0.311,0,0.931,0,0.931,0
c0-0.076-0.155,0.467-0.078,0.467h-5.352l0.155-0.467c0,0,0.931-0.076,1.396-0.309c0.543-0.234,0.698-0.311,0.931-0.932
l3.801-13.417c0.154-0.621-0.155-1.396-0.854-1.396c0,0-0.854-0.078-0.854,0l0.155-0.465H165.355L165.355,0.621z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M157.134,2.327c1.939,2.56,1.474,6.825,0.078,9.54
c-1.939,3.568-5.507,6.049-9.463,6.127c-2.404,0.156-4.498-0.311-6.127-2.094c-1.861-2.559-1.24-6.515-0.077-9.152
c2.404-4.421,7.368-6.903,12.409-6.127C155.195,0.853,156.281,1.318,157.134,2.327L157.134,2.327z M150.076,2.249
c-2.947,2.094-3.801,5.352-4.809,8.453c-0.311,1.785-1.086,4.268,0.311,5.818c0.62,0.387,1.163,0.697,1.938,0.543
c3.49-1.008,4.576-4.809,5.43-7.679c0.62-2.25,1.396-5.042,0-7.136C152.171,1.551,150.774,1.784,150.076,2.249L150.076,2.249z
M43.976,1.396c0.775,0.232,1.241-0.31,1.551-0.775c0.155-0.155,0.233-0.388,0.233-0.388h0.543l-1.396,6.282h-0.931
c-0.078-1.784,0.077-3.956-1.707-4.731c-2.249-0.698-4.11,1.008-5.429,2.792c-1.939,2.947-3.491,6.593-2.25,10.316
c0.31,0.543,0.853,1.086,1.474,1.24c4.499,0.621,7.756-3.645,10.16-6.902l5.662-8.609h3.413l0.31,15.511
c0.078,0.232,0,0.854,0.233,1.008h0.621l4.421-14.968c0.077-0.465-0.078-0.853-0.465-1.085h-1.707l0.155-0.465h12.099
c1.318,0.31,2.637,1.474,2.87,2.947c0.155,1.319-0.465,2.327-1.241,3.335c-1.086,1.008-2.25,1.862-3.568,2.017
c1.086,0.466,2.327,1.24,2.947,2.404c0.621,1.396,0.155,3.18-0.931,4.344c-1.861,1.861-4.499,1.939-7.058,1.939H47.932
l-0.078-0.467c1.008,0,2.327-0.154,2.637-1.24V13.03h-5.119c-0.698,0.854-1.784,1.939-1.939,3.334c0,0.543,1.008,0.775,1.861,0.775
l-0.233,0.467h-5.739c-0.077,0,0.233-0.467,0.233-0.467c0.853,0,1.163-0.387,1.163-0.387c0.854-0.543,1.629-1.396,1.939-2.25
c-2.87,2.404-6.825,4.498-10.858,2.715c-2.56-1.473-3.025-4.576-2.637-7.367c0.853-3.879,4.111-7.989,8.066-9.075
C39.478,0,42.114,0.078,43.976,1.396L43.976,1.396z M66.158,1.706l-1.939,6.438c1.086,0.155,1.861-0.31,2.637-0.698
c1.551-1.086,2.559-2.637,2.327-4.499C68.717,1.706,67.088,1.396,66.158,1.706L66.158,1.706z M50.413,11.634l0.078-6.67
l-4.266,6.67H50.413L50.413,11.634z M63.909,9.462c0,0.077-2.017,6.902-2.017,6.902c1.396,0.156,2.482-0.465,3.49-1.008
c1.241-0.93,2.327-2.172,2.095-3.877C67.011,10.005,65.305,9.54,63.909,9.462L63.909,9.462z"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="21.251,17.374 20.708,17.374 25.284,0 25.905,0
21.251,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="22.182,17.374 21.717,17.374 26.292,0 26.913,0
22.182,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="23.19,17.374 22.647,17.374 27.223,0 27.844,0
23.19,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="24.121,17.374 23.655,17.374 28.231,0 28.852,0
24.121,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="25.129,17.374 24.664,17.374 29.24,0 29.86,0
25.129,17.374 "/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M16.055,17.374h-0.388L20.166,0c0,0.078,0,0,0.465,0
L16.055,17.374L16.055,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M17.063,17.374h-0.388L21.173,0c0,0.078,0.078,0,0.466,0
L17.063,17.374L17.063,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M17.994,17.374h-0.388L22.182,0c0,0.078,0,0,0.388,0
L17.994,17.374L17.994,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M18.924,17.374h-0.388L23.113,0c0,0.078,0,0,0.465,0
L18.924,17.374L18.924,17.374z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M14.116,17.374h-0.388L18.304,0c0,0.078,0,0,0.388,0
L14.116,17.374L14.116,17.374z"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="10.083,17.374 9.695,17.374 14.271,0.078 14.581,0.078
10.083,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="11.014,17.374 10.626,17.374 15.124,0.078 15.512,0.078
11.014,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="11.944,17.374 11.557,17.374 16.055,0.078 16.365,0.078
11.944,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="12.797,17.374 12.41,17.374 16.985,0.078 17.296,0.078
12.797,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="9.074,0.078 4.576,17.374 4.343,17.374 8.919,0.078
9.074,0.078 "/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M10.626,0.078c0.077,0-4.421,17.296-4.421,17.296H5.972
L10.47,0.078H10.626L10.626,0.078z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M11.479,0.078c0.078,0-4.421,17.296-4.421,17.296H6.825
l4.499-17.296H11.479L11.479,0.078z"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="12.332,0.078 7.911,17.374 7.678,17.374 12.177,0.078
12.332,0.078 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="2.482,17.374 2.327,17.374 6.98,0 7.136,0 2.482,17.374
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="1.706,17.374 1.551,17.374 6.205,0 6.282,0 1.706,17.374
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="0.854,17.374 0.698,17.374 5.352,0.078 5.507,0.078
0.854,17.374 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#000000" points="0.155,17.374 0,17.374 4.576,0.078 4.731,0.078
0.155,17.374 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="965.54602"
height="259.54599"
viewBox="0 0 965.54602 259.546"
enable-background="new 0 0 1000 259.546"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="Comcast.svg"><metadata
id="metadata29"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs27" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="931"
id="namedview25"
showgrid="false"
inkscape:zoom="7.0144993"
inkscape:cx="958.52867"
inkscape:cy="98.622516"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
inkscape:current-layer="g3" /><g
id="g3"><path
d="M 231.084,210.813 C 207.316,240.505 170.745,259.545 129.743,259.545 58.094,259.546 0,201.455 0,129.75 0,58.139 58.094,0 129.744,0 c 41.001,0 77.573,19.069 101.341,48.747 l -4.21,2.549 C 206.119,29.48 176.784,15.839 144.271,15.839 c -62.926,0 -113.942,51.023 -113.942,113.958 0,62.902 51.017,113.941 113.942,113.941 32.514,0 61.879,-13.638 82.635,-35.55 l 4.178,2.625 z"
id="path5"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 269.985,67.743 c -40.737,0 -64.147,27.354 -64.147,62.007 0,34.715 23.214,62.01 64.147,62.01 38.924,0 62.797,-27.038 62.797,-62.01 0.001,-34.653 -23.872,-62.007 -62.797,-62.007 m 0,101.365 c -23.13,0 -38.453,-17.964 -38.453,-39.358 0,-21.39 15.475,-39.387 38.453,-39.387 19.937,0 37.119,16.704 37.119,39.434 0,22.212 -16.75,39.311 -37.119,39.311"
id="path7"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 625.768,153.177 c -2.337,3.322 -11.453,15.914 -32.071,15.914 -22.272,0 -38.477,-16.857 -38.477,-39.326 0,-22.697 16.508,-39.385 38.477,-39.385 20.708,0 30.417,13.458 31.981,15.719 L 644.732,94.4 c -1.485,-2.639 -14.942,-26.641 -51.035,-26.641 -39.009,0 -64.117,25.487 -64.117,62.006 0,36.354 24.973,62.023 64.117,62.023 35.636,0 49.081,-23.272 51.218,-26.763 l -19.147,-11.848 z"
id="path9"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 179.234,154.313 c -2.481,3.522 -12.069,16.75 -33.697,16.75 -23.335,0 -40.396,-17.689 -40.396,-41.298 0,-23.834 17.327,-41.359 40.396,-41.359 21.719,0 31.959,14.125 33.561,16.508 L 199.14,92.625 c -1.6,-2.791 -15.696,-27.961 -53.603,-27.961 -40.966,0 -67.333,26.764 -67.333,65.102 0,38.158 26.239,65.104 67.318,65.104 37.429,0 51.532,-24.427 53.8,-28.1 l -20.088,-12.457 z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 938.373,69.896 0.79,-33.271 -25.674,13.017 -0.725,20.254 -19.119,0 0,19.892 19.119,0 0,67.243 c 0,23.927 13.624,34.729 31.706,34.729 10.32,0 16.722,-2.004 17.965,-2.354 l 3.111,-20.298 c -0.896,0.179 -5.962,1.622 -11.592,1.622 -10.03,0 -15.582,-3.779 -15.582,-15.507 l 0,-65.435 24.791,0 0,-19.892 -24.79,0 z"
id="path13"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 754.231,69.896 c 0,0 -0.229,11.896 -0.258,13.823 l -0.336,0 c -2.168,-2.187 -14.078,-15.977 -38.201,-15.977 -36.05,0 -62.509,24.381 -62.509,62.054 0,35.64 24.744,61.963 62.599,61.963 22.791,0 35.168,-12.835 38.111,-15.946 l 0.336,0 c 0.028,0.15 0.258,13.774 0.258,13.774 l 25.987,0 0,-119.691 -25.987,0 z m -36.126,99.212 c -24.898,0 -39.537,-18.071 -39.537,-39.312 0,-23.138 16.354,-39.434 39.598,-39.434 24.73,0 39.54,18.054 39.54,39.434 0,21.209 -14.871,39.312 -39.601,39.312"
id="path15"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 488.317,189.635 0,-74.995 c 0,-15.75 -8.344,-24.837 -22.18,-24.837 -14.156,0 -21.969,9.513 -21.969,24.837 l 0,74.995 -25.604,0 0,-74.995 c 0,-15.764 -8.209,-24.837 -22.083,-24.837 -14.117,0 -22.074,9.483 -22.074,24.837 l 0,74.995 -25.604,0 0,-119.739 24.162,0 0.227,11.365 0.47,0 c 1.707,-2.019 11.418,-13.503 29.844,-13.503 21.301,0 29.305,14.171 31.148,17.189 2.52,-3.172 12.76,-17.189 35.298,-17.189 27.249,0 43.728,16.992 43.728,41.387 l 0,80.489 -25.363,0 z"
id="path17"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
d="m 853.651,118.813 c 20.212,6.916 33.015,17.339 33.015,35.579 0,25.001 -21.451,37.368 -49.218,37.368 -25.305,0 -38.962,-7.98 -43.27,-10.577 l 9.984,-19.525 c 2.668,1.364 15.899,9.209 34.317,9.209 12.989,0 22.455,-5.551 22.455,-13.928 0,-7.463 -4.976,-12.078 -18.025,-16.433 l -13.653,-4.7 c -15.917,-5.462 -29.495,-15.75 -29.495,-34.201 0,-20.89 18.39,-33.817 43.695,-33.817 22.319,0 34.35,7.314 38.658,9.954 l -9.802,18.449 c -2.215,-1.076 -13.532,-7.51 -29.492,-7.51 -12.32,0 -17.45,5.901 -17.45,11.514 0,5.873 4.219,10.381 15.386,14.231 l 12.895,4.387 z"
id="path19"
inkscape:connector-curvature="0"
style="fill:#ffffff" /></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="300"
height="97.545982"
id="svg6797">
<defs
id="defs6799">
<clipPath
id="clipPath226">
<path
d="m 263.215,237.239 3.952,5.61 -2.898,0 -2.444,-3.577 -2.442,3.577 -2.901,0 3.949,-5.61 -4.226,-6.012 2.9,0 2.72,3.981 5.651,-8.077 2.782,0 L 263.215,237.239 z m 54.807,5.61 -2.728,0 -4.055,-7.405 -2.774,7.405 -2.621,0 3.896,-10.133 -3.014,-5.585 2.669,0 L 318.022,242.849 z m -48.375,0 -1.193,0 -1.382,-1.976 2.575,0 0,-9.646 2.528,0 0,9.646 2.579,0 0,1.976 -2.579,0 0,1.125 c 0,0.85 0.355,1.196 1.213,1.196 0.493,0 1.004,-0.097 1.366,-0.195 l 0,2.035 c -0.518,0.186 -1.237,0.307 -2.017,0.307 -1.936,0 -3.09,-1.267 -3.09,-3.38 L 269.647,242.849 z m 30.43,-1.976 0,-6.496 c 0,-2.12 1.152,-3.376 3.084,-3.376 0.641,0 1.278,0.077 1.76,0.226 l 0.305,2.017 c -0.145,-0.036 -0.674,-0.163 -1.142,-0.163 -1.052,0 -1.485,0.422 -1.485,1.469 l 0,6.323 2.906,0 -0.755,1.976 -2.151,0 0,4.197 -2.522,-1.283 0,-2.914 -1.84,0 0,-1.976 L 300.077,240.873 z m -12.993,2.208 c -1.189,0 -2.323,-0.499 -2.911,-1.281 l 0,1.049 -2.528,0 0,-11.622 2.528,0 0,6.783 c 0,1.884 0.814,2.925 2.296,2.925 1.609,0 2.296,-0.942 2.296,-3.145 l 0,-6.563 2.522,0 0,6.651 C 291.287,241.284 289.838,243.081 287.084,243.081 z m -8.14,-11.201 0,10.969 -2.528,0 0,-11.622 2.528,0 L 278.944,231.88 z m 17.467,0 0,10.969 -2.539,0 0,-11.622 2.539,0 0,0.653"
id="path228" />
</clipPath>
<linearGradient
x1="0"
y1="0"
x2="1"
y2="0"
id="linearGradient238"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(43.083,-29.888,-29.888,-43.083,263.712,253.272)"
spreadMethod="pad">
<stop
id="stop240"
style="stop-color:#870e12;stop-opacity:1"
offset="0" />
<stop
id="stop242"
style="stop-color:#ba151b;stop-opacity:1"
offset="0.1" />
<stop
id="stop244"
style="stop-color:#ed1c24;stop-opacity:1"
offset="0.25" />
<stop
id="stop246"
style="stop-color:#ba151b;stop-opacity:1"
offset="0.75" />
<stop
id="stop248"
style="stop-color:#730b0e;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<metadata
id="metadata6802">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-889.85553,-314.53342)"
id="layer1">
<g
transform="matrix(3.8824272,0,0,3.8824272,-171.52727,-2605.337)"
id="g6762">
<g
transform="matrix(1.25,0,0,-1.25,-46.875,1061.1122)"
id="g222">
<g
clip-path="url(#clipPath226)"
id="g224">
<g
id="g230">
<g
id="g236">
<path
d="m 253.893,247.231 64.129,0 0,-20.1 -64.129,0 L 253.893,247.231 Z"
id="path250"
style="fill:url(#linearGradient238);stroke:none" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.25,0,0,-1.25,347.9825,771.1547)"
id="g252">
<path
d="m 0,0 c 0.18,0 0.285,0.088 0.285,0.225 l 0,0.007 C 0.285,0.378 0.18,0.457 0,0.457 l -0.36,0 L -0.36,0 0,0 z m -0.635,0.706 0.646,0 C 0.202,0.706 0.352,0.648 0.452,0.549 0.527,0.477 0.569,0.374 0.569,0.248 l 0,-0.008 c 0,-0.233 -0.137,-0.379 -0.337,-0.436 l 0.39,-0.546 -0.329,0 -0.351,0.499 -0.302,0 0,-0.499 -0.275,0 L -0.635,0.706 z m 1.797,-0.764 0,0.009 c 0,0.684 -0.532,1.238 -1.236,1.238 -0.707,0 -1.241,-0.562 -1.241,-1.247 l 0,-0.007 c 0,-0.686 0.53,-1.239 1.233,-1.239 C 0.627,-1.304 1.162,-0.742 1.162,-0.058 z m -2.623,-0.007 0,0.007 c 0,0.752 0.612,1.384 1.387,1.384 0.777,0 1.381,-0.624 1.381,-1.375 l 0,-0.009 c 0,-0.752 -0.612,-1.384 -1.389,-1.384 -0.775,0 -1.379,0.624 -1.379,1.377"
id="path254"
style="fill:#730b0e;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -16,35 +16,8 @@
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jplayer/jquery.jplayer.min.js"></script>
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js" integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script>
<!--script type="text/javascript" src="https://unpkg.com/leaflet.nontiledlayer/dist/NonTiledLayer.js"></script-->
<script type="text/javascript" src="js/leaflet/NonTiledLayer.src.js"></script>
<script type="text/javascript" src="js/leaflet/iso8601.min.js"></script>
<script type="text/javascript" src="js/leaflet/timedimension/leaflet.timedimension.min.js"></script>
<script src="/js/date_fns.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.marquee@1.5.0/jquery.marquee.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/radar.js"></script>
<script type="text/javascript" src="js/audio.js"></script>
<script type="text/javascript" src="js/groupull.js"></script>
<script type="text/javascript" src="js/data-manager.js"></script>
<script type="text/javascript" src="js/location.js"></script>
<script type="text/javascript" src="js/loops.js"></script>
<script type="text/javascript" src="js/slides-loop.js"></script>
<script type="text/javascript" src="js/weather.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<div id="main" class="container">
<img id="template" src="images/template-4k.jpg"/>
<div id="info-slides-container">
<div id="info-slides-header">
@ -55,7 +28,6 @@
<div id='info-slide-container'>
<!-- CURRENT CONDITIONS AND FORECAST-->
<div class="info-slide city-info-slide" style="display:none">
<div class="info-subheader">
@ -104,10 +76,7 @@
</div>
<div id="date-time">
<div id="date"></div>
<div id="time"></div>
</div>
<div id="clock">Jul 20<br/>1:15:28am</div>
<div id="city"></div>
@ -121,7 +90,7 @@
<div id="minimap-title">PAST 3 HOURS</div>
<div id="minimap"></div>
<div id="logo-area"><img src="images/midco_logo_shadow.png"/></div>
<div id="logo-area"><img src="images/mso-logos/cablevision.svg"/></div>
<div id="forecast-shadow">
<div id="forecast-header">
@ -151,6 +120,6 @@
</div>
</div>
<script type="text/javascript" src="js/weatherscan.js"></script>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -157,8 +157,8 @@ function WeatherAudio() {
// click for debugging or whater you want
$('body').on('click', function(){
//$player.jPlayer("playHead", 100);
//getWeatherbyLocation();
$player.jPlayer("playHead", 100);
getWeatherbyLocation();
});

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 696 B

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 618 B