Compare commits
16 Commits
752ff9c0aa
...
1.0.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b6cb710f5 | ||
|
|
ce39fbe8eb | ||
|
|
98665b9e9a | ||
|
|
543f1fbee3 | ||
|
|
d25ec216de | ||
|
|
bcaffeeff8 | ||
|
|
b296bca869 | ||
|
|
72895de2a1 | ||
|
|
7044169e76 | ||
|
|
e89f83bf2d | ||
|
|
f113022b00 | ||
|
|
1e14664a54 | ||
|
|
19cec75d2c | ||
|
|
609da6ba6a | ||
|
|
9393e8be06 | ||
|
|
58be407f0a |
12
_teendők.md
@@ -2,18 +2,8 @@
|
|||||||
|
|
||||||
og: tag: pluginnal!
|
og: tag: pluginnal!
|
||||||
|
|
||||||
Facebook like gomb
|
|
||||||
|
|
||||||
# egyéb
|
# egyéb
|
||||||
|
|
||||||
Betöltéskor rejteni a dolgokat méretezés előtt, vagy betöltést optimalizálni
|
|
||||||
|
|
||||||
onresize js!
|
|
||||||
|
|
||||||
`@media print{}`
|
`@media print{}`
|
||||||
|
|
||||||
# Megjegyzések
|
képaláírás régi
|
||||||
|
|
||||||
~ Adrinak írni, hogy küldjön tökéletesen négyzet logót - szerintem nem kell, megoldottam azt az 1px problémát
|
|
||||||
|
|
||||||
- MEgnézni, hogy gördülésre fekete logó legyen!
|
|
||||||
6871
css/base.css
@@ -18,7 +18,7 @@
|
|||||||
(f[s].q=f[s].q||[]).push(arguments)},f[s].l=1*new Date();h=i.createElement(r),
|
(f[s].q=f[s].q||[]).push(arguments)},f[s].l=1*new Date();h=i.createElement(r),
|
||||||
l=i.getElementsByTagName(r)[0];h.async=1;h.src=e;l.parentNode.insertBefore(h,l)
|
l=i.getElementsByTagName(r)[0];h.async=1;h.src=e;l.parentNode.insertBefore(h,l)
|
||||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
ga('create', 'UA-XXXXXXXX-XX', 'yourdomain.com');
|
ga('create', 'UA-72435346-2', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ if (function_exists('add_theme_support')) {
|
|||||||
add_image_size('home-big-thumbnail', 1024, 1024, true); // Custom Thumbnail Size call using the_post_thumbnail('home-thumbnail');
|
add_image_size('home-big-thumbnail', 1024, 1024, true); // Custom Thumbnail Size call using the_post_thumbnail('home-thumbnail');
|
||||||
add_image_size('home-small-thumbnail', 256, 256, true); // Custom Thumbnail Size call using the_post_thumbnail('home-thumbnail');
|
add_image_size('home-small-thumbnail', 256, 256, true); // Custom Thumbnail Size call using the_post_thumbnail('home-thumbnail');
|
||||||
add_image_size('home-event-thumbnail', 1024, 537, true);
|
add_image_size('home-event-thumbnail', 1024, 537, true);
|
||||||
|
add_image_size('single-thumbnail', 1280, 1280, true);
|
||||||
|
|
||||||
// Add Support for Custom Backgrounds - Uncomment below if you're going to use
|
// Add Support for Custom Backgrounds - Uncomment below if you're going to use
|
||||||
/*add_theme_support('custom-background', array(
|
/*add_theme_support('custom-background', array(
|
||||||
@@ -225,6 +226,15 @@ function add_slug_to_body_class($classes)
|
|||||||
return $classes;
|
return $classes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function add_masonry_to_body_class( $classes ) {
|
||||||
|
if(is_home() || is_archive() || is_search() || is_404()){
|
||||||
|
$classes[] = 'masonrypage';
|
||||||
|
} else if(is_singular()){
|
||||||
|
$classes[] = 'singularpage';
|
||||||
|
}
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
|
||||||
// // If Dynamic Sidebar Exists
|
// // If Dynamic Sidebar Exists
|
||||||
// if (function_exists('register_sidebar'))
|
// if (function_exists('register_sidebar'))
|
||||||
// {
|
// {
|
||||||
@@ -605,6 +615,7 @@ remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
|
|||||||
// Add Filters
|
// Add Filters
|
||||||
add_filter('avatar_defaults', 'dis2019gravatar'); // Custom Gravatar in Settings > Discussion
|
add_filter('avatar_defaults', 'dis2019gravatar'); // Custom Gravatar in Settings > Discussion
|
||||||
add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build)
|
add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build)
|
||||||
|
add_filter('body_class', 'add_masonry_to_body_class'); // Add masonry to body class
|
||||||
add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar
|
add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar
|
||||||
add_filter('widget_text', 'shortcode_unautop'); // Remove <p> tags in Dynamic Sidebars (better!)
|
add_filter('widget_text', 'shortcode_unautop'); // Remove <p> tags in Dynamic Sidebars (better!)
|
||||||
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding <div> from WP Navigation
|
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding <div> from WP Navigation
|
||||||
|
|||||||
14
gulpfile.js
@@ -3,12 +3,15 @@
|
|||||||
var gulp = require('gulp');
|
var gulp = require('gulp');
|
||||||
var sass = require('gulp-sass');
|
var sass = require('gulp-sass');
|
||||||
var livereload = require('gulp-livereload');
|
var livereload = require('gulp-livereload');
|
||||||
|
var cleanCSS = require('gulp-clean-css');
|
||||||
|
var svgmin = require('gulp-svgmin');
|
||||||
|
|
||||||
sass.compiler = require('node-sass');
|
sass.compiler = require('node-sass');
|
||||||
|
|
||||||
gulp.task('sass', function () {
|
gulp.task('sass', function () {
|
||||||
return gulp.src('./sass/**/*.scss')
|
return gulp.src('./sass/**/*.scss')
|
||||||
.pipe(sass().on('error', sass.logError))
|
.pipe(sass().on('error', sass.logError))
|
||||||
|
.pipe(cleanCSS())
|
||||||
.pipe(gulp.dest('./css'))
|
.pipe(gulp.dest('./css'))
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -28,5 +31,14 @@ gulp.task('watch', function () {
|
|||||||
livereload.listen()
|
livereload.listen()
|
||||||
gulp.watch('./sass/**/*.scss', gulp.series('sass'))
|
gulp.watch('./sass/**/*.scss', gulp.series('sass'))
|
||||||
gulp.watch(['./**', '!./node_modules/**'], gulp.series('liverel'))
|
gulp.watch(['./**', '!./node_modules/**'], gulp.series('liverel'))
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gulp.task('minify-svg', function () {
|
||||||
|
return gulp.src('./imgmax/**/*.svg')
|
||||||
|
.pipe(svgmin({
|
||||||
|
plugins: [{
|
||||||
|
removeViewBox: false
|
||||||
|
}]
|
||||||
|
}))
|
||||||
|
.pipe(gulp.dest('./img'));
|
||||||
|
})
|
||||||
|
|||||||
79
header.php
@@ -36,6 +36,10 @@
|
|||||||
|
|
||||||
<body <?php body_class();?>>
|
<body <?php body_class();?>>
|
||||||
|
|
||||||
|
<!-- facebook -->
|
||||||
|
<div id="fb-root"></div>
|
||||||
|
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/hu_HU/sdk.js#xfbml=1&version=v4.0&appId=525065661232966&autoLogAppEvents=1"></script>
|
||||||
|
|
||||||
<!-- wrapper -->
|
<!-- wrapper -->
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
|
|
||||||
@@ -44,20 +48,13 @@
|
|||||||
|
|
||||||
<!-- ------------------------------ header-1 ------------------------------- -->
|
<!-- ------------------------------ header-1 ------------------------------- -->
|
||||||
|
|
||||||
<div class="header-1">
|
<div class="header-1 header-inner">
|
||||||
<!-- logo -->
|
<!-- logo -->
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="<?php echo home_url(); ?>">
|
<a href="<?php echo home_url(); ?>">
|
||||||
<div class="dis-logo">
|
<div class="dis-logo">
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/dis-logo-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-logo-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/dis-logo-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-logo-black.png" />
|
|
||||||
</object> -->
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- /logo -->
|
<!-- /logo -->
|
||||||
@@ -65,14 +62,7 @@
|
|||||||
<a href="https://www.facebook.com/designisso" target="_blank">
|
<a href="https://www.facebook.com/designisso" target="_blank">
|
||||||
<div class="facebook-icon icon menuicon">
|
<div class="facebook-icon icon menuicon">
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/facebook_icon-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/facebook_icon-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/facebook_icon-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/facebook_icon-black.png" />
|
|
||||||
</object> -->
|
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -81,14 +71,7 @@
|
|||||||
<div class="kereso-icon icon">
|
<div class="kereso-icon icon">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/kereso_icon-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/kereso_icon-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/kereso_icon-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/kereso_icon-black.png" />
|
|
||||||
</object> -->
|
|
||||||
</button>
|
</button>
|
||||||
<div class="search-bar">
|
<div class="search-bar">
|
||||||
<?php get_search_form();?>
|
<?php get_search_form();?>
|
||||||
@@ -108,21 +91,11 @@
|
|||||||
|
|
||||||
<!-- ----------------------------- header 2 ------------------------------ -->
|
<!-- ----------------------------- header 2 ------------------------------ -->
|
||||||
|
|
||||||
<div class="header-2">
|
<div class="header-2 header-inner">
|
||||||
<div class="menubutton">
|
<div class="menubutton">
|
||||||
<button type="button" id="toggle-sidebar">
|
<button type="button" id="toggle-sidebar">
|
||||||
<div class="menubutton-icon icon menuicon">
|
<div class="menubutton-icon icon menuicon">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/dis-plus-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-plus-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/dis-plus-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-plus-black.png" />
|
|
||||||
</object> -->
|
|
||||||
|
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -131,14 +104,7 @@
|
|||||||
<div class="instagram-icon icon menuicon">
|
<div class="instagram-icon icon menuicon">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/instagram_icon-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/instagram_icon-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/instagram_icon-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/instagram_icon-black.png" />
|
|
||||||
</object> -->
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="events-link">
|
<div class="events-link">
|
||||||
@@ -146,14 +112,7 @@
|
|||||||
<div class="esemeny-icon icon menuicon">
|
<div class="esemeny-icon icon menuicon">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <object class="white" data="<?php echo get_template_directory_uri(); ?>/img/naptar_icon-white.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/naptar_icon-white.png" />
|
|
||||||
</object>
|
|
||||||
<object class="black" data="<?php echo get_template_directory_uri(); ?>/img/naptar_icon-black.svg"
|
|
||||||
type="image/svg+xml">
|
|
||||||
<img src="<?php echo get_template_directory_uri(); ?>/img/naptar_icon-black.png" />
|
|
||||||
</object> -->
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -181,23 +140,17 @@
|
|||||||
|
|
||||||
<div id="tag-nav">
|
<div id="tag-nav">
|
||||||
<nav role="navigation" class="tag-nav">
|
<nav role="navigation" class="tag-nav">
|
||||||
<!-- <?php //$walker = new Menu_With_Description; ?> -->
|
|
||||||
<?php wp_nav_menu(array('theme_location' => 'tag-menu'));?>
|
<?php wp_nav_menu(array('theme_location' => 'tag-menu'));?>
|
||||||
</nav>
|
</nav>
|
||||||
<!-- <div class="sub-wrapper">
|
|
||||||
</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- ----------------------- to top arrow on mobile ------------------------ -->
|
|
||||||
|
|
||||||
<!-- <div class="totop">
|
|
||||||
<a href="#top">
|
|
||||||
<object data="<?php //echo get_template_directory_uri(); ?>/img/arrow.svg" type="image/svg+xml">
|
|
||||||
<img src="<?php //echo get_template_directory_uri(); ?>/img/arrow.png" />
|
|
||||||
</object>
|
|
||||||
</a>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
<!-- /header -->
|
<!-- /header -->
|
||||||
|
<div class="loadingscreen">
|
||||||
|
|
||||||
|
</div>
|
||||||
<main role="main">
|
<main role="main">
|
||||||
@@ -1,62 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="165.19" height="85.243" viewBox="0 0 43.706 22.554"><path d="M.374.374l21.432 21.431.047-.047.048.047L43.332.375" fill="none" stroke="#fff" stroke-width="1.058" stroke-miterlimit="10"/></svg>
|
||||||
<!-- 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="43.706402mm"
|
|
||||||
height="22.553785mm"
|
|
||||||
viewBox="0 0 43.706402 22.553785"
|
|
||||||
version="1.1"
|
|
||||||
id="svg229"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
|
||||||
sodipodi:docname="arrow.svg">
|
|
||||||
<defs
|
|
||||||
id="defs223" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="1.4"
|
|
||||||
inkscape:cx="488.62332"
|
|
||||||
inkscape:cy="48.879693"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:window-width="3374"
|
|
||||||
inkscape:window-height="1385"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="1" />
|
|
||||||
<metadata
|
|
||||||
id="metadata226">
|
|
||||||
<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(587.30561,-162.50287)">
|
|
||||||
<path
|
|
||||||
d="m -586.93144,162.87705 21.4316,21.43125 0.0476,-0.0476 0.0476,0.0476 21.43125,-21.43125"
|
|
||||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
id="path212"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 238 B |
@@ -1,25 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M77.433 75.667C54.308 99.215 23.631 107.153 8.4 92.896-6.83 78.638-.847 47.583 22.278 24.036 45.404.486 76.498-7.045 91.728 7.213 106.96 21.47 100.56 52.12 77.434 75.667z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 100 99.999997" enable-background="new 0 0 479.621 491.252" xml:space="preserve" sodipodi:docname="be_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<metadata id="metadata9">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs id="defs7" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1415" inkscape:window-height="954" id="namedview5" showgrid="false" inkscape:zoom="0.48040515" inkscape:cx="136.7731" inkscape:cy="212.32121" inkscape:window-x="946" inkscape:window-y="216" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path id="svgPath" d="M 77.433483,75.667378 C 54.307747,99.215178 23.63064,107.15327 8.4000886,92.895608 -6.8306716,78.637748 -0.84741189,47.583218 22.278323,24.035208 45.404268,0.48720829 76.49837,-7.0439617 91.728922,7.2138983 106.95947,21.471348 100.55943,52.119578 77.433483,75.667378 Z" />
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 77.433483,75.667378 C 54.307747,99.215178 23.63064,107.15327 8.4000886,92.895608 -6.8306716,78.637748 -0.84741189,47.583218 22.278323,24.035208 45.404268,0.48720829 76.49837,-7.0439617 91.728922,7.2138983 106.95947,21.471348 100.55943,52.119578 77.433483,75.667378 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 275 B |
@@ -1,15 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 1077.252 536.91"><path d="M4.484 126.232C38.201-.521 304.892-39.604 600.152 38.936c295.264 78.537 507.29 244.957 473.576 371.709-33.716 126.751-300.406 165.834-595.67 87.297C182.797 419.404-29.229 252.983 4.484 126.232z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
|
|
||||||
<svg 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="100" height="50" viewBox="0 0 1077.252 536.91" enable-background="new 0 0 1077.252 536.91" xml:space="preserve" sodipodi:docname="be_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<metadata id="metadata9" />
|
|
||||||
<defs id="defs7" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="0.44503832" inkscape:cx="527.59275" inkscape:cy="270.8118" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path id="svgPath" d="M 4.484,126.232 C 38.201,-0.521 304.892,-39.604 600.152,38.936 c 295.264,78.537 507.29,244.957 473.576,371.709 -33.716,126.751 -300.406,165.834 -595.67,87.297 C 182.797,419.404 -29.229,252.983 4.484,126.232 Z" inkscape:connector-curvature="0" />
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 4.484,126.232 C 38.201,-0.521 304.892,-39.604 600.152,38.936 c 295.264,78.537 507.29,244.957 473.576,371.709 -33.716,126.751 -300.406,165.834 -595.67,87.297 C 182.797,419.404 -29.229,252.983 4.484,126.232 Z" inkscape:connector-curvature="0" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 305 B |
@@ -1,25 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 42.69L4.495 69.52V100H100V69.303H35.777l63.626-8.66-4.382-26.119 3.378.363L99.485 3.85 1.568 0 .482 31.03l67.854 2.397z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999999 99.999998" enable-background="new 0 0 480.604 508.191" xml:space="preserve" sodipodi:docname="do_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1491" inkscape:window-height="1019" id="namedview5" showgrid="false" inkscape:zoom="2.6269996" inkscape:cx="-45.728655" inkscape:cy="12.034621" inkscape:window-x="1337" inkscape:window-y="129" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<metadata id="metadata9">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs id="defs7" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path id="svgPath" d="M 0,42.689068 4.4951769,69.521499 V 100 H 100 V 69.302881 H 35.776648 L 99.403043,60.64216 95.020641,34.524028 98.399098,34.887474 99.484815,3.8493401 1.5676108,0 0.48230976,31.029082 68.336302,33.427393 Z"/>
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 0,42.689068 4.4951769,69.521499 V 100 H 100 V 69.302881 H 35.776648 L 99.403043,60.64216 95.020641,34.524028 98.399098,34.887474 99.484815,3.8493401 1.5676108,0 0.48230976,31.029082 68.336302,33.427393 Z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 227 B |
@@ -1,14 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 1078.734 536.91"><path d="M969.418 163L-.572 210.955V539h1079V376H137.691l940.737-46.461V0h-1079v163z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
|
|
||||||
<svg 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="100" height="50" viewBox="0 0 1078.734 536.91" enable-background="new 0 0 1078.734 536.91" xml:space="preserve" sodipodi:docname="do_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<defs id="defs7" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="2.5140581" inkscape:cx="65.295123" inkscape:cy="39.493045" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<polygon points="969.418,163 -0.572,210.955 -0.572,376.047 -0.572,382.857 -0.572,539 1078.428,539 1078.428,376 137.691,376 1078.428,329.539 1078.428,163.047 1078.428,157.639 1078.428,0 -0.572,0 -0.572,163 " />
|
|
||||||
</clipPath>
|
|
||||||
<polygon id="svgMask" points="969.418,163 -0.572,210.955 -0.572,376.047 -0.572,382.857 -0.572,539 1078.428,539 1078.428,376 137.691,376 1078.428,329.539 1078.428,163.047 1078.428,157.639 1078.428,0 -0.572,0 -0.572,163 " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 187 B |
@@ -1,25 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M100 29.217C100 13.081 86.43 0 69.69 0S39.38 13.08 39.38 29.217c0 5.56 1.61 10.757 4.407 15.18a31.111 31.111 0 00-13.477-3.041C13.57 41.356 0 54.438 0 70.574S13.607 100 30.347 100h.013-.026 69.64V30.39c.016-.39.026-.78.026-1.173z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999997 100" enable-background="new 0 0 482.14 500.987" xml:space="preserve" sodipodi:docname="love_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<metadata id="metadata9">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs id="defs7" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1633" inkscape:window-height="1080" id="namedview5" showgrid="false" inkscape:zoom="0.66619374" inkscape:cx="412.21122" inkscape:cy="206.63424" inkscape:window-x="1417" inkscape:window-y="87" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path id="svgPath" d="M 99.999996,29.21714 C 99.999996,13.081 86.42957,0 69.689706,0 52.949843,0 39.379417,13.0808 39.379417,29.21714 c 0,5.55985 1.611041,10.75649 4.407823,15.18075 C 39.727409,42.45198 35.152118,41.35575 30.31029,41.35575 13.570219,41.35575 0,54.43795 0,70.57429 -2.0726027e-4,86.71022 13.606904,100 30.346975,100 c 0.034,0 -0.02114,0 0.01306,0 h -0.02611 69.639757 V 30.39008 C 99.989636,30.0007 100,29.61012 100,29.21714 Z" />
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 99.999996,29.21714 C 99.999996,13.081 86.42957,0 69.689706,0 52.949843,0 39.379417,13.0808 39.379417,29.21714 c 0,5.55985 1.611041,10.75649 4.407823,15.18075 C 39.727409,42.45198 35.152118,41.35575 30.31029,41.35575 13.570219,41.35575 0,54.43795 0,70.57429 -2.0726027e-4,86.71022 13.606904,100 30.346975,100 c 0.034,0 -0.02114,0 0.01306,0 h -0.02611 69.639757 V 30.39008 C 99.989636,30.0007 100,29.61012 100,29.21714 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 334 B |
@@ -1,14 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 1077.252 536.91"><path d="M453.183 35.101C404.96 13.122 340.698-.295 270.126-.295c-149.67 0-271 60.328-271 134.75 0 69.605 106.143 126.88 242.336 134-136.193 7.12-242.336 64.393-242.336 134 0 74.42 121.33 134.75 271 134.75 70.545 0 134.785-13.406 183.002-35.37l624.998-232.63z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
|
|
||||||
<svg 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="100" height="50" viewBox="0 0 1077.252 536.91" enable-background="new 0 0 1077.252 536.91" xml:space="preserve" sodipodi:docname="love_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<defs id="defs7" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="7.1206131" inkscape:cx="52.51157" inkscape:cy="21.160947" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path d="M 453.183,35.101 C 404.96,13.122 340.698,-0.295 270.126,-0.295 c -149.67,0 -271,60.328 -271,134.75 0,69.605 106.143,126.88 242.336,134 -136.193,7.12 -242.336,64.393 -242.336,134 0,74.42 121.33,134.75 271,134.75 70.545,0 134.785,-13.406 183.002,-35.37 l 624.998,-232.63 z" inkscape:connector-curvature="0" />
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 453.183,35.101 C 404.96,13.122 340.698,-0.295 270.126,-0.295 c -149.67,0 -271,60.328 -271,134.75 0,69.605 106.143,126.88 242.336,134 -136.193,7.12 -242.336,64.393 -242.336,134 0,74.42 121.33,134.75 271,134.75 70.545,0 134.785,-13.406 183.002,-35.37 l 624.998,-232.63 z" inkscape:connector-curvature="0" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 362 B |
@@ -1,25 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M32.577 100c-4.573 0-8.543-2.136-11.198-6.032-2.684-3.937-3.809-8.635-3.253-13.585 1.006-8.967 11.95-21.975 26.236-32.22-1.073.605-12.217 8.49-13.31 8.946-14.28 5.955-21.869 1.846-26.042-3.464C.698 48.159-.906 41.436.492 34.713 2.385 25.607 9.705 17.26 22.87 9.191 31.312 4.017 39.283.725 39.62.587c4.692-1.927 9.805 1.047 11.42 6.643 1.615 5.596-.878 11.694-5.57 13.62-.223.093-7.075 2.95-14.17 7.27-8.264 5.034-11.78 8.977-12.937 10.876.794.074 3.126-.083 8.184-2.927 5.34-3.004 12.272-7.258 18.377-11.453C51.505 20.093 71.113 6.79 76.54 3.35 79.87 1.24 82.936.563 85.686.441c4.748-.209 8.794 2.062 11.41 6.394 2.305 3.819 3.186 8.295 2.548 12.945-1.664 12.115-29.496 31.043-43.235 42.792-3.428 2.932-6.934 5.93-10.085 8.826 1.734-1.14 3.528-2.349 5.362-3.585 15.257-10.284 29.666-19.996 40.376-11.89 5.955 4.507 8.58 13.055 7.805 25.408-.37 5.902-4.685 10.327-9.63 9.886-4.949-.441-8.66-5.583-8.29-11.485.16-2.542.079-4.211-.041-5.244-1.149.23-3.196.878-6.54 2.642-4.52 2.386-9.765 5.921-14.838 9.34-6.472 4.363-12.585 8.483-18.136 11.006-3.644 1.656-6.783 2.48-9.596 2.523l-.219.001z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999999 99.999998" enable-background="new 0 0 480.604 508.191" xml:space="preserve" sodipodi:docname="think_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<metadata id="metadata11">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs id="defs9" />
|
|
||||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="2074" inkscape:window-height="1062" id="namedview7" showgrid="false" inkscape:zoom="2.56" inkscape:cx="8.39166" inkscape:cy="65.978929" inkscape:window-x="1064" inkscape:window-y="234" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
|
||||||
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
|
||||||
<path id="svgPath" d="M 32.576974,100 C 28.004237,100 24.034448,97.863929 21.378539,93.967755 18.694898,90.030672 17.570097,85.333272 18.125775,80.383031 19.132298,71.416483 30.076528,58.407684 44.36239,48.163565 43.288849,48.767827 32.144616,56.653368 31.051958,57.109159 16.771139,63.063975 9.1832453,58.955472 5.0098828,53.64463 0.69828342,48.159174 -0.90593487,41.436059 0.49197876,34.713343 2.3852758,25.607303 9.7050994,17.258986 22.870361,9.1906495 31.312465,4.0169041 39.283346,0.72459317 39.618643,0.58669847 44.311129,-1.3400358 49.423787,1.6343789 51.03914,7.23019 c 1.615353,5.595811 -0.878581,11.69371 -5.570436,13.620644 -0.223112,0.0922 -7.074233,2.948871 -14.169264,7.269905 -8.263951,5.033456 -11.781214,8.976726 -12.937528,10.875123 0.794546,0.07463 3.126502,-0.08282 8.184117,-2.927319 C 31.886841,33.064593 38.817585,28.81121 44.92269,24.616098 51.505321,20.092713 71.113507,6.7889668 76.540454,3.3501802 79.870321,1.2402515 82.935689,0.56275149 85.686137,0.44142011 90.433875,0.23228314 94.480136,2.5030557 97.096129,6.8354639 99.401405,10.65381 100.2823,15.1299 99.643845,19.779805 97.980382,31.894983 70.148161,50.822677 56.408943,62.572264 c -3.428397,2.931709 -6.934315,5.929871 -10.084768,8.826059 1.733841,-1.139876 3.527558,-2.348999 5.36224,-3.585661 15.256461,-10.283233 29.666064,-19.996129 40.376049,-11.889677 5.954053,4.506822 8.580126,13.055496 7.804912,25.408147 -0.370592,5.901734 -4.685552,10.327336 -9.630351,9.886312 -4.948581,-0.441622 -8.659964,-5.583837 -8.289372,-11.485571 0.159455,-2.541772 0.07836,-4.211276 -0.04181,-5.244189 -1.148751,0.229891 -3.196252,0.878056 -6.539774,2.642549 -4.519794,2.385319 -9.765227,5.920891 -14.837968,9.340121 -6.472126,4.362542 -12.585215,8.483019 -18.136113,11.005235 -3.644155,1.656133 -6.783053,2.481107 -9.595897,2.523014 -0.07311,7.98e-4 -0.14664,0.0014 -0.21912,0.0014 z"/>
|
|
||||||
</clipPath>
|
|
||||||
<path id="svgMask" d="M 32.576974,100 C 28.004237,100 24.034448,97.863929 21.378539,93.967755 18.694898,90.030672 17.570097,85.333272 18.125775,80.383031 19.132298,71.416483 30.076528,58.407684 44.36239,48.163565 43.288849,48.767827 32.144616,56.653368 31.051958,57.109159 16.771139,63.063975 9.1832453,58.955472 5.0098828,53.64463 0.69828342,48.159174 -0.90593487,41.436059 0.49197876,34.713343 2.3852758,25.607303 9.7050994,17.258986 22.870361,9.1906495 31.312465,4.0169041 39.283346,0.72459317 39.618643,0.58669847 44.311129,-1.3400358 49.423787,1.6343789 51.03914,7.23019 c 1.615353,5.595811 -0.878581,11.69371 -5.570436,13.620644 -0.223112,0.0922 -7.074233,2.948871 -14.169264,7.269905 -8.263951,5.033456 -11.781214,8.976726 -12.937528,10.875123 0.794546,0.07463 3.126502,-0.08282 8.184117,-2.927319 C 31.886841,33.064593 38.817585,28.81121 44.92269,24.616098 51.505321,20.092713 71.113507,6.7889668 76.540454,3.3501802 79.870321,1.2402515 82.935689,0.56275149 85.686137,0.44142011 90.433875,0.23228314 94.480136,2.5030557 97.096129,6.8354639 99.401405,10.65381 100.2823,15.1299 99.643845,19.779805 97.980382,31.894983 70.148161,50.822677 56.408943,62.572264 c -3.428397,2.931709 -6.934315,5.929871 -10.084768,8.826059 1.733841,-1.139876 3.527558,-2.348999 5.36224,-3.585661 15.256461,-10.283233 29.666064,-19.996129 40.376049,-11.889677 5.954053,4.506822 8.580126,13.055496 7.804912,25.408147 -0.370592,5.901734 -4.685552,10.327336 -9.630351,9.886312 -4.948581,-0.441622 -8.659964,-5.583837 -8.289372,-11.485571 0.159455,-2.541772 0.07836,-4.211276 -0.04181,-5.244189 -1.148751,0.229891 -3.196252,0.878056 -6.539774,2.642549 -4.519794,2.385319 -9.765227,5.920891 -14.837968,9.340121 -6.472126,4.362542 -12.585215,8.483019 -18.136113,11.005235 -3.644155,1.656133 -6.783053,2.481107 -9.595897,2.523014 -0.07311,7.98e-4 -0.14664,0.0014 -0.21912,0.0014 z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 4.6 KiB |
@@ -1,45 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 122.1 232" height="232" width="122.1"><path d="M.75 0c0 63.609 53.351 116 121.35 116C54.101 116 .75 168.389.75 232" fill="none" stroke="#000" stroke-width="1.5" stroke-miterlimit="10"/></svg>
|
||||||
<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"
|
|
||||||
viewBox="0 0 122.1 232"
|
|
||||||
height="232"
|
|
||||||
width="122.1"
|
|
||||||
xml:space="preserve"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
sodipodi:docname="curvy_arrow.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1656"
|
|
||||||
inkscape:window-height="959"
|
|
||||||
id="namedview18"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="2.0311646"
|
|
||||||
inkscape:cx="20.24125"
|
|
||||||
inkscape:cy="178.83688"
|
|
||||||
inkscape:window-x="1062"
|
|
||||||
inkscape:window-y="261"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="svg2" /><metadata
|
|
||||||
id="metadata8"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs6" /><path
|
|
||||||
id="path226"
|
|
||||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
d="M 0.75,0 C 0.75,63.609 54.101,116 122.1,116 54.101,116 0.75,168.389 0.75,232"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccc" /></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 244 B |
@@ -1,73 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="178.748" height="176.877" viewBox="0 0 47.294 46.799"><path d="M30.854 12.886L13.138 30.72l3.303 3.193L34.156 16.08zM4.801 4.441v11.403h2.851c1.83 0 3.39 0 4.862-.99 1.44-.96 2.31-2.58 2.31-4.802 0-1.98-.81-3.48-2.16-4.47-1.561-1.14-3.151-1.14-4.922-1.14zM0 0h7.682c2.491 0 5.042 0 7.683 1.741 2.64 1.65 4.5 4.501 4.5 8.311 0 4.112-2.19 7.233-5.25 8.883-2.431 1.32-4.562 1.32-6.903 1.32H0zM45.014 31.855c-2.401-1.05-4.891-1.591-7.263-1.591-1.68 0-3.06.51-3.03 1.891 0 1.62 2.46 1.92 5.16 2.34 3.843.571 7.413 1.77 7.413 5.851 0 5.012-5.161 6.453-9.212 6.453-3.481 0-6.662-.69-9.452-2.191l1.95-4.141c2.34 1.2 5.161 2.01 7.862 2.01 1.59 0 3.511-.36 3.511-1.98.03-1.47-1.5-1.89-3.99-2.25-4.113-.51-8.313-1.62-8.343-6.153.03-4.35 4.23-6.15 8.641-6.15 2.882 0 5.463.45 8.403 1.74z"/></svg>
|
||||||
<!-- 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="47.293671mm"
|
|
||||||
height="46.798794mm"
|
|
||||||
viewBox="0 0 47.293671 46.798794"
|
|
||||||
version="1.1"
|
|
||||||
id="svg260"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
|
||||||
sodipodi:docname="dis-logo.svg">
|
|
||||||
<defs
|
|
||||||
id="defs254" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="1.4"
|
|
||||||
inkscape:cx="185.14836"
|
|
||||||
inkscape:cy="-80.588807"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
inkscape:current-layer="layer2"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:window-width="2001"
|
|
||||||
inkscape:window-height="1335"
|
|
||||||
inkscape:window-x="673"
|
|
||||||
inkscape:window-y="69"
|
|
||||||
inkscape:window-maximized="0" />
|
|
||||||
<metadata
|
|
||||||
id="metadata257">
|
|
||||||
<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:groupmode="layer"
|
|
||||||
id="layer2"
|
|
||||||
inkscape:label="Layer 2"
|
|
||||||
style="display:inline"
|
|
||||||
transform="translate(-11.221473,-3.6311089)">
|
|
||||||
<path
|
|
||||||
d="m 42.075803,16.517198 -17.7165,17.834327 3.3027,3.19264 17.71509,-17.83327 z"
|
|
||||||
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path172"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
d="M 16.022423,8.0725809 V 19.475417 h 2.8515 c 1.83021,0 3.3902,0 4.86128,-0.9906 1.44074,-0.960261 2.31069,-2.579864 2.31069,-4.801306 0,-1.980494 -0.81033,-3.480505 -2.16006,-4.4707521 -1.56139,-1.140178 -3.15171,-1.140178 -4.92195,-1.140178 z m -4.80095,-4.441472 h 7.68208 c 2.49097,0 5.04155,0 7.68245,1.740959 2.64054,1.650294 4.50109,4.501091 4.50109,8.3114431 0,4.111978 -2.19075,7.232297 -5.25145,8.882592 -2.43064,1.320447 -4.56107,1.320447 -6.9021,1.320447 h -7.71207 z"
|
|
||||||
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path176"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
d="m 56.235493,35.485884 c -2.40101,-1.050219 -4.89127,-1.591027 -7.26264,-1.591027 -1.68028,0 -3.0607,0.510469 -3.02966,1.891594 0,1.619953 2.45922,1.920168 5.16009,2.340327 3.8421,0.570441 7.41186,1.770239 7.41186,5.850818 0,5.011563 -5.16079,6.452307 -9.21174,6.452307 -3.48121,0 -6.66221,-0.689682 -9.45232,-2.191102 l 1.95015,-4.140907 c 2.34103,1.199798 5.16149,2.010482 7.86201,2.010482 1.58961,0 3.51119,-0.359834 3.51119,-1.980497 0.0296,-1.46967 -1.50072,-1.890535 -3.99027,-2.250368 -4.11233,-0.50941 -8.31285,-1.620308 -8.34284,-6.152444 0.03,-4.349398 4.23051,-6.150681 8.64165,-6.150681 2.88113,0 5.46241,0.449792 8.40246,1.740606 z"
|
|
||||||
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path180"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 831 B |
@@ -1,73 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="178.748" height="176.877" viewBox="0 0 47.294 46.799"><g fill="#fff"><path d="M30.854 12.886L13.138 30.72l3.303 3.193L34.156 16.08zM4.801 4.441v11.403h2.851c1.83 0 3.39 0 4.862-.99 1.44-.96 2.31-2.58 2.31-4.802 0-1.98-.81-3.48-2.16-4.47-1.561-1.14-3.151-1.14-4.922-1.14zM0 0h7.682c2.491 0 5.042 0 7.683 1.741 2.64 1.65 4.5 4.501 4.5 8.311 0 4.112-2.19 7.233-5.25 8.883-2.431 1.32-4.562 1.32-6.903 1.32H0zM45.014 31.855c-2.401-1.05-4.891-1.591-7.263-1.591-1.68 0-3.06.51-3.03 1.891 0 1.62 2.46 1.92 5.16 2.34 3.843.571 7.413 1.77 7.413 5.851 0 5.012-5.161 6.453-9.212 6.453-3.481 0-6.662-.69-9.452-2.191l1.95-4.141c2.34 1.2 5.161 2.01 7.862 2.01 1.59 0 3.511-.36 3.511-1.98.03-1.47-1.5-1.89-3.99-2.25-4.113-.51-8.313-1.62-8.343-6.153.03-4.35 4.23-6.15 8.641-6.15 2.882 0 5.463.45 8.403 1.74z"/></g></svg>
|
||||||
<!-- 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="47.293671mm"
|
|
||||||
height="46.798794mm"
|
|
||||||
viewBox="0 0 47.293671 46.798794"
|
|
||||||
version="1.1"
|
|
||||||
id="svg260"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
|
||||||
sodipodi:docname="dis-logo.svg">
|
|
||||||
<defs
|
|
||||||
id="defs254" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="1.4"
|
|
||||||
inkscape:cx="185.14836"
|
|
||||||
inkscape:cy="-80.588807"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
inkscape:current-layer="layer2"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:window-width="2001"
|
|
||||||
inkscape:window-height="1335"
|
|
||||||
inkscape:window-x="673"
|
|
||||||
inkscape:window-y="69"
|
|
||||||
inkscape:window-maximized="0" />
|
|
||||||
<metadata
|
|
||||||
id="metadata257">
|
|
||||||
<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:groupmode="layer"
|
|
||||||
id="layer2"
|
|
||||||
inkscape:label="Layer 2"
|
|
||||||
style="display:inline"
|
|
||||||
transform="translate(-11.221473,-3.6311089)">
|
|
||||||
<path
|
|
||||||
d="m 42.075803,16.517198 -17.7165,17.834327 3.3027,3.19264 17.71509,-17.83327 z"
|
|
||||||
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path172"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
d="M 16.022423,8.0725809 V 19.475417 h 2.8515 c 1.83021,0 3.3902,0 4.86128,-0.9906 1.44074,-0.960261 2.31069,-2.579864 2.31069,-4.801306 0,-1.980494 -0.81033,-3.480505 -2.16006,-4.4707521 -1.56139,-1.140178 -3.15171,-1.140178 -4.92195,-1.140178 z m -4.80095,-4.441472 h 7.68208 c 2.49097,0 5.04155,0 7.68245,1.740959 2.64054,1.650294 4.50109,4.501091 4.50109,8.3114431 0,4.111978 -2.19075,7.232297 -5.25145,8.882592 -2.43064,1.320447 -4.56107,1.320447 -6.9021,1.320447 h -7.71207 z"
|
|
||||||
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path176"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
d="m 56.235493,35.485884 c -2.40101,-1.050219 -4.89127,-1.591027 -7.26264,-1.591027 -1.68028,0 -3.0607,0.510469 -3.02966,1.891594 0,1.619953 2.45922,1.920168 5.16009,2.340327 3.8421,0.570441 7.41186,1.770239 7.41186,5.850818 0,5.011563 -5.16079,6.452307 -9.21174,6.452307 -3.48121,0 -6.66221,-0.689682 -9.45232,-2.191102 l 1.95015,-4.140907 c 2.34103,1.199798 5.16149,2.010482 7.86201,2.010482 1.58961,0 3.51119,-0.359834 3.51119,-1.980497 0.0296,-1.46967 -1.50072,-1.890535 -3.99027,-2.250368 -4.11233,-0.50941 -8.31285,-1.620308 -8.34284,-6.152444 0.03,-4.349398 4.23051,-6.150681 8.64165,-6.150681 2.88113,0 5.46241,0.449792 8.40246,1.740606 z"
|
|
||||||
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
|
||||||
id="path180"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 850 B |
@@ -1,53 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="57" height="58" viewBox="0 0 57 58"><path d="M34 0H24v24H0v10h24v24h10V34h23V24H34z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="57px"
|
|
||||||
height="58px"
|
|
||||||
viewBox="0 0 57 58"
|
|
||||||
enable-background="new 0 0 57 58"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="dis-plus.svg"
|
|
||||||
inkscape:export-filename="/media/miniretek/ssd/www/designisso/wp-content/themes/dis-2019/img/dis-plus.png"
|
|
||||||
inkscape:export-xdpi="165.51724"
|
|
||||||
inkscape:export-ydpi="165.51724"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata9"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs7" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1511"
|
|
||||||
inkscape:window-height="866"
|
|
||||||
id="namedview5"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="4.0689655"
|
|
||||||
inkscape:cx="-17.639047"
|
|
||||||
inkscape:cy="33.915254"
|
|
||||||
inkscape:window-x="173"
|
|
||||||
inkscape:window-y="235"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<polygon
|
|
||||||
points="34,0 24,0 24,1 24,24 0,24 0,25 0,34 24,34 24,58 33,58 34,58 34,34 56,34 57,34 57,24 34,24 "
|
|
||||||
id="polygon2"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 139 B |
@@ -1,53 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="57" height="58" viewBox="0 0 57 58"><path fill="#fff" d="M34 0H24v24H0v10h24v24h10V34h23V24H34z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="57px"
|
|
||||||
height="58px"
|
|
||||||
viewBox="0 0 57 58"
|
|
||||||
enable-background="new 0 0 57 58"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="dis-plus.svg"
|
|
||||||
inkscape:export-filename="/media/miniretek/ssd/www/designisso/wp-content/themes/dis-2019/img/dis-plus.png"
|
|
||||||
inkscape:export-xdpi="165.51724"
|
|
||||||
inkscape:export-ydpi="165.51724"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata9"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs7" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1511"
|
|
||||||
inkscape:window-height="866"
|
|
||||||
id="namedview5"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="4.0689655"
|
|
||||||
inkscape:cx="-17.639047"
|
|
||||||
inkscape:cy="33.915254"
|
|
||||||
inkscape:window-x="173"
|
|
||||||
inkscape:window-y="235"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<polygon
|
|
||||||
points="34,0 24,0 24,1 24,24 0,24 0,25 0,34 24,34 24,58 33,58 34,58 34,34 56,34 57,34 57,24 34,24 "
|
|
||||||
id="polygon2"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 151 B |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="44.034" height="44.082" viewBox="0 0 44.034 44.082"><path d="M36.379 7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338 4.004 7.668 7.678a20.26 20.26 0 00-5.949 14.364c0 5.615 2.278 10.693 5.949 14.376 3.67 3.675 8.741 5.944 14.349 5.944s10.681-2.27 14.362-5.944a20.303 20.303 0 005.937-14.376 20.261 20.261 0 00-5.937-14.364M22.017 0C28.1 0 33.598 2.467 37.585 6.456a21.981 21.981 0 016.449 15.586c0 6.09-2.462 11.595-6.449 15.586a21.926 21.926 0 01-15.569 6.454 21.925 21.925 0 01-15.569-6.454A21.98 21.98 0 010 22.042 21.985 21.985 0 016.448 6.456C10.436 2.467 15.935 0 22.017 0"/><path d="M23.699 17.539v-1.806c0-.866.574-1.073.989-1.073h2.523v-3.857h-3.475c-3.865 0-4.731 2.855-4.731 4.711v2.026h-2.242v4.503h2.267v11.253h4.5V22.042h3.326l.147-1.768.268-2.735h-3.572z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="44.034px"
|
|
||||||
height="44.082px"
|
|
||||||
viewBox="0 0 44.034 44.082"
|
|
||||||
enable-background="new 0 0 44.034 44.082"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="facebook_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><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="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1368"
|
|
||||||
inkscape:window-height="1220"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="10.707318"
|
|
||||||
inkscape:cx="21.943301"
|
|
||||||
inkscape:cy="16.544497"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g6"
|
|
||||||
style="fill:#000000;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M36.379,7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338,4.004,7.668,7.678c-3.671,3.673-5.949,8.751-5.949,14.364 c0,5.615,2.278,10.693,5.949,14.376c3.67,3.675,8.741,5.944,14.349,5.944s10.681-2.27,14.362-5.944 c3.669-3.684,5.937-8.762,5.937-14.376C42.315,16.429,40.048,11.351,36.379,7.678 M22.017,0C28.1,0,33.598,2.467,37.585,6.456 c3.987,3.994,6.449,9.498,6.449,15.586c0,6.09-2.462,11.595-6.449,15.586c-3.988,3.991-9.485,6.454-15.569,6.454 c-6.082,0-11.581-2.462-15.569-6.454C2.462,33.637,0,28.132,0,22.042C0,15.954,2.462,10.45,6.448,6.456 C10.436,2.467,15.935,0,22.017,0"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M23.699,17.539v-1.806c0-0.866,0.574-1.073,0.989-1.073h2.523v-3.857h-3.475c-3.865,0-4.731,2.855-4.731,4.711v2.026 h-2.242v2.722v1.781h2.267v11.253h4.5V22.042h3.326l0.147-1.768l0.268-2.735H23.699z"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 828 B |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="44.034" height="44.082" viewBox="0 0 44.034 44.082"><g fill="#fff"><path d="M36.379 7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338 4.004 7.668 7.678a20.26 20.26 0 00-5.949 14.364c0 5.615 2.278 10.693 5.949 14.376 3.67 3.675 8.741 5.944 14.349 5.944s10.681-2.27 14.362-5.944a20.303 20.303 0 005.937-14.376 20.261 20.261 0 00-5.937-14.364M22.017 0C28.1 0 33.598 2.467 37.585 6.456a21.981 21.981 0 016.449 15.586c0 6.09-2.462 11.595-6.449 15.586a21.926 21.926 0 01-15.569 6.454 21.925 21.925 0 01-15.569-6.454A21.98 21.98 0 010 22.042 21.985 21.985 0 016.448 6.456C10.436 2.467 15.935 0 22.017 0"/><path d="M23.699 17.539v-1.806c0-.866.574-1.073.989-1.073h2.523v-3.857h-3.475c-3.865 0-4.731 2.855-4.731 4.711v2.026h-2.242v4.503h2.267v11.253h4.5V22.042h3.326l.147-1.768.268-2.735h-3.572z"/></g></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="44.034px"
|
|
||||||
height="44.082px"
|
|
||||||
viewBox="0 0 44.034 44.082"
|
|
||||||
enable-background="new 0 0 44.034 44.082"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="facebook_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><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="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1368"
|
|
||||||
inkscape:window-height="1220"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="10.707318"
|
|
||||||
inkscape:cx="21.943301"
|
|
||||||
inkscape:cy="16.544497"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g6"
|
|
||||||
style="fill:#ffffff;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M36.379,7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338,4.004,7.668,7.678c-3.671,3.673-5.949,8.751-5.949,14.364 c0,5.615,2.278,10.693,5.949,14.376c3.67,3.675,8.741,5.944,14.349,5.944s10.681-2.27,14.362-5.944 c3.669-3.684,5.937-8.762,5.937-14.376C42.315,16.429,40.048,11.351,36.379,7.678 M22.017,0C28.1,0,33.598,2.467,37.585,6.456 c3.987,3.994,6.449,9.498,6.449,15.586c0,6.09-2.462,11.595-6.449,15.586c-3.988,3.991-9.485,6.454-15.569,6.454 c-6.082,0-11.581-2.462-15.569-6.454C2.462,33.637,0,28.132,0,22.042C0,15.954,2.462,10.45,6.448,6.456 C10.436,2.467,15.935,0,22.017,0"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M23.699,17.539v-1.806c0-0.866,0.574-1.073,0.989-1.073h2.523v-3.857h-3.475c-3.865,0-4.731,2.855-4.731,4.711v2.026 h-2.242v2.722v1.781h2.267v11.253h4.5V22.042h3.326l0.147-1.768l0.268-2.735H23.699z"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 847 B |
@@ -1 +1 @@
|
|||||||
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="981.333" height="981.333" viewBox="0 0 736.000000 736.000000"><path d="M0 161.5v157.6l80.8-.4c44.4-.2 82.5-.7 84.7-1 2.2-.4 6-1 8.5-1.3 2.5-.4 5-.8 5.5-1 .6-.1 2.1-.4 3.5-.7 6.4-1.3 16.1-4 22.2-6.3 3.7-1.4 7-2.6 7.2-2.6 1.2 0 20.2-10.1 24.3-12.8 2.4-1.7 4.7-3 5-3 1.7 0 20.1-16.1 26.5-23.2 4-4.4 8.1-8.9 9.1-9.9.9-1 1.7-2.2 1.7-2.7 0-.4 1.2-2.1 2.6-3.7 1.4-1.7 3-3.9 3.5-5 1-2.2 3.1-5.7 3.9-6.5 1.5-1.4 11.7-24.3 12.5-28 .1-.8 1-4 1.9-7 .8-3 1.8-6.7 2.1-8.2 1.1-6 1.4-7.5 2.1-12.3 1.1-6.6 1.1-39.5.1-46.4-.9-5.4-1.1-6.7-2.4-13.1-.9-4.6-1-4.9-1.3-5.5-.1-.3-.3-.8-.4-1.3-.2-.4-1.1-3.4-2.1-6.7-1-3.3-1.8-6.3-1.7-6.8.1-.4-.2-.7-.8-.7-.6 0-.9-.3-.8-.8.6-3.1-14.5-30.2-20.7-36.8-.5-.6-2.8-3.3-4.9-6-5.5-6.8-18-17.7-28.9-25.2-5.1-3.5-9.9-6.6-10.7-7-.8-.3-1.7-.8-2-1.2-.8-1-15.1-7.7-22-10.4-6.1-2.3-18.4-5.9-24-7-1.4-.3-3.4-.7-4.5-.9-1.2-.3-4.8-.8-8-1.2-3.3-.4-7.1-.9-8.5-1.2-1.4-.4-38.8-.8-83.2-1L0 3.8v157.7zm155-87.1c10.7 1.5 30 7.6 30.8 9.8.2.4 1.2.8 2.2.8 1 0 2 .3 2.2.7.2.5 2.2 2 4.5 3.5 7 4.6 16.3 13.9 21.5 21.6 4.6 6.8 10.2 18.6 11.3 23.6.2 1.2.6 3.2.9 4.6 2.1 9.4 2.8 27.5 1.5 36-1.4 8.8-2 11.5-3.1 15-.7 1.9-1.2 3.7-1.3 4 0 .3-1.1 3.2-2.5 6.5-6.5 16.2-19.4 30.2-35.5 38.7-7.1 3.7-17.7 7.5-23.1 8.3-1.6.2-4 .6-5.4.9-6 1.4-18.7 1.9-50.2 2l-33.8.2-.1-3.1c-.1-3.9-.1-170.4 0-172.8.1-1.8 1.6-1.9 37.9-1.4 20.7.3 39.7.8 42.2 1.1zM389.5 295.6C229.5 456.6 205 481.3 205 481.9c0 .3 6.6 6.9 14.6 14.6 8 7.7 19.3 18.6 25.1 24.3 5.8 5.6 10.8 10.2 11.1 10.2.4 0 27.2-26.7 59.7-59.4 84.6-85.2 214.9-216.5 215.4-217.1.3-.3-3.8-4.6-9-9.6s-16.5-16-25.2-24.5-16.1-15.4-16.5-15.4c-.4 0-41.2 40.8-90.7 90.6zM582 408c0 .3-2.1.5-4.8.6-4.7 0-14.5 1-19.2 1.9-1.4.3-4.7.9-7.5 1.5-2.7.6-5.9 1.2-7 1.4-1.1.2-5.5 1.6-9.8 3-4.3 1.4-8.2 2.6-8.7 2.6-1.9 0-19.6 9.2-26.1 13.6-13.5 9.1-24.8 22.3-30.8 35.9-5 11.2-6.8 21.4-6.6 36.2.2 7.6.5 14.8.9 16 .3 1.3.8 3.3 1.1 4.5 6.2 28.4 30.9 50.6 69.5 62.3.3.1 1.2.4 2 .8 3.1 1.2 27.4 6.6 32.7 7.2 1.2.2 3.4.6 5 .9 3.4.7 7.1 1.2 14.3 2.1 22.5 2.7 42.9 7.7 51.7 12.7 6.4 3.6 12 10.2 13.3 15.9 2.4 9.8-1.1 20.9-8.3 26.3-11.2 8.4-22.6 11-47.7 10.9-20.6-.2-31.8-1.5-51-5.9-5.8-1.4-11.2-2.6-12-2.8-1.8-.3-15.7-4.5-18.5-5.6-1.1-.4-3.1-1.2-4.5-1.8-1.4-.5-6.8-2.7-12-4.7-5.2-2.1-12.1-5.1-15.2-6.7-3.2-1.5-6.1-2.8-6.5-2.8-.5 0-1.5 1.5-2.2 3.2-.8 1.8-4.2 8.9-7.5 15.8s-6 12.7-6.1 13c-.1.6-8 17.3-10.5 22.3-1.1 2.2-2 4.5-2 5.3 0 .8-.4 1.4-1 1.4-.5 0-1 .8-1 1.7 0 1.9 2.4 3.1 25.5 13.4 5.5 2.4 30.9 10.9 34 11.3 1.1.2 3.8.8 6 1.4 2.2.6 5.4 1.4 7 1.6 1.7.3 4.1.8 5.5 1.1 1.4.3 3.9.7 5.5 1 2.8.5 5.2.9 10.8 1.9 1.2.2 4.7.7 7.7 1 3 .4 8.2.9 11.5 1.3 8.6.9 50.8.9 59 0 12.3-1.4 20.4-2.6 22.7-3.3 2.5-.8 6.1-1.5 8.3-1.8 1.1-.2 2.7-.6 3.5-.9.8-.3 5.3-1.7 10-3.2 8.8-2.8 22.7-8.7 27-11.5 11.3-7.4 15.1-10.3 21.1-16.2 10.6-10.5 17-21.5 21.5-36.5 2.2-7.5 2.7-10.9 2.8-22.3.1-16.2-.7-23.2-4-31.8-3.8-10.2-8.8-18.3-16.3-26.2-3-3.2-14.6-12-15.8-12-.7 0-1.3-.3-1.3-.8 0-.9-17.4-9.3-22-10.7-.3-.1-3.9-1.2-8-2.5s-7.9-2.5-8.5-2.7c-.5-.1-2.8-.7-5-1.2s-5.1-1.2-6.5-1.5c-1.4-.4-3.6-.8-5-1.1-1.4-.3-3.5-.7-4.6-.9-1.2-.2-3.9-.7-6-1-2.2-.3-5.2-.9-6.7-1.2-1.6-.3-3.8-.7-5-.9-9.5-1.2-13.3-1.8-20.7-3.1-4.7-.8-11.7-2.2-15.6-3-3.9-.8-7.9-1.7-9-1.9-1-.2-2-.4-2.1-.5-.2-.2-.6-.3-1-.4-8.3-2.2-17.8-6-19.3-7.7-.3-.3-1.2-.8-2.1-1.1-2.6-1-8.6-9-9.7-12.8-2.4-9.1 1.2-20.1 8.6-25.7 5-3.8 14.3-7.4 19.4-7.6 2.1-.1 3.8-.5 3.8-.8 0-.7.1-.7 16-.8 16-.1 19.3.2 34 2.4 1.4.2 5 .7 8 1 3 .4 5.8.9 6.1 1.1.7.4 5.9 1.3 9.4 1.7 1.1.1 2.2.4 2.5.7.3.3 3.9 1.4 8 2.4 7.5 1.8 20.8 5.9 24.5 7.5 6.6 2.9 18.6 7.3 18.9 7 .3-.3 2.1-4.6 6.1-14.4.5-1.1.9-2.2.9-2.5.4-1.3 8.9-22.6 9.4-23.5.4-.6.7-1.2.7-1.5 0-.6 2.2-6.4 3.6-9.5 2.1-4.9 4.9-12.8 4.7-13.1-.4-.3-17.9-7.5-19.3-7.8-.5-.2-1.7-.6-2.5-.9-7.6-3.1-36.3-11.1-44.3-12.2-2.3-.4-6-1-8.2-1.5-2.2-.5-6.5-1.2-9.5-1.6-3-.3-6.8-.8-8.5-1-11.2-1.3-51.5-2.4-51.5-1.4z"/></svg>
|
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="981.333" height="981.333" viewBox="0 0 736 736"><path d="M0 161.5v157.6l80.8-.4c44.4-.2 82.5-.7 84.7-1 2.2-.4 6-1 8.5-1.3 2.5-.4 5-.8 5.5-1 .6-.1 2.1-.4 3.5-.7 6.4-1.3 16.1-4 22.2-6.3 3.7-1.4 7-2.6 7.2-2.6 1.2 0 20.2-10.1 24.3-12.8 2.4-1.7 4.7-3 5-3 1.7 0 20.1-16.1 26.5-23.2 4-4.4 8.1-8.9 9.1-9.9.9-1 1.7-2.2 1.7-2.7 0-.4 1.2-2.1 2.6-3.7 1.4-1.7 3-3.9 3.5-5 1-2.2 3.1-5.7 3.9-6.5 1.5-1.4 11.7-24.3 12.5-28 .1-.8 1-4 1.9-7 .8-3 1.8-6.7 2.1-8.2 1.1-6 1.4-7.5 2.1-12.3 1.1-6.6 1.1-39.5.1-46.4-.9-5.4-1.1-6.7-2.4-13.1-.9-4.6-1-4.9-1.3-5.5-.1-.3-.3-.8-.4-1.3-.2-.4-1.1-3.4-2.1-6.7-1-3.3-1.8-6.3-1.7-6.8.1-.4-.2-.7-.8-.7-.6 0-.9-.3-.8-.8.6-3.1-14.5-30.2-20.7-36.8-.5-.6-2.8-3.3-4.9-6-5.5-6.8-18-17.7-28.9-25.2-5.1-3.5-9.9-6.6-10.7-7-.8-.3-1.7-.8-2-1.2-.8-1-15.1-7.7-22-10.4-6.1-2.3-18.4-5.9-24-7-1.4-.3-3.4-.7-4.5-.9-1.2-.3-4.8-.8-8-1.2-3.3-.4-7.1-.9-8.5-1.2-1.4-.4-38.8-.8-83.2-1L0 3.8v157.7zm155-87.1c10.7 1.5 30 7.6 30.8 9.8.2.4 1.2.8 2.2.8 1 0 2 .3 2.2.7.2.5 2.2 2 4.5 3.5 7 4.6 16.3 13.9 21.5 21.6 4.6 6.8 10.2 18.6 11.3 23.6.2 1.2.6 3.2.9 4.6 2.1 9.4 2.8 27.5 1.5 36-1.4 8.8-2 11.5-3.1 15-.7 1.9-1.2 3.7-1.3 4 0 .3-1.1 3.2-2.5 6.5-6.5 16.2-19.4 30.2-35.5 38.7-7.1 3.7-17.7 7.5-23.1 8.3-1.6.2-4 .6-5.4.9-6 1.4-18.7 1.9-50.2 2l-33.8.2-.1-3.1c-.1-3.9-.1-170.4 0-172.8.1-1.8 1.6-1.9 37.9-1.4 20.7.3 39.7.8 42.2 1.1zm234.5 221.2C229.5 456.6 205 481.3 205 481.9c0 .3 6.6 6.9 14.6 14.6 8 7.7 19.3 18.6 25.1 24.3 5.8 5.6 10.8 10.2 11.1 10.2.4 0 27.2-26.7 59.7-59.4 84.6-85.2 214.9-216.5 215.4-217.1.3-.3-3.8-4.6-9-9.6s-16.5-16-25.2-24.5-16.1-15.4-16.5-15.4c-.4 0-41.2 40.8-90.7 90.6zM582 408c0 .3-2.1.5-4.8.6-4.7 0-14.5 1-19.2 1.9-1.4.3-4.7.9-7.5 1.5-2.7.6-5.9 1.2-7 1.4-1.1.2-5.5 1.6-9.8 3-4.3 1.4-8.2 2.6-8.7 2.6-1.9 0-19.6 9.2-26.1 13.6-13.5 9.1-24.8 22.3-30.8 35.9-5 11.2-6.8 21.4-6.6 36.2.2 7.6.5 14.8.9 16 .3 1.3.8 3.3 1.1 4.5 6.2 28.4 30.9 50.6 69.5 62.3.3.1 1.2.4 2 .8 3.1 1.2 27.4 6.6 32.7 7.2 1.2.2 3.4.6 5 .9 3.4.7 7.1 1.2 14.3 2.1 22.5 2.7 42.9 7.7 51.7 12.7 6.4 3.6 12 10.2 13.3 15.9 2.4 9.8-1.1 20.9-8.3 26.3-11.2 8.4-22.6 11-47.7 10.9-20.6-.2-31.8-1.5-51-5.9-5.8-1.4-11.2-2.6-12-2.8-1.8-.3-15.7-4.5-18.5-5.6-1.1-.4-3.1-1.2-4.5-1.8-1.4-.5-6.8-2.7-12-4.7-5.2-2.1-12.1-5.1-15.2-6.7-3.2-1.5-6.1-2.8-6.5-2.8-.5 0-1.5 1.5-2.2 3.2-.8 1.8-4.2 8.9-7.5 15.8s-6 12.7-6.1 13c-.1.6-8 17.3-10.5 22.3-1.1 2.2-2 4.5-2 5.3 0 .8-.4 1.4-1 1.4-.5 0-1 .8-1 1.7 0 1.9 2.4 3.1 25.5 13.4 5.5 2.4 30.9 10.9 34 11.3 1.1.2 3.8.8 6 1.4 2.2.6 5.4 1.4 7 1.6 1.7.3 4.1.8 5.5 1.1 1.4.3 3.9.7 5.5 1 2.8.5 5.2.9 10.8 1.9 1.2.2 4.7.7 7.7 1 3 .4 8.2.9 11.5 1.3 8.6.9 50.8.9 59 0 12.3-1.4 20.4-2.6 22.7-3.3 2.5-.8 6.1-1.5 8.3-1.8 1.1-.2 2.7-.6 3.5-.9.8-.3 5.3-1.7 10-3.2 8.8-2.8 22.7-8.7 27-11.5 11.3-7.4 15.1-10.3 21.1-16.2 10.6-10.5 17-21.5 21.5-36.5 2.2-7.5 2.7-10.9 2.8-22.3.1-16.2-.7-23.2-4-31.8-3.8-10.2-8.8-18.3-16.3-26.2-3-3.2-14.6-12-15.8-12-.7 0-1.3-.3-1.3-.8 0-.9-17.4-9.3-22-10.7-.3-.1-3.9-1.2-8-2.5s-7.9-2.5-8.5-2.7c-.5-.1-2.8-.7-5-1.2s-5.1-1.2-6.5-1.5c-1.4-.4-3.6-.8-5-1.1-1.4-.3-3.5-.7-4.6-.9-1.2-.2-3.9-.7-6-1-2.2-.3-5.2-.9-6.7-1.2-1.6-.3-3.8-.7-5-.9-9.5-1.2-13.3-1.8-20.7-3.1-4.7-.8-11.7-2.2-15.6-3-3.9-.8-7.9-1.7-9-1.9-1-.2-2-.4-2.1-.5-.2-.2-.6-.3-1-.4-8.3-2.2-17.8-6-19.3-7.7-.3-.3-1.2-.8-2.1-1.1-2.6-1-8.6-9-9.7-12.8-2.4-9.1 1.2-20.1 8.6-25.7 5-3.8 14.3-7.4 19.4-7.6 2.1-.1 3.8-.5 3.8-.8 0-.7.1-.7 16-.8 16-.1 19.3.2 34 2.4 1.4.2 5 .7 8 1 3 .4 5.8.9 6.1 1.1.7.4 5.9 1.3 9.4 1.7 1.1.1 2.2.4 2.5.7.3.3 3.9 1.4 8 2.4 7.5 1.8 20.8 5.9 24.5 7.5 6.6 2.9 18.6 7.3 18.9 7 .3-.3 2.1-4.6 6.1-14.4.5-1.1.9-2.2.9-2.5.4-1.3 8.9-22.6 9.4-23.5.4-.6.7-1.2.7-1.5 0-.6 2.2-6.4 3.6-9.5 2.1-4.9 4.9-12.8 4.7-13.1-.4-.3-17.9-7.5-19.3-7.8-.5-.2-1.7-.6-2.5-.9-7.6-3.1-36.3-11.1-44.3-12.2-2.3-.4-6-1-8.2-1.5-2.2-.5-6.5-1.2-9.5-1.6-3-.3-6.8-.8-8.5-1-11.2-1.3-51.5-2.4-51.5-1.4z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="42.531" height="43.102" viewBox="0 0 42.531 43.102"><path d="M7.367 7.451a19.986 19.986 0 00-5.748 14.058 19.959 19.959 0 005.748 14.045c3.543 3.593 8.441 5.824 13.859 5.824 5.416 0 10.313-2.231 13.869-5.824a19.947 19.947 0 005.735-14.045c0-5.49-2.19-10.454-5.735-14.058-3.556-3.592-8.453-5.813-13.869-5.813-5.418.001-10.316 2.221-13.859 5.813M-.042 21.509c0-5.954 2.379-11.349 6.23-15.238 3.851-3.902 9.16-6.313 15.037-6.313 5.875 0 11.184 2.41 15.035 6.313 3.85 3.89 6.229 9.284 6.229 15.238a21.637 21.637 0 01-6.229 15.238c-3.852 3.902-9.16 6.313-15.035 6.313-5.877 0-11.187-2.41-15.037-6.313a21.633 21.633 0 01-6.23-15.238"/><path d="M21.226 14.54c-3.793 0-6.877 3.112-6.877 6.969 0 3.842 3.084 6.969 6.877 6.969 3.803 0 6.875-3.127 6.875-6.969 0-3.857-3.072-6.969-6.875-6.969m-7.807.13c0 .621.493 1.123 1.105 1.123.613 0 1.107-.502 1.107-1.123s-.494-1.121-1.107-1.121c-.611 0-1.105.5-1.105 1.121m-1.59 12.531V15.805c0-2.112 1.696-3.83 3.78-3.83h11.244c2.084 0 3.781 1.718 3.781 3.83v11.396c0 2.111-1.697 3.83-3.781 3.83H15.609c-2.084 0-3.78-1.718-3.78-3.83M10.57 15.805v11.396c0 2.804 2.259 5.106 5.039 5.106h11.244c2.767 0 5.039-2.303 5.039-5.106V15.805c0-2.817-2.272-5.107-5.039-5.107H15.609c-2.78-.001-5.039 2.289-5.039 5.107m10.656 11.216c-3.004 0-5.453-2.469-5.453-5.513 0-3.055 2.449-5.525 5.453-5.525 3.014 0 5.451 2.471 5.451 5.525 0 3.045-2.437 5.513-5.451 5.513"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="42.531px"
|
|
||||||
height="43.102px"
|
|
||||||
viewBox="0 0 42.531 43.102"
|
|
||||||
enable-background="new 0 0 42.531 43.102"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="instagram_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><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="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1503"
|
|
||||||
inkscape:window-height="1382"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="15.486724"
|
|
||||||
inkscape:cx="21.988053"
|
|
||||||
inkscape:cy="18.191441"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g6"
|
|
||||||
style="fill:#000000;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M7.367,7.451c-3.545,3.604-5.748,8.567-5.748,14.058c0,5.477,2.203,10.453,5.748,14.045 c3.543,3.593,8.441,5.824,13.859,5.824c5.416,0,10.313-2.231,13.869-5.824c3.545-3.592,5.735-8.568,5.735-14.045 c0-5.49-2.19-10.454-5.735-14.058c-3.556-3.592-8.453-5.813-13.869-5.813C15.808,1.639,10.91,3.859,7.367,7.451 M-0.042,21.509 c0-5.954,2.379-11.349,6.23-15.238c3.851-3.902,9.16-6.313,15.037-6.313c5.875,0,11.184,2.41,15.035,6.313 c3.85,3.89,6.229,9.284,6.229,15.238c0,5.943-2.379,11.337-6.229,15.238c-3.852,3.902-9.16,6.313-15.035,6.313 c-5.877,0-11.187-2.41-15.037-6.313C2.337,32.846-0.042,27.452-0.042,21.509"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M21.226,14.54c-3.793,0-6.877,3.112-6.877,6.969c0,3.842,3.084,6.969,6.877,6.969c3.803,0,6.875-3.127,6.875-6.969 C28.101,17.652,25.029,14.54,21.226,14.54 M13.419,14.67c0,0.621,0.493,1.123,1.105,1.123c0.613,0,1.107-0.502,1.107-1.123 c0-0.621-0.494-1.121-1.107-1.121C13.913,13.549,13.419,14.049,13.419,14.67 M11.829,27.201V15.805c0-2.112,1.696-3.83,3.78-3.83 h11.244c2.084,0,3.781,1.718,3.781,3.83v11.396c0,2.111-1.697,3.83-3.781,3.83H15.609C13.525,31.031,11.829,29.313,11.829,27.201 M10.57,15.805v11.396c0,2.804,2.259,5.106,5.039,5.106h11.244c2.767,0,5.039-2.303,5.039-5.106V15.805 c0-2.817-2.272-5.107-5.039-5.107H15.609C12.829,10.697,10.57,12.987,10.57,15.805 M21.226,27.021 c-3.004,0-5.453-2.469-5.453-5.513c0-3.055,2.449-5.525,5.453-5.525c3.014,0,5.451,2.471,5.451,5.525 C26.677,24.553,24.24,27.021,21.226,27.021"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="42.531" height="43.102" viewBox="0 0 42.531 43.102"><g fill="#fff"><path d="M7.367 7.451a19.986 19.986 0 00-5.748 14.058 19.959 19.959 0 005.748 14.045c3.543 3.593 8.441 5.824 13.859 5.824 5.416 0 10.313-2.231 13.869-5.824a19.947 19.947 0 005.735-14.045c0-5.49-2.19-10.454-5.735-14.058-3.556-3.592-8.453-5.813-13.869-5.813-5.418.001-10.316 2.221-13.859 5.813M-.042 21.509c0-5.954 2.379-11.349 6.23-15.238 3.851-3.902 9.16-6.313 15.037-6.313 5.875 0 11.184 2.41 15.035 6.313 3.85 3.89 6.229 9.284 6.229 15.238a21.637 21.637 0 01-6.229 15.238c-3.852 3.902-9.16 6.313-15.035 6.313-5.877 0-11.187-2.41-15.037-6.313a21.633 21.633 0 01-6.23-15.238"/><path d="M21.226 14.54c-3.793 0-6.877 3.112-6.877 6.969 0 3.842 3.084 6.969 6.877 6.969 3.803 0 6.875-3.127 6.875-6.969 0-3.857-3.072-6.969-6.875-6.969m-7.807.13c0 .621.493 1.123 1.105 1.123.613 0 1.107-.502 1.107-1.123s-.494-1.121-1.107-1.121c-.611 0-1.105.5-1.105 1.121m-1.59 12.531V15.805c0-2.112 1.696-3.83 3.78-3.83h11.244c2.084 0 3.781 1.718 3.781 3.83v11.396c0 2.111-1.697 3.83-3.781 3.83H15.609c-2.084 0-3.78-1.718-3.78-3.83M10.57 15.805v11.396c0 2.804 2.259 5.106 5.039 5.106h11.244c2.767 0 5.039-2.303 5.039-5.106V15.805c0-2.817-2.272-5.107-5.039-5.107H15.609c-2.78-.001-5.039 2.289-5.039 5.107m10.656 11.216c-3.004 0-5.453-2.469-5.453-5.513 0-3.055 2.449-5.525 5.453-5.525 3.014 0 5.451 2.471 5.451 5.525 0 3.045-2.437 5.513-5.451 5.513"/></g></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="42.531px"
|
|
||||||
height="43.102px"
|
|
||||||
viewBox="0 0 42.531 43.102"
|
|
||||||
enable-background="new 0 0 42.531 43.102"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="instagram_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><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="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1503"
|
|
||||||
inkscape:window-height="1382"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="15.486724"
|
|
||||||
inkscape:cx="21.988053"
|
|
||||||
inkscape:cy="18.191441"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g6"
|
|
||||||
style="fill:#ffffff;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M7.367,7.451c-3.545,3.604-5.748,8.567-5.748,14.058c0,5.477,2.203,10.453,5.748,14.045 c3.543,3.593,8.441,5.824,13.859,5.824c5.416,0,10.313-2.231,13.869-5.824c3.545-3.592,5.735-8.568,5.735-14.045 c0-5.49-2.19-10.454-5.735-14.058c-3.556-3.592-8.453-5.813-13.869-5.813C15.808,1.639,10.91,3.859,7.367,7.451 M-0.042,21.509 c0-5.954,2.379-11.349,6.23-15.238c3.851-3.902,9.16-6.313,15.037-6.313c5.875,0,11.184,2.41,15.035,6.313 c3.85,3.89,6.229,9.284,6.229,15.238c0,5.943-2.379,11.337-6.229,15.238c-3.852,3.902-9.16,6.313-15.035,6.313 c-5.877,0-11.187-2.41-15.037-6.313C2.337,32.846-0.042,27.452-0.042,21.509"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M21.226,14.54c-3.793,0-6.877,3.112-6.877,6.969c0,3.842,3.084,6.969,6.877,6.969c3.803,0,6.875-3.127,6.875-6.969 C28.101,17.652,25.029,14.54,21.226,14.54 M13.419,14.67c0,0.621,0.493,1.123,1.105,1.123c0.613,0,1.107-0.502,1.107-1.123 c0-0.621-0.494-1.121-1.107-1.121C13.913,13.549,13.419,14.049,13.419,14.67 M11.829,27.201V15.805c0-2.112,1.696-3.83,3.78-3.83 h11.244c2.084,0,3.781,1.718,3.781,3.83v11.396c0,2.111-1.697,3.83-3.781,3.83H15.609C13.525,31.031,11.829,29.313,11.829,27.201 M10.57,15.805v11.396c0,2.804,2.259,5.106,5.039,5.106h11.244c2.767,0,5.039-2.303,5.039-5.106V15.805 c0-2.817-2.272-5.107-5.039-5.107H15.609C12.829,10.697,10.57,12.987,10.57,15.805 M21.226,27.021 c-3.004,0-5.453-2.469-5.453-5.513c0-3.055,2.449-5.525,5.453-5.525c3.014,0,5.451,2.471,5.451,5.525 C26.677,24.553,24.24,27.021,21.226,27.021"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="45.332" height="44.654" viewBox="0 0 45.332 44.654"><path d="M18.548 5.871h-.5v4h.5c6.882 0 11.5 6.027 11.5 11.5v.5h4v-.5c0-8.168-7.24-15.5-15.5-15.5z"/><path d="M37.758 28.773c1.285-2.702 2.065-5.868 2.065-8.839a19.82 19.82 0 00-5.832-14.095A19.777 19.777 0 0019.912 0C14.595 0 9.595 2.074 5.831 5.839A19.824 19.824 0 000 19.934c0 5.324 2.071 10.33 5.831 14.096a19.776 19.776 0 0014.081 5.837c3.382 0 6.729-.871 9.678-2.518l.083-.046 7.352 7.352 8.308-8.308-7.575-7.574zm-7.845 6.296c-.577.388-1.136.717-1.705 1.002l-.081.041-.007-.007a17.925 17.925 0 01-8.208 1.967 17.98 17.98 0 01-12.807-5.305 18.067 18.067 0 01-5.31-12.832c0-4.841 1.886-9.395 5.31-12.82a17.986 17.986 0 0112.807-5.316c4.831 0 9.383 1.888 12.818 5.316 3.417 3.419 5.299 7.973 5.299 12.82 0 2.483-.63 5.195-1.62 7.49l-.004-.004c-.192.391-.482.945-.875 1.6l7.327 7.327-5.833 5.833-7.111-7.112z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="45.332px"
|
|
||||||
height="44.654px"
|
|
||||||
viewBox="0 0 45.332 44.654"
|
|
||||||
enable-background="new 0 0 45.332 44.654"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="kereso_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1612"
|
|
||||||
inkscape:window-height="1280"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="5.2850809"
|
|
||||||
inkscape:cx="1.0958477"
|
|
||||||
inkscape:cy="19.678033"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g4"
|
|
||||||
style="fill:#000000;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M18.548,5.871h-0.5v0.667v3v0.333h0.5c6.882,0,11.5,6.027,11.5,11.5v0.5h0.505h3h0.495v-0.5 C34.048,13.203,26.808,5.871,18.548,5.871z"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
<path
|
|
||||||
d="M37.758,28.773c1.285-2.702,2.065-5.868,2.065-8.839c0-5.322-2.071-10.328-5.832-14.095C30.228,2.074,25.228,0,19.912,0 C14.595,0,9.595,2.074,5.831,5.839C2.071,9.606,0,14.612,0,19.934c0,5.324,2.071,10.33,5.831,14.096 c3.761,3.764,8.762,5.837,14.081,5.837c3.382,0,6.729-0.871,9.678-2.518l0.083-0.046l7.352,7.352l8.308-8.308L37.758,28.773z M29.913,35.069c-0.577,0.388-1.136,0.717-1.705,1.002l-0.081,0.041l-0.007-0.007c-2.563,1.305-5.325,1.967-8.208,1.967 c-4.842,0-9.39-1.884-12.807-5.305c-3.424-3.436-5.31-7.993-5.31-12.832c0-4.841,1.886-9.395,5.31-12.82 c3.424-3.428,7.973-5.316,12.807-5.316c4.831,0,9.383,1.888,12.818,5.316c3.417,3.419,5.299,7.973,5.299,12.82 c0,2.483-0.63,5.195-1.62,7.49l-0.004-0.004c-0.192,0.391-0.482,0.945-0.875,1.6l7.327,7.327l-5.833,5.833L29.913,35.069z"
|
|
||||||
id="path6"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 919 B |
@@ -1,58 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="45.332" height="44.654" viewBox="0 0 45.332 44.654"><path d="M18.548 5.871h-.5v4h.5c6.882 0 11.5 6.027 11.5 11.5v.5h4v-.5c0-8.168-7.24-15.5-15.5-15.5z" fill="#fff"/><path d="M37.758 28.773c1.285-2.702 2.065-5.868 2.065-8.839a19.82 19.82 0 00-5.832-14.095A19.777 19.777 0 0019.912 0C14.595 0 9.595 2.074 5.831 5.839A19.824 19.824 0 000 19.934c0 5.324 2.071 10.33 5.831 14.096a19.776 19.776 0 0014.081 5.837c3.382 0 6.729-.871 9.678-2.518l.083-.046 7.352 7.352 8.308-8.308-7.575-7.574zm-7.845 6.296c-.577.388-1.136.717-1.705 1.002l-.081.041-.007-.007a17.925 17.925 0 01-8.208 1.967 17.98 17.98 0 01-12.807-5.305 18.067 18.067 0 01-5.31-12.832c0-4.841 1.886-9.395 5.31-12.82a17.986 17.986 0 0112.807-5.316c4.831 0 9.383 1.888 12.818 5.316 3.417 3.419 5.299 7.973 5.299 12.82 0 2.483-.63 5.195-1.62 7.49l-.004-.004c-.192.391-.482.945-.875 1.6l7.327 7.327-5.833 5.833-7.111-7.112z" fill="#fff"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="45.332px"
|
|
||||||
height="44.654px"
|
|
||||||
viewBox="0 0 45.332 44.654"
|
|
||||||
enable-background="new 0 0 45.332 44.654"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="kereso_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata13"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs11" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1612"
|
|
||||||
inkscape:window-height="1280"
|
|
||||||
id="namedview9"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="5.2850809"
|
|
||||||
inkscape:cx="1.0958477"
|
|
||||||
inkscape:cy="19.678033"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g4"
|
|
||||||
style="fill:#ffffff;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M18.548,5.871h-0.5v0.667v3v0.333h0.5c6.882,0,11.5,6.027,11.5,11.5v0.5h0.505h3h0.495v-0.5 C34.048,13.203,26.808,5.871,18.548,5.871z"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
<path
|
|
||||||
d="M37.758,28.773c1.285-2.702,2.065-5.868,2.065-8.839c0-5.322-2.071-10.328-5.832-14.095C30.228,2.074,25.228,0,19.912,0 C14.595,0,9.595,2.074,5.831,5.839C2.071,9.606,0,14.612,0,19.934c0,5.324,2.071,10.33,5.831,14.096 c3.761,3.764,8.762,5.837,14.081,5.837c3.382,0,6.729-0.871,9.678-2.518l0.083-0.046l7.352,7.352l8.308-8.308L37.758,28.773z M29.913,35.069c-0.577,0.388-1.136,0.717-1.705,1.002l-0.081,0.041l-0.007-0.007c-2.563,1.305-5.325,1.967-8.208,1.967 c-4.842,0-9.39-1.884-12.807-5.305c-3.424-3.436-5.31-7.993-5.31-12.832c0-4.841,1.886-9.395,5.31-12.82 c3.424-3.428,7.973-5.316,12.807-5.316c4.831,0,9.383,1.888,12.818,5.316c3.417,3.419,5.299,7.973,5.299,12.82 c0,2.483-0.63,5.195-1.62,7.49l-0.004-0.004c-0.192,0.391-0.482,0.945-0.875,1.6l7.327,7.327l-5.833,5.833L29.913,35.069z"
|
|
||||||
id="path6"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 943 B |
@@ -1,81 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="38" height="43" viewBox="0 0 38 43"><path d="M32.24 3H32V0h-2v3H8V0H6v3h-.599C2.322 3 0 5.184 0 8.372v28.893C0 40.451 2.322 43 5.401 43H32.24c3.176 0 5.76-2.654 5.76-5.735V8.372C38 5.289 35.416 3 32.24 3zM5.401 5H6v1h2V5h22v1h2V5h.24C34.394 5 36 6.311 36 8.372V11H2V8.372C2 6.206 3.346 5 5.401 5zM32.24 41H5.401C3.346 41 2 39.429 2 37.265V13h34v24.265C36 39.324 34.394 41 32.24 41z"/><path d="M4 27h7v-7H4v7zm1-4.993V21h5v5H5v-3.993zM4.458 31h6v6h-6zM15.5 27h7v-7h-7v7zm1-4.993V21h5v5h-5v-3.993zM15.5 38h7v-7h-7v7zm1-5.331V32h5v5h-5v-4.331zM27 27h7v-7h-7v7zm1-4.993V21h5v5h-5v-3.993zM27 38h7v-7h-7v7zm1-5.331V32h5v5h-5v-4.331z"/></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="38px"
|
|
||||||
height="43px"
|
|
||||||
viewBox="0 0 38 43"
|
|
||||||
enable-background="new 0 0 38 43"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="naptar_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata23"><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="defs21" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1699"
|
|
||||||
inkscape:window-height="1334"
|
|
||||||
id="namedview19"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="5.4883721"
|
|
||||||
inkscape:cx="24.466102"
|
|
||||||
inkscape:cy="-40.631356"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g16"
|
|
||||||
style="fill:#000000;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M32.24,3H32V0h-2v3H8V0H6v3H5.401C2.322,3,0,5.184,0,8.372v28.893C0,40.451,2.322,43,5.401,43H32.24 c3.176,0,5.76-2.654,5.76-5.735V8.372C38,5.289,35.416,3,32.24,3z M5.401,5H6v1h2V5h22v1h2V5h0.24C34.394,5,36,6.311,36,8.372V11H2 V8.372C2,6.206,3.346,5,5.401,5z M32.24,41H5.401C3.346,41,2,39.429,2,37.265V13h34v24.265C36,39.324,34.394,41,32.24,41z"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M4,27h7v-7H4V27z M5,22.007V21h5v5H9.379H5V22.007z"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<rect
|
|
||||||
x="4.458"
|
|
||||||
y="31"
|
|
||||||
width="6"
|
|
||||||
height="6"
|
|
||||||
id="rect6"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M15.5,27h7v-7h-7V27z M16.5,22.007V21h5v5h-1.336H16.5V22.007z"
|
|
||||||
id="path8"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M15.5,38h7v-7h-7V38z M16.5,32.669V32h5v5h-1.336H16.5V32.669z"
|
|
||||||
id="path10"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M27,27h7v-7h-7V27z M28,22.007V21h5v5h-1.052H28V22.007z"
|
|
||||||
id="path12"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M27,38h7v-7h-7V38z M28,32.669V32h5v5h-1.052H28V32.669z"
|
|
||||||
id="path14"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 682 B |
@@ -1,81 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="38" height="43" viewBox="0 0 38 43"><g fill="#fff"><path d="M32.24 3H32V0h-2v3H8V0H6v3h-.599C2.322 3 0 5.184 0 8.372v28.893C0 40.451 2.322 43 5.401 43H32.24c3.176 0 5.76-2.654 5.76-5.735V8.372C38 5.289 35.416 3 32.24 3zM5.401 5H6v1h2V5h22v1h2V5h.24C34.394 5 36 6.311 36 8.372V11H2V8.372C2 6.206 3.346 5 5.401 5zM32.24 41H5.401C3.346 41 2 39.429 2 37.265V13h34v24.265C36 39.324 34.394 41 32.24 41z"/><path d="M4 27h7v-7H4v7zm1-4.993V21h5v5H5v-3.993zM4.458 31h6v6h-6zM15.5 27h7v-7h-7v7zm1-4.993V21h5v5h-5v-3.993zM15.5 38h7v-7h-7v7zm1-5.331V32h5v5h-5v-4.331zM27 27h7v-7h-7v7zm1-4.993V21h5v5h-5v-3.993zM27 38h7v-7h-7v7zm1-5.331V32h5v5h-5v-4.331z"/></g></svg>
|
||||||
<!-- Generator: Adobe Illustrator 15.1.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="38px"
|
|
||||||
height="43px"
|
|
||||||
viewBox="0 0 38 43"
|
|
||||||
enable-background="new 0 0 38 43"
|
|
||||||
xml:space="preserve"
|
|
||||||
sodipodi:docname="naptar_icon.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
|
||||||
id="metadata23"><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="defs21" /><sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1699"
|
|
||||||
inkscape:window-height="1334"
|
|
||||||
id="namedview19"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="5.4883721"
|
|
||||||
inkscape:cx="24.466102"
|
|
||||||
inkscape:cy="-40.631356"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="27"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<g
|
|
||||||
id="g16"
|
|
||||||
style="fill:#ffffff;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
d="M32.24,3H32V0h-2v3H8V0H6v3H5.401C2.322,3,0,5.184,0,8.372v28.893C0,40.451,2.322,43,5.401,43H32.24 c3.176,0,5.76-2.654,5.76-5.735V8.372C38,5.289,35.416,3,32.24,3z M5.401,5H6v1h2V5h22v1h2V5h0.24C34.394,5,36,6.311,36,8.372V11H2 V8.372C2,6.206,3.346,5,5.401,5z M32.24,41H5.401C3.346,41,2,39.429,2,37.265V13h34v24.265C36,39.324,34.394,41,32.24,41z"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M4,27h7v-7H4V27z M5,22.007V21h5v5H9.379H5V22.007z"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<rect
|
|
||||||
x="4.458"
|
|
||||||
y="31"
|
|
||||||
width="6"
|
|
||||||
height="6"
|
|
||||||
id="rect6"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M15.5,27h7v-7h-7V27z M16.5,22.007V21h5v5h-1.336H16.5V22.007z"
|
|
||||||
id="path8"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M15.5,38h7v-7h-7V38z M16.5,32.669V32h5v5h-1.336H16.5V32.669z"
|
|
||||||
id="path10"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M27,27h7v-7h-7V27z M28,22.007V21h5v5h-1.052H28V22.007z"
|
|
||||||
id="path12"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="M27,38h7v-7h-7V38z M28,32.669V32h5v5h-1.052H28V32.669z"
|
|
||||||
id="path14"
|
|
||||||
style="fill:#ffffff;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 701 B |
@@ -1,83 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><clipPath id="a"><path d="M0 0h32v32H0z"/></clipPath></defs><g data-name="custom – 1" clip-path="url(#a)" transform="matrix(-1 0 0 1 31.808 0)"><g data-name="Group 1" fill="none" stroke="#000" stroke-width="7"><path data-name="Path 1" d="M13.442 28.829l13.033-13.033L13.417 2.738"/><path data-name="Path 2" d="M22.176 16H.384"/></g></g></svg>
|
||||||
<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="32"
|
|
||||||
height="32"
|
|
||||||
viewBox="0 0 32 32"
|
|
||||||
version="1.1"
|
|
||||||
id="svg11"
|
|
||||||
sodipodi:docname="solid_arrow_left.svg"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
||||||
<metadata
|
|
||||||
id="metadata15">
|
|
||||||
<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>
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1331"
|
|
||||||
inkscape:window-height="905"
|
|
||||||
id="namedview13"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="7.375"
|
|
||||||
inkscape:cx="0.40677966"
|
|
||||||
inkscape:cy="16"
|
|
||||||
inkscape:window-x="1119"
|
|
||||||
inkscape:window-y="277"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="svg11" />
|
|
||||||
<defs
|
|
||||||
id="defs5">
|
|
||||||
<clipPath
|
|
||||||
id="clip-custom_1">
|
|
||||||
<rect
|
|
||||||
width="32"
|
|
||||||
height="32"
|
|
||||||
id="rect2" />
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
<g
|
|
||||||
id="custom_1"
|
|
||||||
data-name="custom – 1"
|
|
||||||
clip-path="url(#clip-custom_1)"
|
|
||||||
transform="matrix(-1,0,0,1,31.808433,0)">
|
|
||||||
<g
|
|
||||||
id="Group_1"
|
|
||||||
data-name="Group 1">
|
|
||||||
<path
|
|
||||||
id="Path_1"
|
|
||||||
data-name="Path 1"
|
|
||||||
d="M 0,0 V 18.431 H 18.467"
|
|
||||||
transform="rotate(-135,12.691681,11.630571)"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
style="fill:none;stroke:#000000;stroke-width:7" />
|
|
||||||
<path
|
|
||||||
id="Path_2"
|
|
||||||
data-name="Path 2"
|
|
||||||
d="M 26.525,16 H 4.733"
|
|
||||||
transform="translate(-4.349)"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
style="fill:none;stroke:#000000;stroke-width:7" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 433 B |
@@ -1,13 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32">
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><clipPath id="a"><path d="M0 0h32v32H0z"/></clipPath></defs><g data-name="custom – 1"><g data-name="Group 1" fill="none" stroke="#000" stroke-width="7" clip-path="url(#a)"><path data-name="Path 1" d="M13.442 28.829l13.033-13.033L13.417 2.738"/><path data-name="Path 2" d="M22.176 16H.384"/></g></g></svg>
|
||||||
<defs>
|
|
||||||
<clipPath id="clip-custom_1">
|
|
||||||
<rect width="32" height="32"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
<g id="custom_1" data-name="custom – 1" clip-path="url(#clip-custom_1)">
|
|
||||||
<g id="Group_1" data-name="Group 1">
|
|
||||||
<path id="Path_1" data-name="Path 1" d="M0,0V18.431H18.467" transform="translate(13.442 28.829) rotate(-135)" fill="none" stroke="#000" stroke-width="7"/>
|
|
||||||
<path id="Path_2" data-name="Path 2" d="M26.525,16H4.733" transform="translate(-4.349)" fill="none" stroke="#000" stroke-width="7"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 395 B |
BIN
imgmax/_del_arrow.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
62
imgmax/_del_arrow.svg
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<?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="43.706402mm"
|
||||||
|
height="22.553785mm"
|
||||||
|
viewBox="0 0 43.706402 22.553785"
|
||||||
|
version="1.1"
|
||||||
|
id="svg229"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="arrow.svg">
|
||||||
|
<defs
|
||||||
|
id="defs223" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="488.62332"
|
||||||
|
inkscape:cy="48.879693"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="3374"
|
||||||
|
inkscape:window-height="1385"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata226">
|
||||||
|
<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(587.30561,-162.50287)">
|
||||||
|
<path
|
||||||
|
d="m -586.93144,162.87705 21.4316,21.43125 0.0476,-0.0476 0.0476,0.0476 21.43125,-21.43125"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.05833328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path212"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
imgmax/clip/be_desktop.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
25
imgmax/clip/be_desktop.svg
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 100 99.999997" enable-background="new 0 0 479.621 491.252" xml:space="preserve" sodipodi:docname="be_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata id="metadata9">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs id="defs7" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1415" inkscape:window-height="954" id="namedview5" showgrid="false" inkscape:zoom="0.48040515" inkscape:cx="136.7731" inkscape:cy="212.32121" inkscape:window-x="946" inkscape:window-y="216" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path id="svgPath" d="M 77.433483,75.667378 C 54.307747,99.215178 23.63064,107.15327 8.4000886,92.895608 -6.8306716,78.637748 -0.84741189,47.583218 22.278323,24.035208 45.404268,0.48720829 76.49837,-7.0439617 91.728922,7.2138983 106.95947,21.471348 100.55943,52.119578 77.433483,75.667378 Z" />
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 77.433483,75.667378 C 54.307747,99.215178 23.63064,107.15327 8.4000886,92.895608 -6.8306716,78.637748 -0.84741189,47.583218 22.278323,24.035208 45.404268,0.48720829 76.49837,-7.0439617 91.728922,7.2138983 106.95947,21.471348 100.55943,52.119578 77.433483,75.667378 Z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
15
imgmax/clip/be_mobil.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg 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="100" height="50" viewBox="0 0 1077.252 536.91" enable-background="new 0 0 1077.252 536.91" xml:space="preserve" sodipodi:docname="be_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata id="metadata9" />
|
||||||
|
<defs id="defs7" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="0.44503832" inkscape:cx="527.59275" inkscape:cy="270.8118" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path id="svgPath" d="M 4.484,126.232 C 38.201,-0.521 304.892,-39.604 600.152,38.936 c 295.264,78.537 507.29,244.957 473.576,371.709 -33.716,126.751 -300.406,165.834 -595.67,87.297 C 182.797,419.404 -29.229,252.983 4.484,126.232 Z" inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 4.484,126.232 C 38.201,-0.521 304.892,-39.604 600.152,38.936 c 295.264,78.537 507.29,244.957 473.576,371.709 -33.716,126.751 -300.406,165.834 -595.67,87.297 C 182.797,419.404 -29.229,252.983 4.484,126.232 Z" inkscape:connector-curvature="0" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
BIN
imgmax/clip/do_desktop.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
25
imgmax/clip/do_desktop.svg
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999999 99.999998" enable-background="new 0 0 480.604 508.191" xml:space="preserve" sodipodi:docname="do_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1491" inkscape:window-height="1019" id="namedview5" showgrid="false" inkscape:zoom="2.6269996" inkscape:cx="-45.728655" inkscape:cy="12.034621" inkscape:window-x="1337" inkscape:window-y="129" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<metadata id="metadata9">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs id="defs7" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path id="svgPath" d="M 0,42.689068 4.4951769,69.521499 V 100 H 100 V 69.302881 H 35.776648 L 99.403043,60.64216 95.020641,34.524028 98.399098,34.887474 99.484815,3.8493401 1.5676108,0 0.48230976,31.029082 68.336302,33.427393 Z"/>
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 0,42.689068 4.4951769,69.521499 V 100 H 100 V 69.302881 H 35.776648 L 99.403043,60.64216 95.020641,34.524028 98.399098,34.887474 99.484815,3.8493401 1.5676108,0 0.48230976,31.029082 68.336302,33.427393 Z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
14
imgmax/clip/do_mobil.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg 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="100" height="50" viewBox="0 0 1078.734 536.91" enable-background="new 0 0 1078.734 536.91" xml:space="preserve" sodipodi:docname="do_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<defs id="defs7" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="2.5140581" inkscape:cx="65.295123" inkscape:cy="39.493045" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<polygon points="969.418,163 -0.572,210.955 -0.572,376.047 -0.572,382.857 -0.572,539 1078.428,539 1078.428,376 137.691,376 1078.428,329.539 1078.428,163.047 1078.428,157.639 1078.428,0 -0.572,0 -0.572,163 " />
|
||||||
|
</clipPath>
|
||||||
|
<polygon id="svgMask" points="969.418,163 -0.572,210.955 -0.572,376.047 -0.572,382.857 -0.572,539 1078.428,539 1078.428,376 137.691,376 1078.428,329.539 1078.428,163.047 1078.428,157.639 1078.428,0 -0.572,0 -0.572,163 " />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
BIN
imgmax/clip/love_desktop.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
25
imgmax/clip/love_desktop.svg
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999997 100" enable-background="new 0 0 482.14 500.987" xml:space="preserve" sodipodi:docname="love_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata id="metadata9">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs id="defs7" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1633" inkscape:window-height="1080" id="namedview5" showgrid="false" inkscape:zoom="0.66619374" inkscape:cx="412.21122" inkscape:cy="206.63424" inkscape:window-x="1417" inkscape:window-y="87" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path id="svgPath" d="M 99.999996,29.21714 C 99.999996,13.081 86.42957,0 69.689706,0 52.949843,0 39.379417,13.0808 39.379417,29.21714 c 0,5.55985 1.611041,10.75649 4.407823,15.18075 C 39.727409,42.45198 35.152118,41.35575 30.31029,41.35575 13.570219,41.35575 0,54.43795 0,70.57429 -2.0726027e-4,86.71022 13.606904,100 30.346975,100 c 0.034,0 -0.02114,0 0.01306,0 h -0.02611 69.639757 V 30.39008 C 99.989636,30.0007 100,29.61012 100,29.21714 Z" />
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 99.999996,29.21714 C 99.999996,13.081 86.42957,0 69.689706,0 52.949843,0 39.379417,13.0808 39.379417,29.21714 c 0,5.55985 1.611041,10.75649 4.407823,15.18075 C 39.727409,42.45198 35.152118,41.35575 30.31029,41.35575 13.570219,41.35575 0,54.43795 0,70.57429 -2.0726027e-4,86.71022 13.606904,100 30.346975,100 c 0.034,0 -0.02114,0 0.01306,0 h -0.02611 69.639757 V 30.39008 C 99.989636,30.0007 100,29.61012 100,29.21714 Z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
14
imgmax/clip/love_mobil.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg 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="100" height="50" viewBox="0 0 1077.252 536.91" enable-background="new 0 0 1077.252 536.91" xml:space="preserve" sodipodi:docname="love_mobil.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<defs id="defs7" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1676" inkscape:window-height="1371" id="namedview5" showgrid="false" inkscape:zoom="7.1206131" inkscape:cx="52.51157" inkscape:cy="21.160947" inkscape:window-x="1688" inkscape:window-y="33" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path d="M 453.183,35.101 C 404.96,13.122 340.698,-0.295 270.126,-0.295 c -149.67,0 -271,60.328 -271,134.75 0,69.605 106.143,126.88 242.336,134 -136.193,7.12 -242.336,64.393 -242.336,134 0,74.42 121.33,134.75 271,134.75 70.545,0 134.785,-13.406 183.002,-35.37 l 624.998,-232.63 z" inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 453.183,35.101 C 404.96,13.122 340.698,-0.295 270.126,-0.295 c -149.67,0 -271,60.328 -271,134.75 0,69.605 106.143,126.88 242.336,134 -136.193,7.12 -242.336,64.393 -242.336,134 0,74.42 121.33,134.75 271,134.75 70.545,0 134.785,-13.406 183.002,-35.37 l 624.998,-232.63 z" inkscape:connector-curvature="0" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
imgmax/clip/think_desktop.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
25
imgmax/clip/think_desktop.svg
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="100" height="100" viewBox="0 0 99.999999 99.999998" enable-background="new 0 0 480.604 508.191" xml:space="preserve" sodipodi:docname="think_desktop.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata id="metadata11">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs id="defs9" />
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="2074" inkscape:window-height="1062" id="namedview7" showgrid="false" inkscape:zoom="2.56" inkscape:cx="8.39166" inkscape:cy="65.978929" inkscape:window-x="1064" inkscape:window-y="234" inkscape:window-maximized="0" inkscape:current-layer="Layer_1" />
|
||||||
|
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
|
||||||
|
<path id="svgPath" d="M 32.576974,100 C 28.004237,100 24.034448,97.863929 21.378539,93.967755 18.694898,90.030672 17.570097,85.333272 18.125775,80.383031 19.132298,71.416483 30.076528,58.407684 44.36239,48.163565 43.288849,48.767827 32.144616,56.653368 31.051958,57.109159 16.771139,63.063975 9.1832453,58.955472 5.0098828,53.64463 0.69828342,48.159174 -0.90593487,41.436059 0.49197876,34.713343 2.3852758,25.607303 9.7050994,17.258986 22.870361,9.1906495 31.312465,4.0169041 39.283346,0.72459317 39.618643,0.58669847 44.311129,-1.3400358 49.423787,1.6343789 51.03914,7.23019 c 1.615353,5.595811 -0.878581,11.69371 -5.570436,13.620644 -0.223112,0.0922 -7.074233,2.948871 -14.169264,7.269905 -8.263951,5.033456 -11.781214,8.976726 -12.937528,10.875123 0.794546,0.07463 3.126502,-0.08282 8.184117,-2.927319 C 31.886841,33.064593 38.817585,28.81121 44.92269,24.616098 51.505321,20.092713 71.113507,6.7889668 76.540454,3.3501802 79.870321,1.2402515 82.935689,0.56275149 85.686137,0.44142011 90.433875,0.23228314 94.480136,2.5030557 97.096129,6.8354639 99.401405,10.65381 100.2823,15.1299 99.643845,19.779805 97.980382,31.894983 70.148161,50.822677 56.408943,62.572264 c -3.428397,2.931709 -6.934315,5.929871 -10.084768,8.826059 1.733841,-1.139876 3.527558,-2.348999 5.36224,-3.585661 15.256461,-10.283233 29.666064,-19.996129 40.376049,-11.889677 5.954053,4.506822 8.580126,13.055496 7.804912,25.408147 -0.370592,5.901734 -4.685552,10.327336 -9.630351,9.886312 -4.948581,-0.441622 -8.659964,-5.583837 -8.289372,-11.485571 0.159455,-2.541772 0.07836,-4.211276 -0.04181,-5.244189 -1.148751,0.229891 -3.196252,0.878056 -6.539774,2.642549 -4.519794,2.385319 -9.765227,5.920891 -14.837968,9.340121 -6.472126,4.362542 -12.585215,8.483019 -18.136113,11.005235 -3.644155,1.656133 -6.783053,2.481107 -9.595897,2.523014 -0.07311,7.98e-4 -0.14664,0.0014 -0.21912,0.0014 z"/>
|
||||||
|
</clipPath>
|
||||||
|
<path id="svgMask" d="M 32.576974,100 C 28.004237,100 24.034448,97.863929 21.378539,93.967755 18.694898,90.030672 17.570097,85.333272 18.125775,80.383031 19.132298,71.416483 30.076528,58.407684 44.36239,48.163565 43.288849,48.767827 32.144616,56.653368 31.051958,57.109159 16.771139,63.063975 9.1832453,58.955472 5.0098828,53.64463 0.69828342,48.159174 -0.90593487,41.436059 0.49197876,34.713343 2.3852758,25.607303 9.7050994,17.258986 22.870361,9.1906495 31.312465,4.0169041 39.283346,0.72459317 39.618643,0.58669847 44.311129,-1.3400358 49.423787,1.6343789 51.03914,7.23019 c 1.615353,5.595811 -0.878581,11.69371 -5.570436,13.620644 -0.223112,0.0922 -7.074233,2.948871 -14.169264,7.269905 -8.263951,5.033456 -11.781214,8.976726 -12.937528,10.875123 0.794546,0.07463 3.126502,-0.08282 8.184117,-2.927319 C 31.886841,33.064593 38.817585,28.81121 44.92269,24.616098 51.505321,20.092713 71.113507,6.7889668 76.540454,3.3501802 79.870321,1.2402515 82.935689,0.56275149 85.686137,0.44142011 90.433875,0.23228314 94.480136,2.5030557 97.096129,6.8354639 99.401405,10.65381 100.2823,15.1299 99.643845,19.779805 97.980382,31.894983 70.148161,50.822677 56.408943,62.572264 c -3.428397,2.931709 -6.934315,5.929871 -10.084768,8.826059 1.733841,-1.139876 3.527558,-2.348999 5.36224,-3.585661 15.256461,-10.283233 29.666064,-19.996129 40.376049,-11.889677 5.954053,4.506822 8.580126,13.055496 7.804912,25.408147 -0.370592,5.901734 -4.685552,10.327336 -9.630351,9.886312 -4.948581,-0.441622 -8.659964,-5.583837 -8.289372,-11.485571 0.159455,-2.541772 0.07836,-4.211276 -0.04181,-5.244189 -1.148751,0.229891 -3.196252,0.878056 -6.539774,2.642549 -4.519794,2.385319 -9.765227,5.920891 -14.837968,9.340121 -6.472126,4.362542 -12.585215,8.483019 -18.136113,11.005235 -3.644155,1.656133 -6.783053,2.481107 -9.595897,2.523014 -0.07311,7.98e-4 -0.14664,0.0014 -0.21912,0.0014 z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.2 KiB |
14
imgmax/clip/think_mobil.svg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
imgmax/cursor-arrow-black-left.png
Normal file
|
After Width: | Height: | Size: 476 B |
BIN
imgmax/cursor-arrow-black-right.png
Normal file
|
After Width: | Height: | Size: 275 B |
BIN
imgmax/curvy_arrow.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
45
imgmax/curvy_arrow.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
viewBox="0 0 122.1 232"
|
||||||
|
height="232"
|
||||||
|
width="122.1"
|
||||||
|
xml:space="preserve"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="curvy_arrow.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1656"
|
||||||
|
inkscape:window-height="959"
|
||||||
|
id="namedview18"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="2.0311646"
|
||||||
|
inkscape:cx="20.24125"
|
||||||
|
inkscape:cy="178.83688"
|
||||||
|
inkscape:window-x="1062"
|
||||||
|
inkscape:window-y="261"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="svg2" /><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6" /><path
|
||||||
|
id="path226"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 0.75,0 C 0.75,63.609 54.101,116 122.1,116 54.101,116 0.75,168.389 0.75,232"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
BIN
imgmax/dis-logo-black.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
73
imgmax/dis-logo-black.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?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="47.293671mm"
|
||||||
|
height="46.798794mm"
|
||||||
|
viewBox="0 0 47.293671 46.798794"
|
||||||
|
version="1.1"
|
||||||
|
id="svg260"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="dis-logo.svg">
|
||||||
|
<defs
|
||||||
|
id="defs254" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="185.14836"
|
||||||
|
inkscape:cy="-80.588807"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="2001"
|
||||||
|
inkscape:window-height="1335"
|
||||||
|
inkscape:window-x="673"
|
||||||
|
inkscape:window-y="69"
|
||||||
|
inkscape:window-maximized="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata257">
|
||||||
|
<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:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-11.221473,-3.6311089)">
|
||||||
|
<path
|
||||||
|
d="m 42.075803,16.517198 -17.7165,17.834327 3.3027,3.19264 17.71509,-17.83327 z"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path172"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 16.022423,8.0725809 V 19.475417 h 2.8515 c 1.83021,0 3.3902,0 4.86128,-0.9906 1.44074,-0.960261 2.31069,-2.579864 2.31069,-4.801306 0,-1.980494 -0.81033,-3.480505 -2.16006,-4.4707521 -1.56139,-1.140178 -3.15171,-1.140178 -4.92195,-1.140178 z m -4.80095,-4.441472 h 7.68208 c 2.49097,0 5.04155,0 7.68245,1.740959 2.64054,1.650294 4.50109,4.501091 4.50109,8.3114431 0,4.111978 -2.19075,7.232297 -5.25145,8.882592 -2.43064,1.320447 -4.56107,1.320447 -6.9021,1.320447 h -7.71207 z"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path176"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 56.235493,35.485884 c -2.40101,-1.050219 -4.89127,-1.591027 -7.26264,-1.591027 -1.68028,0 -3.0607,0.510469 -3.02966,1.891594 0,1.619953 2.45922,1.920168 5.16009,2.340327 3.8421,0.570441 7.41186,1.770239 7.41186,5.850818 0,5.011563 -5.16079,6.452307 -9.21174,6.452307 -3.48121,0 -6.66221,-0.689682 -9.45232,-2.191102 l 1.95015,-4.140907 c 2.34103,1.199798 5.16149,2.010482 7.86201,2.010482 1.58961,0 3.51119,-0.359834 3.51119,-1.980497 0.0296,-1.46967 -1.50072,-1.890535 -3.99027,-2.250368 -4.11233,-0.50941 -8.31285,-1.620308 -8.34284,-6.152444 0.03,-4.349398 4.23051,-6.150681 8.64165,-6.150681 2.88113,0 5.46241,0.449792 8.40246,1.740606 z"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path180"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
BIN
imgmax/dis-logo-white.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
73
imgmax/dis-logo-white.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?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="47.293671mm"
|
||||||
|
height="46.798794mm"
|
||||||
|
viewBox="0 0 47.293671 46.798794"
|
||||||
|
version="1.1"
|
||||||
|
id="svg260"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="dis-logo.svg">
|
||||||
|
<defs
|
||||||
|
id="defs254" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="185.14836"
|
||||||
|
inkscape:cy="-80.588807"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="2001"
|
||||||
|
inkscape:window-height="1335"
|
||||||
|
inkscape:window-x="673"
|
||||||
|
inkscape:window-y="69"
|
||||||
|
inkscape:window-maximized="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata257">
|
||||||
|
<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:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-11.221473,-3.6311089)">
|
||||||
|
<path
|
||||||
|
d="m 42.075803,16.517198 -17.7165,17.834327 3.3027,3.19264 17.71509,-17.83327 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path172"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 16.022423,8.0725809 V 19.475417 h 2.8515 c 1.83021,0 3.3902,0 4.86128,-0.9906 1.44074,-0.960261 2.31069,-2.579864 2.31069,-4.801306 0,-1.980494 -0.81033,-3.480505 -2.16006,-4.4707521 -1.56139,-1.140178 -3.15171,-1.140178 -4.92195,-1.140178 z m -4.80095,-4.441472 h 7.68208 c 2.49097,0 5.04155,0 7.68245,1.740959 2.64054,1.650294 4.50109,4.501091 4.50109,8.3114431 0,4.111978 -2.19075,7.232297 -5.25145,8.882592 -2.43064,1.320447 -4.56107,1.320447 -6.9021,1.320447 h -7.71207 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path176"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 56.235493,35.485884 c -2.40101,-1.050219 -4.89127,-1.591027 -7.26264,-1.591027 -1.68028,0 -3.0607,0.510469 -3.02966,1.891594 0,1.619953 2.45922,1.920168 5.16009,2.340327 3.8421,0.570441 7.41186,1.770239 7.41186,5.850818 0,5.011563 -5.16079,6.452307 -9.21174,6.452307 -3.48121,0 -6.66221,-0.689682 -9.45232,-2.191102 l 1.95015,-4.140907 c 2.34103,1.199798 5.16149,2.010482 7.86201,2.010482 1.58961,0 3.51119,-0.359834 3.51119,-1.980497 0.0296,-1.46967 -1.50072,-1.890535 -3.99027,-2.250368 -4.11233,-0.50941 -8.31285,-1.620308 -8.34284,-6.152444 0.03,-4.349398 4.23051,-6.150681 8.64165,-6.150681 2.88113,0 5.46241,0.449792 8.40246,1.740606 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path180"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
BIN
imgmax/dis-plus-black.png
Normal file
|
After Width: | Height: | Size: 416 B |
53
imgmax/dis-plus-black.svg
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="57px"
|
||||||
|
height="58px"
|
||||||
|
viewBox="0 0 57 58"
|
||||||
|
enable-background="new 0 0 57 58"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="dis-plus.svg"
|
||||||
|
inkscape:export-filename="/media/miniretek/ssd/www/designisso/wp-content/themes/dis-2019/img/dis-plus.png"
|
||||||
|
inkscape:export-xdpi="165.51724"
|
||||||
|
inkscape:export-ydpi="165.51724"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata9"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs7" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1511"
|
||||||
|
inkscape:window-height="866"
|
||||||
|
id="namedview5"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.0689655"
|
||||||
|
inkscape:cx="-17.639047"
|
||||||
|
inkscape:cy="33.915254"
|
||||||
|
inkscape:window-x="173"
|
||||||
|
inkscape:window-y="235"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<polygon
|
||||||
|
points="34,0 24,0 24,1 24,24 0,24 0,25 0,34 24,34 24,58 33,58 34,58 34,34 56,34 57,34 57,24 34,24 "
|
||||||
|
id="polygon2"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
imgmax/dis-plus-white.png
Normal file
|
After Width: | Height: | Size: 455 B |
53
imgmax/dis-plus-white.svg
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="57px"
|
||||||
|
height="58px"
|
||||||
|
viewBox="0 0 57 58"
|
||||||
|
enable-background="new 0 0 57 58"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="dis-plus.svg"
|
||||||
|
inkscape:export-filename="/media/miniretek/ssd/www/designisso/wp-content/themes/dis-2019/img/dis-plus.png"
|
||||||
|
inkscape:export-xdpi="165.51724"
|
||||||
|
inkscape:export-ydpi="165.51724"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata9"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs7" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1511"
|
||||||
|
inkscape:window-height="866"
|
||||||
|
id="namedview5"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.0689655"
|
||||||
|
inkscape:cx="-17.639047"
|
||||||
|
inkscape:cy="33.915254"
|
||||||
|
inkscape:window-x="173"
|
||||||
|
inkscape:window-y="235"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<polygon
|
||||||
|
points="34,0 24,0 24,1 24,24 0,24 0,25 0,34 24,34 24,58 33,58 34,58 34,34 56,34 57,34 57,24 34,24 "
|
||||||
|
id="polygon2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
imgmax/facebook_icon-black.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
58
imgmax/facebook_icon-black.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="44.034px"
|
||||||
|
height="44.082px"
|
||||||
|
viewBox="0 0 44.034 44.082"
|
||||||
|
enable-background="new 0 0 44.034 44.082"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="facebook_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><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="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1368"
|
||||||
|
inkscape:window-height="1220"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="10.707318"
|
||||||
|
inkscape:cx="21.943301"
|
||||||
|
inkscape:cy="16.544497"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M36.379,7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338,4.004,7.668,7.678c-3.671,3.673-5.949,8.751-5.949,14.364 c0,5.615,2.278,10.693,5.949,14.376c3.67,3.675,8.741,5.944,14.349,5.944s10.681-2.27,14.362-5.944 c3.669-3.684,5.937-8.762,5.937-14.376C42.315,16.429,40.048,11.351,36.379,7.678 M22.017,0C28.1,0,33.598,2.467,37.585,6.456 c3.987,3.994,6.449,9.498,6.449,15.586c0,6.09-2.462,11.595-6.449,15.586c-3.988,3.991-9.485,6.454-15.569,6.454 c-6.082,0-11.581-2.462-15.569-6.454C2.462,33.637,0,28.132,0,22.042C0,15.954,2.462,10.45,6.448,6.456 C10.436,2.467,15.935,0,22.017,0"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M23.699,17.539v-1.806c0-0.866,0.574-1.073,0.989-1.073h2.523v-3.857h-3.475c-3.865,0-4.731,2.855-4.731,4.711v2.026 h-2.242v2.722v1.781h2.267v11.253h4.5V22.042h3.326l0.147-1.768l0.268-2.735H23.699z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
BIN
imgmax/facebook_icon-white.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
58
imgmax/facebook_icon-white.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="44.034px"
|
||||||
|
height="44.082px"
|
||||||
|
viewBox="0 0 44.034 44.082"
|
||||||
|
enable-background="new 0 0 44.034 44.082"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="facebook_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><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="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1368"
|
||||||
|
inkscape:window-height="1220"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="10.707318"
|
||||||
|
inkscape:cx="21.943301"
|
||||||
|
inkscape:cy="16.544497"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M36.379,7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338,4.004,7.668,7.678c-3.671,3.673-5.949,8.751-5.949,14.364 c0,5.615,2.278,10.693,5.949,14.376c3.67,3.675,8.741,5.944,14.349,5.944s10.681-2.27,14.362-5.944 c3.669-3.684,5.937-8.762,5.937-14.376C42.315,16.429,40.048,11.351,36.379,7.678 M22.017,0C28.1,0,33.598,2.467,37.585,6.456 c3.987,3.994,6.449,9.498,6.449,15.586c0,6.09-2.462,11.595-6.449,15.586c-3.988,3.991-9.485,6.454-15.569,6.454 c-6.082,0-11.581-2.462-15.569-6.454C2.462,33.637,0,28.132,0,22.042C0,15.954,2.462,10.45,6.448,6.456 C10.436,2.467,15.935,0,22.017,0"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M23.699,17.539v-1.806c0-0.866,0.574-1.073,0.989-1.073h2.523v-3.857h-3.475c-3.865,0-4.731,2.855-4.731,4.711v2.026 h-2.242v2.722v1.781h2.267v11.253h4.5V22.042h3.326l0.147-1.768l0.268-2.735H23.699z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
BIN
imgmax/icons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
imgmax/icons/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
imgmax/icons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
9
imgmax/icons/browserconfig.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png?v=m2R26gv6zM"/>
|
||||||
|
<TileColor>#ffffff</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
||||||
BIN
imgmax/icons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 693 B |
BIN
imgmax/icons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
imgmax/icons/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
8
imgmax/icons/html_code.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=m2R26gv6zM">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=m2R26gv6zM">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=m2R26gv6zM">
|
||||||
|
<link rel="manifest" href="/site.webmanifest?v=m2R26gv6zM">
|
||||||
|
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=m2R26gv6zM" color="#000000">
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico?v=m2R26gv6zM">
|
||||||
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
|
<meta name="theme-color" content="#ffffff">
|
||||||
BIN
imgmax/icons/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
1
imgmax/icons/safari-pinned-tab.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="981.333" height="981.333" viewBox="0 0 736.000000 736.000000"><path d="M0 161.5v157.6l80.8-.4c44.4-.2 82.5-.7 84.7-1 2.2-.4 6-1 8.5-1.3 2.5-.4 5-.8 5.5-1 .6-.1 2.1-.4 3.5-.7 6.4-1.3 16.1-4 22.2-6.3 3.7-1.4 7-2.6 7.2-2.6 1.2 0 20.2-10.1 24.3-12.8 2.4-1.7 4.7-3 5-3 1.7 0 20.1-16.1 26.5-23.2 4-4.4 8.1-8.9 9.1-9.9.9-1 1.7-2.2 1.7-2.7 0-.4 1.2-2.1 2.6-3.7 1.4-1.7 3-3.9 3.5-5 1-2.2 3.1-5.7 3.9-6.5 1.5-1.4 11.7-24.3 12.5-28 .1-.8 1-4 1.9-7 .8-3 1.8-6.7 2.1-8.2 1.1-6 1.4-7.5 2.1-12.3 1.1-6.6 1.1-39.5.1-46.4-.9-5.4-1.1-6.7-2.4-13.1-.9-4.6-1-4.9-1.3-5.5-.1-.3-.3-.8-.4-1.3-.2-.4-1.1-3.4-2.1-6.7-1-3.3-1.8-6.3-1.7-6.8.1-.4-.2-.7-.8-.7-.6 0-.9-.3-.8-.8.6-3.1-14.5-30.2-20.7-36.8-.5-.6-2.8-3.3-4.9-6-5.5-6.8-18-17.7-28.9-25.2-5.1-3.5-9.9-6.6-10.7-7-.8-.3-1.7-.8-2-1.2-.8-1-15.1-7.7-22-10.4-6.1-2.3-18.4-5.9-24-7-1.4-.3-3.4-.7-4.5-.9-1.2-.3-4.8-.8-8-1.2-3.3-.4-7.1-.9-8.5-1.2-1.4-.4-38.8-.8-83.2-1L0 3.8v157.7zm155-87.1c10.7 1.5 30 7.6 30.8 9.8.2.4 1.2.8 2.2.8 1 0 2 .3 2.2.7.2.5 2.2 2 4.5 3.5 7 4.6 16.3 13.9 21.5 21.6 4.6 6.8 10.2 18.6 11.3 23.6.2 1.2.6 3.2.9 4.6 2.1 9.4 2.8 27.5 1.5 36-1.4 8.8-2 11.5-3.1 15-.7 1.9-1.2 3.7-1.3 4 0 .3-1.1 3.2-2.5 6.5-6.5 16.2-19.4 30.2-35.5 38.7-7.1 3.7-17.7 7.5-23.1 8.3-1.6.2-4 .6-5.4.9-6 1.4-18.7 1.9-50.2 2l-33.8.2-.1-3.1c-.1-3.9-.1-170.4 0-172.8.1-1.8 1.6-1.9 37.9-1.4 20.7.3 39.7.8 42.2 1.1zM389.5 295.6C229.5 456.6 205 481.3 205 481.9c0 .3 6.6 6.9 14.6 14.6 8 7.7 19.3 18.6 25.1 24.3 5.8 5.6 10.8 10.2 11.1 10.2.4 0 27.2-26.7 59.7-59.4 84.6-85.2 214.9-216.5 215.4-217.1.3-.3-3.8-4.6-9-9.6s-16.5-16-25.2-24.5-16.1-15.4-16.5-15.4c-.4 0-41.2 40.8-90.7 90.6zM582 408c0 .3-2.1.5-4.8.6-4.7 0-14.5 1-19.2 1.9-1.4.3-4.7.9-7.5 1.5-2.7.6-5.9 1.2-7 1.4-1.1.2-5.5 1.6-9.8 3-4.3 1.4-8.2 2.6-8.7 2.6-1.9 0-19.6 9.2-26.1 13.6-13.5 9.1-24.8 22.3-30.8 35.9-5 11.2-6.8 21.4-6.6 36.2.2 7.6.5 14.8.9 16 .3 1.3.8 3.3 1.1 4.5 6.2 28.4 30.9 50.6 69.5 62.3.3.1 1.2.4 2 .8 3.1 1.2 27.4 6.6 32.7 7.2 1.2.2 3.4.6 5 .9 3.4.7 7.1 1.2 14.3 2.1 22.5 2.7 42.9 7.7 51.7 12.7 6.4 3.6 12 10.2 13.3 15.9 2.4 9.8-1.1 20.9-8.3 26.3-11.2 8.4-22.6 11-47.7 10.9-20.6-.2-31.8-1.5-51-5.9-5.8-1.4-11.2-2.6-12-2.8-1.8-.3-15.7-4.5-18.5-5.6-1.1-.4-3.1-1.2-4.5-1.8-1.4-.5-6.8-2.7-12-4.7-5.2-2.1-12.1-5.1-15.2-6.7-3.2-1.5-6.1-2.8-6.5-2.8-.5 0-1.5 1.5-2.2 3.2-.8 1.8-4.2 8.9-7.5 15.8s-6 12.7-6.1 13c-.1.6-8 17.3-10.5 22.3-1.1 2.2-2 4.5-2 5.3 0 .8-.4 1.4-1 1.4-.5 0-1 .8-1 1.7 0 1.9 2.4 3.1 25.5 13.4 5.5 2.4 30.9 10.9 34 11.3 1.1.2 3.8.8 6 1.4 2.2.6 5.4 1.4 7 1.6 1.7.3 4.1.8 5.5 1.1 1.4.3 3.9.7 5.5 1 2.8.5 5.2.9 10.8 1.9 1.2.2 4.7.7 7.7 1 3 .4 8.2.9 11.5 1.3 8.6.9 50.8.9 59 0 12.3-1.4 20.4-2.6 22.7-3.3 2.5-.8 6.1-1.5 8.3-1.8 1.1-.2 2.7-.6 3.5-.9.8-.3 5.3-1.7 10-3.2 8.8-2.8 22.7-8.7 27-11.5 11.3-7.4 15.1-10.3 21.1-16.2 10.6-10.5 17-21.5 21.5-36.5 2.2-7.5 2.7-10.9 2.8-22.3.1-16.2-.7-23.2-4-31.8-3.8-10.2-8.8-18.3-16.3-26.2-3-3.2-14.6-12-15.8-12-.7 0-1.3-.3-1.3-.8 0-.9-17.4-9.3-22-10.7-.3-.1-3.9-1.2-8-2.5s-7.9-2.5-8.5-2.7c-.5-.1-2.8-.7-5-1.2s-5.1-1.2-6.5-1.5c-1.4-.4-3.6-.8-5-1.1-1.4-.3-3.5-.7-4.6-.9-1.2-.2-3.9-.7-6-1-2.2-.3-5.2-.9-6.7-1.2-1.6-.3-3.8-.7-5-.9-9.5-1.2-13.3-1.8-20.7-3.1-4.7-.8-11.7-2.2-15.6-3-3.9-.8-7.9-1.7-9-1.9-1-.2-2-.4-2.1-.5-.2-.2-.6-.3-1-.4-8.3-2.2-17.8-6-19.3-7.7-.3-.3-1.2-.8-2.1-1.1-2.6-1-8.6-9-9.7-12.8-2.4-9.1 1.2-20.1 8.6-25.7 5-3.8 14.3-7.4 19.4-7.6 2.1-.1 3.8-.5 3.8-.8 0-.7.1-.7 16-.8 16-.1 19.3.2 34 2.4 1.4.2 5 .7 8 1 3 .4 5.8.9 6.1 1.1.7.4 5.9 1.3 9.4 1.7 1.1.1 2.2.4 2.5.7.3.3 3.9 1.4 8 2.4 7.5 1.8 20.8 5.9 24.5 7.5 6.6 2.9 18.6 7.3 18.9 7 .3-.3 2.1-4.6 6.1-14.4.5-1.1.9-2.2.9-2.5.4-1.3 8.9-22.6 9.4-23.5.4-.6.7-1.2.7-1.5 0-.6 2.2-6.4 3.6-9.5 2.1-4.9 4.9-12.8 4.7-13.1-.4-.3-17.9-7.5-19.3-7.8-.5-.2-1.7-.6-2.5-.9-7.6-3.1-36.3-11.1-44.3-12.2-2.3-.4-6-1-8.2-1.5-2.2-.5-6.5-1.2-9.5-1.6-3-.3-6.8-.8-8.5-1-11.2-1.3-51.5-2.4-51.5-1.4z"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
20
imgmax/icons/site.webmanifest
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "DIS",
|
||||||
|
"short_name": "DIS",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png?v=m2R26gv6zM",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png?v=m2R26gv6zM",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"start_url": "http://designisso.com/",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
BIN
imgmax/instagram_icon-black.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
58
imgmax/instagram_icon-black.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="42.531px"
|
||||||
|
height="43.102px"
|
||||||
|
viewBox="0 0 42.531 43.102"
|
||||||
|
enable-background="new 0 0 42.531 43.102"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="instagram_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><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="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1503"
|
||||||
|
inkscape:window-height="1382"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="15.486724"
|
||||||
|
inkscape:cx="21.988053"
|
||||||
|
inkscape:cy="18.191441"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M7.367,7.451c-3.545,3.604-5.748,8.567-5.748,14.058c0,5.477,2.203,10.453,5.748,14.045 c3.543,3.593,8.441,5.824,13.859,5.824c5.416,0,10.313-2.231,13.869-5.824c3.545-3.592,5.735-8.568,5.735-14.045 c0-5.49-2.19-10.454-5.735-14.058c-3.556-3.592-8.453-5.813-13.869-5.813C15.808,1.639,10.91,3.859,7.367,7.451 M-0.042,21.509 c0-5.954,2.379-11.349,6.23-15.238c3.851-3.902,9.16-6.313,15.037-6.313c5.875,0,11.184,2.41,15.035,6.313 c3.85,3.89,6.229,9.284,6.229,15.238c0,5.943-2.379,11.337-6.229,15.238c-3.852,3.902-9.16,6.313-15.035,6.313 c-5.877,0-11.187-2.41-15.037-6.313C2.337,32.846-0.042,27.452-0.042,21.509"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M21.226,14.54c-3.793,0-6.877,3.112-6.877,6.969c0,3.842,3.084,6.969,6.877,6.969c3.803,0,6.875-3.127,6.875-6.969 C28.101,17.652,25.029,14.54,21.226,14.54 M13.419,14.67c0,0.621,0.493,1.123,1.105,1.123c0.613,0,1.107-0.502,1.107-1.123 c0-0.621-0.494-1.121-1.107-1.121C13.913,13.549,13.419,14.049,13.419,14.67 M11.829,27.201V15.805c0-2.112,1.696-3.83,3.78-3.83 h11.244c2.084,0,3.781,1.718,3.781,3.83v11.396c0,2.111-1.697,3.83-3.781,3.83H15.609C13.525,31.031,11.829,29.313,11.829,27.201 M10.57,15.805v11.396c0,2.804,2.259,5.106,5.039,5.106h11.244c2.767,0,5.039-2.303,5.039-5.106V15.805 c0-2.817-2.272-5.107-5.039-5.107H15.609C12.829,10.697,10.57,12.987,10.57,15.805 M21.226,27.021 c-3.004,0-5.453-2.469-5.453-5.513c0-3.055,2.449-5.525,5.453-5.525c3.014,0,5.451,2.471,5.451,5.525 C26.677,24.553,24.24,27.021,21.226,27.021"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
BIN
imgmax/instagram_icon-white.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
58
imgmax/instagram_icon-white.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="42.531px"
|
||||||
|
height="43.102px"
|
||||||
|
viewBox="0 0 42.531 43.102"
|
||||||
|
enable-background="new 0 0 42.531 43.102"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="instagram_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><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="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1503"
|
||||||
|
inkscape:window-height="1382"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="15.486724"
|
||||||
|
inkscape:cx="21.988053"
|
||||||
|
inkscape:cy="18.191441"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M7.367,7.451c-3.545,3.604-5.748,8.567-5.748,14.058c0,5.477,2.203,10.453,5.748,14.045 c3.543,3.593,8.441,5.824,13.859,5.824c5.416,0,10.313-2.231,13.869-5.824c3.545-3.592,5.735-8.568,5.735-14.045 c0-5.49-2.19-10.454-5.735-14.058c-3.556-3.592-8.453-5.813-13.869-5.813C15.808,1.639,10.91,3.859,7.367,7.451 M-0.042,21.509 c0-5.954,2.379-11.349,6.23-15.238c3.851-3.902,9.16-6.313,15.037-6.313c5.875,0,11.184,2.41,15.035,6.313 c3.85,3.89,6.229,9.284,6.229,15.238c0,5.943-2.379,11.337-6.229,15.238c-3.852,3.902-9.16,6.313-15.035,6.313 c-5.877,0-11.187-2.41-15.037-6.313C2.337,32.846-0.042,27.452-0.042,21.509"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M21.226,14.54c-3.793,0-6.877,3.112-6.877,6.969c0,3.842,3.084,6.969,6.877,6.969c3.803,0,6.875-3.127,6.875-6.969 C28.101,17.652,25.029,14.54,21.226,14.54 M13.419,14.67c0,0.621,0.493,1.123,1.105,1.123c0.613,0,1.107-0.502,1.107-1.123 c0-0.621-0.494-1.121-1.107-1.121C13.913,13.549,13.419,14.049,13.419,14.67 M11.829,27.201V15.805c0-2.112,1.696-3.83,3.78-3.83 h11.244c2.084,0,3.781,1.718,3.781,3.83v11.396c0,2.111-1.697,3.83-3.781,3.83H15.609C13.525,31.031,11.829,29.313,11.829,27.201 M10.57,15.805v11.396c0,2.804,2.259,5.106,5.039,5.106h11.244c2.767,0,5.039-2.303,5.039-5.106V15.805 c0-2.817-2.272-5.107-5.039-5.107H15.609C12.829,10.697,10.57,12.987,10.57,15.805 M21.226,27.021 c-3.004,0-5.453-2.469-5.453-5.513c0-3.055,2.449-5.525,5.453-5.525c3.014,0,5.451,2.471,5.451,5.525 C26.677,24.553,24.24,27.021,21.226,27.021"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
BIN
imgmax/kereso_icon-black.png
Normal file
|
After Width: | Height: | Size: 995 B |
58
imgmax/kereso_icon-black.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="45.332px"
|
||||||
|
height="44.654px"
|
||||||
|
viewBox="0 0 45.332 44.654"
|
||||||
|
enable-background="new 0 0 45.332 44.654"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="kereso_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1612"
|
||||||
|
inkscape:window-height="1280"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.2850809"
|
||||||
|
inkscape:cx="1.0958477"
|
||||||
|
inkscape:cy="19.678033"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g4"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M18.548,5.871h-0.5v0.667v3v0.333h0.5c6.882,0,11.5,6.027,11.5,11.5v0.5h0.505h3h0.495v-0.5 C34.048,13.203,26.808,5.871,18.548,5.871z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="M37.758,28.773c1.285-2.702,2.065-5.868,2.065-8.839c0-5.322-2.071-10.328-5.832-14.095C30.228,2.074,25.228,0,19.912,0 C14.595,0,9.595,2.074,5.831,5.839C2.071,9.606,0,14.612,0,19.934c0,5.324,2.071,10.33,5.831,14.096 c3.761,3.764,8.762,5.837,14.081,5.837c3.382,0,6.729-0.871,9.678-2.518l0.083-0.046l7.352,7.352l8.308-8.308L37.758,28.773z M29.913,35.069c-0.577,0.388-1.136,0.717-1.705,1.002l-0.081,0.041l-0.007-0.007c-2.563,1.305-5.325,1.967-8.208,1.967 c-4.842,0-9.39-1.884-12.807-5.305c-3.424-3.436-5.31-7.993-5.31-12.832c0-4.841,1.886-9.395,5.31-12.82 c3.424-3.428,7.973-5.316,12.807-5.316c4.831,0,9.383,1.888,12.818,5.316c3.417,3.419,5.299,7.973,5.299,12.82 c0,2.483-0.63,5.195-1.62,7.49l-0.004-0.004c-0.192,0.391-0.482,0.945-0.875,1.6l7.327,7.327l-5.833,5.833L29.913,35.069z"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
imgmax/kereso_icon-white.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
58
imgmax/kereso_icon-white.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="45.332px"
|
||||||
|
height="44.654px"
|
||||||
|
viewBox="0 0 45.332 44.654"
|
||||||
|
enable-background="new 0 0 45.332 44.654"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="kereso_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1612"
|
||||||
|
inkscape:window-height="1280"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.2850809"
|
||||||
|
inkscape:cx="1.0958477"
|
||||||
|
inkscape:cy="19.678033"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M18.548,5.871h-0.5v0.667v3v0.333h0.5c6.882,0,11.5,6.027,11.5,11.5v0.5h0.505h3h0.495v-0.5 C34.048,13.203,26.808,5.871,18.548,5.871z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="M37.758,28.773c1.285-2.702,2.065-5.868,2.065-8.839c0-5.322-2.071-10.328-5.832-14.095C30.228,2.074,25.228,0,19.912,0 C14.595,0,9.595,2.074,5.831,5.839C2.071,9.606,0,14.612,0,19.934c0,5.324,2.071,10.33,5.831,14.096 c3.761,3.764,8.762,5.837,14.081,5.837c3.382,0,6.729-0.871,9.678-2.518l0.083-0.046l7.352,7.352l8.308-8.308L37.758,28.773z M29.913,35.069c-0.577,0.388-1.136,0.717-1.705,1.002l-0.081,0.041l-0.007-0.007c-2.563,1.305-5.325,1.967-8.208,1.967 c-4.842,0-9.39-1.884-12.807-5.305c-3.424-3.436-5.31-7.993-5.31-12.832c0-4.841,1.886-9.395,5.31-12.82 c3.424-3.428,7.973-5.316,12.807-5.316c4.831,0,9.383,1.888,12.818,5.316c3.417,3.419,5.299,7.973,5.299,12.82 c0,2.483-0.63,5.195-1.62,7.49l-0.004-0.004c-0.192,0.391-0.482,0.945-0.875,1.6l7.327,7.327l-5.833,5.833L29.913,35.069z"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
imgmax/naptar_icon-black.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
81
imgmax/naptar_icon-black.svg
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="38px"
|
||||||
|
height="43px"
|
||||||
|
viewBox="0 0 38 43"
|
||||||
|
enable-background="new 0 0 38 43"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="naptar_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata23"><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="defs21" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1699"
|
||||||
|
inkscape:window-height="1334"
|
||||||
|
id="namedview19"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.4883721"
|
||||||
|
inkscape:cx="24.466102"
|
||||||
|
inkscape:cy="-40.631356"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g16"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M32.24,3H32V0h-2v3H8V0H6v3H5.401C2.322,3,0,5.184,0,8.372v28.893C0,40.451,2.322,43,5.401,43H32.24 c3.176,0,5.76-2.654,5.76-5.735V8.372C38,5.289,35.416,3,32.24,3z M5.401,5H6v1h2V5h22v1h2V5h0.24C34.394,5,36,6.311,36,8.372V11H2 V8.372C2,6.206,3.346,5,5.401,5z M32.24,41H5.401C3.346,41,2,39.429,2,37.265V13h34v24.265C36,39.324,34.394,41,32.24,41z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M4,27h7v-7H4V27z M5,22.007V21h5v5H9.379H5V22.007z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<rect
|
||||||
|
x="4.458"
|
||||||
|
y="31"
|
||||||
|
width="6"
|
||||||
|
height="6"
|
||||||
|
id="rect6"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,27h7v-7h-7V27z M16.5,22.007V21h5v5h-1.336H16.5V22.007z"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,38h7v-7h-7V38z M16.5,32.669V32h5v5h-1.336H16.5V32.669z"
|
||||||
|
id="path10"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,27h7v-7h-7V27z M28,22.007V21h5v5h-1.052H28V22.007z"
|
||||||
|
id="path12"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,38h7v-7h-7V38z M28,32.669V32h5v5h-1.052H28V32.669z"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
BIN
imgmax/naptar_icon-white.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
81
imgmax/naptar_icon-white.svg
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.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="38px"
|
||||||
|
height="43px"
|
||||||
|
viewBox="0 0 38 43"
|
||||||
|
enable-background="new 0 0 38 43"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="naptar_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata23"><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="defs21" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1699"
|
||||||
|
inkscape:window-height="1334"
|
||||||
|
id="namedview19"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.4883721"
|
||||||
|
inkscape:cx="24.466102"
|
||||||
|
inkscape:cy="-40.631356"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M32.24,3H32V0h-2v3H8V0H6v3H5.401C2.322,3,0,5.184,0,8.372v28.893C0,40.451,2.322,43,5.401,43H32.24 c3.176,0,5.76-2.654,5.76-5.735V8.372C38,5.289,35.416,3,32.24,3z M5.401,5H6v1h2V5h22v1h2V5h0.24C34.394,5,36,6.311,36,8.372V11H2 V8.372C2,6.206,3.346,5,5.401,5z M32.24,41H5.401C3.346,41,2,39.429,2,37.265V13h34v24.265C36,39.324,34.394,41,32.24,41z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M4,27h7v-7H4V27z M5,22.007V21h5v5H9.379H5V22.007z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<rect
|
||||||
|
x="4.458"
|
||||||
|
y="31"
|
||||||
|
width="6"
|
||||||
|
height="6"
|
||||||
|
id="rect6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,27h7v-7h-7V27z M16.5,22.007V21h5v5h-1.336H16.5V22.007z"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,38h7v-7h-7V38z M16.5,32.669V32h5v5h-1.336H16.5V32.669z"
|
||||||
|
id="path10"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,27h7v-7h-7V27z M28,22.007V21h5v5h-1.052H28V22.007z"
|
||||||
|
id="path12"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,38h7v-7h-7V38z M28,32.669V32h5v5h-1.052H28V32.669z"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
83
imgmax/solid_arrow_left.svg
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
viewBox="0 0 32 32"
|
||||||
|
version="1.1"
|
||||||
|
id="svg11"
|
||||||
|
sodipodi:docname="solid_arrow_left.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata15">
|
||||||
|
<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>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1331"
|
||||||
|
inkscape:window-height="905"
|
||||||
|
id="namedview13"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="7.375"
|
||||||
|
inkscape:cx="0.40677966"
|
||||||
|
inkscape:cy="16"
|
||||||
|
inkscape:window-x="1119"
|
||||||
|
inkscape:window-y="277"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="svg11" />
|
||||||
|
<defs
|
||||||
|
id="defs5">
|
||||||
|
<clipPath
|
||||||
|
id="clip-custom_1">
|
||||||
|
<rect
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
id="rect2" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
id="custom_1"
|
||||||
|
data-name="custom – 1"
|
||||||
|
clip-path="url(#clip-custom_1)"
|
||||||
|
transform="matrix(-1,0,0,1,31.808433,0)">
|
||||||
|
<g
|
||||||
|
id="Group_1"
|
||||||
|
data-name="Group 1">
|
||||||
|
<path
|
||||||
|
id="Path_1"
|
||||||
|
data-name="Path 1"
|
||||||
|
d="M 0,0 V 18.431 H 18.467"
|
||||||
|
transform="rotate(-135,12.691681,11.630571)"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:7" />
|
||||||
|
<path
|
||||||
|
id="Path_2"
|
||||||
|
data-name="Path 2"
|
||||||
|
d="M 26.525,16 H 4.733"
|
||||||
|
transform="translate(-4.349)"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:7" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
13
imgmax/solid_arrow_right.svg
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32">
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip-custom_1">
|
||||||
|
<rect width="32" height="32"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<g id="custom_1" data-name="custom – 1" clip-path="url(#clip-custom_1)">
|
||||||
|
<g id="Group_1" data-name="Group 1">
|
||||||
|
<path id="Path_1" data-name="Path 1" d="M0,0V18.431H18.467" transform="translate(13.442 28.829) rotate(-135)" fill="none" stroke="#000" stroke-width="7"/>
|
||||||
|
<path id="Path_2" data-name="Path 2" d="M26.525,16H4.733" transform="translate(-4.349)" fill="none" stroke="#000" stroke-width="7"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 687 B |
BIN
imgmax/transparent.png
Normal file
|
After Width: | Height: | Size: 89 B |
798
js/scripts.js
@@ -54,8 +54,11 @@
|
|||||||
// console.log(cssWidths)
|
// console.log(cssWidths)
|
||||||
|
|
||||||
|
|
||||||
/* --------------------------- css values to vars --------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* FUNCTIONS */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* --------------------------- css values to vars --------------------------- */
|
||||||
|
|
||||||
function calcWidths() {
|
function calcWidths() {
|
||||||
let wow = window.outerWidth
|
let wow = window.outerWidth
|
||||||
@@ -84,9 +87,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var isMobile = checkDevice('mobile')
|
|
||||||
var isTablet = checkDevice('tablet')
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if body has a class
|
* Checks if body has a class
|
||||||
@@ -110,242 +110,66 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//isHome
|
/**
|
||||||
const isHome = bodyHasClass('home')
|
* finds a name of a class, from the first element
|
||||||
|
* @param {Array} classlist the list of classes to search from as an array
|
||||||
//isArchive
|
* @param {String} startString the string to search for
|
||||||
const isArchive = bodyHasClass('archive', 'category-esemeny')
|
* @param {String} sep the separator that separates the startString from the rest of the classname
|
||||||
|
*/
|
||||||
//isSearch
|
function findClassByStart(classlist, startString, sep = "-") {
|
||||||
const isSearch = bodyHasClass('search-results')
|
var fullstring
|
||||||
|
for (let i = 0; i < classlist.length; i++) {
|
||||||
//isSearchNoResults
|
let curr = classlist[i].split(sep)
|
||||||
const isSearchNoResults = bodyHasClass('search-no-results')
|
if (curr[0] == startString) {
|
||||||
|
fullstring = classlist[i]
|
||||||
//isEsemeny
|
}
|
||||||
const isEsemeny = bodyHasClass('category-esemeny')
|
}
|
||||||
|
return fullstring
|
||||||
//isSingle
|
}
|
||||||
const isSingle = bodyHasClass('single')
|
|
||||||
|
|
||||||
// Masonrypage: archive, home or search results
|
|
||||||
var isMasonryPage = isArchive || isHome || isSearch || isSearchNoResults
|
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* ----------------------------- random ----------------------------- */
|
||||||
/* Black logo on scroll on mobile */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
|
|
||||||
$.fn.scrollStopped = function (callback) {
|
function random2() {
|
||||||
var that = this, $this = $(that);
|
const choices = [
|
||||||
$this.scroll(function (ev) {
|
[1, 3],
|
||||||
clearTimeout($this.data('scrollTimeout'));
|
[1, 5],
|
||||||
$this.data('scrollTimeout', setTimeout(callback.bind(that), 250, ev));
|
[1, 6],
|
||||||
});
|
[2, 4],
|
||||||
|
[2, 6],
|
||||||
|
[3, 4],
|
||||||
|
[3, 5],
|
||||||
|
[4, 6]
|
||||||
|
]
|
||||||
|
let nr = Math.floor(Math.random() * choices.length);
|
||||||
|
return choices[nr]
|
||||||
|
}
|
||||||
|
|
||||||
|
//jquery function, adds random class to 3 random cihldren
|
||||||
|
(function ($) {
|
||||||
|
$.fn.addRandomClasses = function () {
|
||||||
|
let rn = random2()
|
||||||
|
for (let i = 0; i < 2; i++) {
|
||||||
|
var j = rn[i]
|
||||||
|
this.children("article:nth-child(" + j + ")").addClass("random")
|
||||||
|
}
|
||||||
|
return this
|
||||||
};
|
};
|
||||||
|
})(jQuery);
|
||||||
var isMenuOpen = function () {
|
|
||||||
let menuopen = ($('#sidebar').attr('data-simplersidebar') == 'opened') ? true : false
|
|
||||||
return menuopen
|
|
||||||
}
|
|
||||||
|
|
||||||
$(window).scroll(function () {
|
|
||||||
if (isMobile && !isMenuOpen()) {
|
|
||||||
$('.dis-logo, .menubutton-icon').addClass('black')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
$(window).scrollStopped(function () {
|
|
||||||
if (isMobile && !isMenuOpen()) {
|
|
||||||
$('.dis-logo, .menubutton-icon').removeClass('black')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* SEARCH */
|
/* HOME & ARCHIVES FUNCTIONS */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
// on mobile add to sidebar:
|
|
||||||
// if (isMobile) {
|
|
||||||
// $(".search-box>.search-bar").prependTo("#sidebar-wrapper")
|
|
||||||
// }
|
|
||||||
|
|
||||||
//clicking on desktop
|
|
||||||
if (!isMobile) {
|
|
||||||
$(".search-box button").click(function (e) {
|
|
||||||
// e.preventDefault()
|
|
||||||
var bar = $(this).next(".search-bar")
|
|
||||||
if (bar.hasClass("opensearch")) {
|
|
||||||
//if search is opened close:
|
|
||||||
bar.stop().animate({ width: "0" }, 400, function () {
|
|
||||||
bar.hide().removeClass("opensearch")
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
let ww = calcWidths()
|
|
||||||
//if it's closed open:
|
|
||||||
bar.show().stop().animate({ width: ww.wiw - (ww.desktophomemargin * 2) }, 400, function () {
|
|
||||||
bar.addClass("opensearch")
|
|
||||||
$(".search-input").focus()
|
|
||||||
})
|
|
||||||
// console.log("calc(100% - " + (desktophomemargin * 2) + "px)")
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ========================================================================== */
|
|
||||||
/* MENU */
|
|
||||||
/* ========================================================================== */
|
|
||||||
|
|
||||||
var rotateMenuButton = function () {
|
|
||||||
if ($(".menubutton button").hasClass("rotated")) {
|
|
||||||
$(".menubutton button").removeClass("rotated");
|
|
||||||
} else {
|
|
||||||
$(".menubutton button").addClass("rotated").addClass("inverted");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function mwCalc() {
|
|
||||||
let ww = calcWidths()
|
|
||||||
if (isMobile) {
|
|
||||||
return ww.wow
|
|
||||||
} else if (isTablet) {
|
|
||||||
return 350
|
|
||||||
} else {
|
|
||||||
return 500
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var menuWidth = mwCalc()
|
|
||||||
// var menuWidth = 100
|
|
||||||
|
|
||||||
// if (isTablet) {
|
|
||||||
// menuWidth = 350
|
|
||||||
// }
|
|
||||||
// if (!isMobile && !isTablet) {
|
|
||||||
// menuWidth = 500
|
|
||||||
// }
|
|
||||||
|
|
||||||
$("#sidebar").simplerSidebar({
|
|
||||||
|
|
||||||
selectors: {
|
|
||||||
trigger: "#toggle-sidebar",
|
|
||||||
quitter: "#toggle-sidebar"
|
|
||||||
},
|
|
||||||
sidebar: {
|
|
||||||
width: menuWidth
|
|
||||||
},
|
|
||||||
mask: {
|
|
||||||
display: false,
|
|
||||||
css: {
|
|
||||||
backgroundColor: "black",
|
|
||||||
opacity: 1,
|
|
||||||
filter: "Alpha(opacity=100)" // IE opacity fix
|
|
||||||
}
|
|
||||||
},
|
|
||||||
gap: 0,
|
|
||||||
events: {
|
|
||||||
on: {
|
|
||||||
animation: {
|
|
||||||
both: rotateMenuButton
|
|
||||||
|
|
||||||
}
|
|
||||||
},
|
|
||||||
callbacks: {
|
|
||||||
animation: {
|
|
||||||
open: function () {
|
|
||||||
if (isMobile) {
|
|
||||||
$('.social-link, .events-link').removeClass('hidden')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
close: function () {
|
|
||||||
$(".menubutton button").removeClass("inverted")
|
|
||||||
if (isMobile) {
|
|
||||||
$('.social-link, .events-link').addClass('hidden')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
freezePage: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
/* --------------------- generic page load for onresize --------------------- */
|
|
||||||
|
|
||||||
var articleWrapCounter = 0
|
|
||||||
|
|
||||||
function loadPage() {
|
|
||||||
if (isMobile) {
|
|
||||||
// hide social buttons
|
|
||||||
$('.social-link, .events-link').addClass('hidden')
|
|
||||||
|
|
||||||
// move search to menu
|
|
||||||
$(".search-box>.search-bar").prependTo("#sidebar-wrapper")
|
|
||||||
|
|
||||||
// set up no results
|
|
||||||
$('article.no-result').show()
|
|
||||||
$('body.no-result .archivetitle>h2').appendTo('article.no-result')
|
|
||||||
} else {
|
|
||||||
// not mobile
|
|
||||||
|
|
||||||
//show social links
|
|
||||||
$('.social-link, .events-link').removeClass('hidden')
|
|
||||||
|
|
||||||
// move search to back
|
|
||||||
$("#sidebar-wrapper>.search-bar").appendTo(".search-box")
|
|
||||||
|
|
||||||
// set up no results
|
|
||||||
$('article.no-result h2').appendTo('.archivetitle')
|
|
||||||
$('article.no-result').hide()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isMasonryPage) {
|
|
||||||
if (isMobile) {
|
|
||||||
//no overflowY
|
|
||||||
$('html').css({ overflowY: "unset" })
|
|
||||||
|
|
||||||
unWrapArts()
|
|
||||||
} else {
|
|
||||||
//no overflowY
|
|
||||||
$('html').css({ overflowY: "hidden" })
|
|
||||||
|
|
||||||
wrapArts()
|
|
||||||
|
|
||||||
$("body:not(.no-result) .archivetitle h1").fitText(0.7)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
loadPage()
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
/* HOME & ARCHIVES */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
|
|
||||||
|
|
||||||
/* ------------------------------- no results ------------------------------- */
|
|
||||||
|
|
||||||
|
|
||||||
if (isMasonryPage && $("article").hasClass('no-result')) {
|
|
||||||
$('body').addClass("no-result")
|
|
||||||
// if (!isMobile) {
|
|
||||||
// $('article.no-result h2').appendTo('.archivetitle')
|
|
||||||
// $('article.no-result').hide()
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* ------------------------------ wrap articles ----------------------------- */
|
/* ------------------------------ wrap articles ----------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function wrapArts() {
|
function wrapArts() {
|
||||||
//calculate wrappable elements
|
//calculate wrappable elements
|
||||||
if ($(".hbox").length) {
|
if ($(".hbox").length) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
$('#content>*:not(.misha_loadmore)').addClass("hbox")
|
$('#content>article, #content>.archivetitle, #content>.archivedescription').addClass("hbox")
|
||||||
var wrapArticles = $(".hbox").length
|
var wrapArticles = $(".hbox").length
|
||||||
|
|
||||||
if (isHome) {
|
if (isHome) {
|
||||||
@@ -380,11 +204,11 @@
|
|||||||
}
|
}
|
||||||
//wrap classes
|
//wrap classes
|
||||||
for (let i = 0; i < articleWrapCounter; i++) {
|
for (let i = 0; i < articleWrapCounter; i++) {
|
||||||
var j = i + 1
|
let j = i + 1
|
||||||
if (isHome) {
|
if (isHome) {
|
||||||
j = i + 3
|
j = i + 3
|
||||||
}
|
}
|
||||||
var k = i + 1
|
let k = i + 1
|
||||||
$(".home-thumbnail-small-" + k).wrapAll('<div class="home_wrapper-small home_wrapper-' + j + '"></div>')
|
$(".home-thumbnail-small-" + k).wrapAll('<div class="home_wrapper-small home_wrapper-' + j + '"></div>')
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
$(".home_wrapper-" + j).addClass("home_wrapper-s1")
|
$(".home_wrapper-" + j).addClass("home_wrapper-s1")
|
||||||
@@ -395,159 +219,31 @@
|
|||||||
function unWrapArts() {
|
function unWrapArts() {
|
||||||
$('.home_wrapper-big .hbox').unwrap('.home_wrapper-big')
|
$('.home_wrapper-big .hbox').unwrap('.home_wrapper-big')
|
||||||
|
|
||||||
var wrapArticles = $(".hbox").length
|
|
||||||
for (let i = 0; i < wrapArticles.length + 1; i++) {
|
|
||||||
$('article').removeClass('.home-thumbnail-small-' + i)
|
|
||||||
|
|
||||||
|
var wrapArticles = $(".hbox").length
|
||||||
|
for (let i = 0; i < wrapArticles; i++) {
|
||||||
|
let hs = 'home-thumbnail-small-' + (i + 1)
|
||||||
|
$('.' + hs).removeClass(hs)
|
||||||
}
|
}
|
||||||
$('.hbox').removeClass('home-small').removeClass('hbox').unwrap('.home_wrapper-small')
|
$('.hbox').removeClass('home-small').removeClass('hbox').unwrap('.home_wrapper-small')
|
||||||
|
$('.home_wrapper-s1').removeClass('home_wrapper-s1')
|
||||||
|
|
||||||
|
$('.home-big').removeClass('home-big')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isMobile) {
|
|
||||||
if (isMasonryPage) {
|
|
||||||
|
|
||||||
|
|
||||||
// //calculate wrappable elements
|
|
||||||
// $('#content>*:not(.misha_loadmore)').addClass("hbox")
|
|
||||||
// var wrapArticles = $(".hbox").length
|
|
||||||
|
|
||||||
// //wrapping for big-small difference
|
|
||||||
// if (isHome) {
|
|
||||||
// $('.hbox:first-child').wrap('<div class="home_wrapper-big home_wrapper-1"></div>').addClass("home-big")
|
|
||||||
// $('.hbox:nth-child(2)').wrap('<div class="home_wrapper-big home_wrapper-2"></div>').addClass("home-big")
|
|
||||||
// wrapArticles = $(".hbox").length - 2
|
|
||||||
// }
|
|
||||||
|
|
||||||
// //add classes to articles and elements
|
|
||||||
// var articleWrapCounter = 0
|
|
||||||
// for (let i = 0; i < wrapArticles; i++) {
|
|
||||||
// var j = i + 1
|
|
||||||
|
|
||||||
// if (isHome) {
|
|
||||||
// j = i + 3
|
|
||||||
// }
|
|
||||||
|
|
||||||
// if (i % 6 == 0) {
|
|
||||||
// articleWrapCounter++
|
|
||||||
// }
|
|
||||||
// //console.log($('.hbox:nth-child(' + j + ')').attr("id"), i, j)
|
|
||||||
// $('.hbox:nth-child(' + j + ')').addClass("home-small home-thumbnail-small-" + articleWrapCounter)
|
|
||||||
// //change order if there is a description
|
|
||||||
// if ($("body").is('.archive, .tag') && articleWrapCounter == 1) {
|
|
||||||
// if (j == 3 || j == 4) {
|
|
||||||
// $('.hbox:nth-child(' + j + ')').css({ order: j - 1 })
|
|
||||||
// } else if (j == 5 || j == 6) {
|
|
||||||
// $('.hbox:nth-child(' + j + ')').css({ order: j })
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// //wrap classes
|
|
||||||
// for (let i = 0; i < articleWrapCounter; i++) {
|
|
||||||
// var j = i + 1
|
|
||||||
// if (isHome) {
|
|
||||||
// j = i + 3
|
|
||||||
// }
|
|
||||||
// var k = i + 1
|
|
||||||
// $(".home-thumbnail-small-" + k).wrapAll('<div class="home_wrapper-small home_wrapper-' + j + '"></div>')
|
|
||||||
// if (i == 0) {
|
|
||||||
// $(".home_wrapper-" + j).addClass("home_wrapper-s1")
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/* -------------------------------- other css ------------------------------- */
|
|
||||||
|
|
||||||
//add bottom scrollbar to div on bottom:
|
|
||||||
// if (bottomScrollHeight > 0) {
|
|
||||||
// $(".home_wrapper-big .metadata").css({ bottom: bottomScrollHeight })
|
|
||||||
// }
|
|
||||||
|
|
||||||
//fit title
|
|
||||||
// $("body:not(.no-result) .archivetitle h1").fitText(0.7)
|
|
||||||
|
|
||||||
}//isMasonryPage end
|
|
||||||
}// !isMobile end
|
|
||||||
|
|
||||||
/* ---------------- move bevezeto out from metadata on mobile --------------- */
|
/* ---------------- move bevezeto out from metadata on mobile --------------- */
|
||||||
|
|
||||||
if (isHome && isMobile) {
|
function moveBevezetoMobile() {
|
||||||
$("article .metadata .bevezetoWrapper").each(function () {
|
$("article .metadata .bevezetoWrapper").each(function () {
|
||||||
$(this).parents('article').append($(this))
|
$(this).parents('article').append($(this))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------- random cutouts ----------------------------- */
|
function moveBevezetoDesktop() {
|
||||||
|
$("article>.bevezetoWrapper").each(function () {
|
||||||
function random2() {
|
$(this).parent('article').children('.metadata').children('.postedon').after($(this))
|
||||||
const choices = [
|
|
||||||
[1, 3],
|
|
||||||
[1, 5],
|
|
||||||
[1, 6],
|
|
||||||
[2, 4],
|
|
||||||
[2, 6],
|
|
||||||
[3, 4],
|
|
||||||
[3, 5],
|
|
||||||
[4, 6]
|
|
||||||
]
|
|
||||||
let nr = Math.floor(Math.random() * choices.length);
|
|
||||||
return choices[nr]
|
|
||||||
}
|
|
||||||
|
|
||||||
//jquery function, adds random class to 3 random cihldren
|
|
||||||
(function ($) {
|
|
||||||
$.fn.addRandomClasses = function () {
|
|
||||||
let rn = random2()
|
|
||||||
for (let i = 0; i < 2; i++) {
|
|
||||||
var j = rn[i]
|
|
||||||
this.children("article:nth-child(" + j + ")").addClass("random")
|
|
||||||
}
|
|
||||||
return this
|
|
||||||
};
|
|
||||||
})(jQuery);
|
|
||||||
|
|
||||||
|
|
||||||
$(".home_wrapper-small").each(function () {
|
|
||||||
$(this).addRandomClasses()
|
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------------------------- Cutouts on mobile --------------------------- */
|
|
||||||
|
|
||||||
//add class to odd elems
|
|
||||||
|
|
||||||
// function mobileHomeClass() {
|
|
||||||
// if (isMobile && isMasonryPage) {
|
|
||||||
// $('article:not(.post_nr):not(.cutOk) ').addClass('cutCurr')
|
|
||||||
// $('article.cutCurr:nth-child(even)').addClass('cut-even')
|
|
||||||
// $('article.cutCurr').addClass('cutOk').removeClass('cutCurr')
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
||||||
// mobileHomeClass()
|
|
||||||
|
|
||||||
/* ----------------------------- Snap on mobile ----------------------------- */
|
|
||||||
|
|
||||||
// if (isMobile) {
|
|
||||||
// if (isMasonryPage) {
|
|
||||||
// $("article.post").SnapScroll({
|
|
||||||
// animateDuration: 400
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/* --------------------------------- To top --------------------------------- */
|
|
||||||
|
|
||||||
// $(".totop>a").click(function (e) {
|
|
||||||
// e.preventDefault()
|
|
||||||
// $('html, body').stop().animate({ scrollTop: 0 }, 800);
|
|
||||||
// })
|
|
||||||
|
|
||||||
// //hide totop if not needed
|
|
||||||
// if (!($("main").height() > $(window).height()) && isMobile) {
|
|
||||||
// $(".totop").hide()
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
/* ---------------------------- Scroll on desktop --------------------------- */
|
/* ---------------------------- Scroll on desktop --------------------------- */
|
||||||
|
|
||||||
@@ -628,8 +324,150 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* SEARCH */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
//clicking on desktop
|
||||||
|
if (!isMobile) {
|
||||||
|
$(".search-box button").click(function (e) {
|
||||||
|
// e.preventDefault()
|
||||||
|
var bar = $(this).next(".search-bar")
|
||||||
|
if (bar.hasClass("opensearch")) {
|
||||||
|
//if search is opened close:
|
||||||
|
bar.stop().animate({ width: "0" }, 400, function () {
|
||||||
|
bar.hide().removeClass("opensearch")
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
let ww = calcWidths()
|
||||||
|
//if it's closed open:
|
||||||
|
bar.show().stop().animate({ width: ww.wiw - (ww.desktophomemargin * 2) }, 400, function () {
|
||||||
|
bar.addClass("opensearch")
|
||||||
|
$(".search-input").focus()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* MENU */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* ------------------------------ menufunctions ----------------------------- */
|
||||||
|
|
||||||
|
var rotateMenuButton = function () {
|
||||||
|
if ($(".menubutton button").hasClass("rotated")) {
|
||||||
|
$(".menubutton button").removeClass("rotated");
|
||||||
|
} else {
|
||||||
|
$(".menubutton button").addClass("rotated").addClass("inverted");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function mwCalc() {
|
||||||
|
let ww = calcWidths()
|
||||||
|
if (isMobile) {
|
||||||
|
return ww.wow
|
||||||
|
} else if (isTablet) {
|
||||||
|
return 350
|
||||||
|
} else {
|
||||||
|
return 500
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ----------------------------- Set up the menu ---------------------------- */
|
||||||
|
|
||||||
|
var menuWidth = mwCalc()
|
||||||
|
|
||||||
|
$("#sidebar").simplerSidebar({
|
||||||
|
|
||||||
|
selectors: {
|
||||||
|
trigger: "#toggle-sidebar",
|
||||||
|
quitter: "#toggle-sidebar"
|
||||||
|
},
|
||||||
|
sidebar: {
|
||||||
|
width: menuWidth
|
||||||
|
},
|
||||||
|
mask: {
|
||||||
|
display: false,
|
||||||
|
css: {
|
||||||
|
backgroundColor: "black",
|
||||||
|
opacity: 1,
|
||||||
|
filter: "Alpha(opacity=100)" // IE opacity fix
|
||||||
|
}
|
||||||
|
},
|
||||||
|
gap: 0,
|
||||||
|
events: {
|
||||||
|
on: {
|
||||||
|
animation: {
|
||||||
|
both: rotateMenuButton
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
callbacks: {
|
||||||
|
animation: {
|
||||||
|
open: function () {
|
||||||
|
if (isMobile) {
|
||||||
|
$('.social-link, .events-link').removeClass('hidden')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
close: function () {
|
||||||
|
$(".menubutton button").removeClass("inverted")
|
||||||
|
if (isMobile) {
|
||||||
|
$('.social-link, .events-link').addClass('hidden')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
freezePage: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* BOOLEANS */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
var isMobile = checkDevice('mobile')
|
||||||
|
var isTablet = checkDevice('tablet')
|
||||||
|
|
||||||
|
//isHome
|
||||||
|
const isHome = bodyHasClass('home')
|
||||||
|
|
||||||
|
//isArchive
|
||||||
|
const isArchive = bodyHasClass('archive', 'category-esemeny')
|
||||||
|
|
||||||
|
//isSearch
|
||||||
|
const isSearch = bodyHasClass('search-results')
|
||||||
|
|
||||||
|
//isSearchNoResults
|
||||||
|
const isSearchNoResults = bodyHasClass('search-no-results')
|
||||||
|
|
||||||
|
//isEsemeny
|
||||||
|
const isEsemeny = bodyHasClass('category-esemeny')
|
||||||
|
|
||||||
|
//isSingle
|
||||||
|
const isSingle = bodyHasClass('single')
|
||||||
|
|
||||||
|
// Masonrypage: archive, home or search results
|
||||||
|
var isMasonryPage = isArchive || isHome || isSearch || isSearchNoResults
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* Set up specific pages */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* ------------------------------- no results ------------------------------- */
|
||||||
|
|
||||||
|
if (isMasonryPage && $("article").hasClass('no-result')) {
|
||||||
|
$('body').addClass("no-result")
|
||||||
|
}
|
||||||
|
|
||||||
const selector = isEsemeny ? 'main>section>article' : 'main>#content>div'
|
const selector = isEsemeny ? 'main>section>article' : 'main>#content>div'
|
||||||
|
|
||||||
|
// default current elem for scrolling
|
||||||
var currElem = $(selector + ':first-child')
|
var currElem = $(selector + ':first-child')
|
||||||
|
|
||||||
//checking the current scroll location for refresh:
|
//checking the current scroll location for refresh:
|
||||||
@@ -668,14 +506,127 @@
|
|||||||
|
|
||||||
// console.log("currscroll", currscroll, "scrollnr", scrollnr, "closest", closest)
|
// console.log("currscroll", currscroll, "scrollnr", scrollnr, "closest", closest)
|
||||||
console.log("start location: " + currElem.attr("class"))
|
console.log("start location: " + currElem.attr("class"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* EVENTS - ESEMÉNYEK */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
if (isEsemeny) {
|
||||||
|
if (!isMobile) {
|
||||||
|
$('html').css({ overflowY: "hidden" })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --------------------- generic page load for onresize --------------------- */
|
||||||
|
|
||||||
|
var articleWrapCounter = 0
|
||||||
|
|
||||||
|
function loadPage() {
|
||||||
|
if (isMobile) {
|
||||||
|
// hide social buttons
|
||||||
|
$('.social-link, .events-link').addClass('hidden')
|
||||||
|
|
||||||
|
// move search to menu
|
||||||
|
$(".search-box>.search-bar").prependTo("#sidebar-wrapper")
|
||||||
|
|
||||||
|
// set up no results
|
||||||
|
$('article.no-result').show()
|
||||||
|
$('body.no-result .archivetitle>h2').appendTo('article.no-result')
|
||||||
|
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// not mobile
|
||||||
|
|
||||||
|
//show social links
|
||||||
|
$('.social-link, .events-link').removeClass('hidden')
|
||||||
|
|
||||||
|
// move search to back
|
||||||
|
$("#sidebar-wrapper>.search-bar").appendTo(".search-box")
|
||||||
|
|
||||||
|
// set up no results
|
||||||
|
$('article.no-result h2').appendTo('.archivetitle')
|
||||||
|
$('article.no-result').hide()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isMasonryPage) {
|
||||||
|
if (isMobile) {
|
||||||
|
//no overflowY
|
||||||
|
$('html').css({ overflowY: "unset" })
|
||||||
|
|
||||||
|
unWrapArts()
|
||||||
|
|
||||||
|
moveBevezetoMobile()
|
||||||
|
} else {
|
||||||
|
//no overflowY
|
||||||
|
$('html').css({ overflowY: "hidden" })
|
||||||
|
|
||||||
|
wrapArts()
|
||||||
|
|
||||||
|
$("body:not(.no-result) .archivetitle h1").fitText(0.7)
|
||||||
|
|
||||||
|
moveBevezetoDesktop()
|
||||||
|
|
||||||
|
// add random classes
|
||||||
|
if (!$('.random').length) {
|
||||||
|
$(".home_wrapper-small").each(function () {
|
||||||
|
$(this).addRandomClasses()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------- on scroll on desktop -------------------------- */
|
if (isMasonryPage || isEsemeny) {
|
||||||
|
if (isMobile) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
currElem = $(selector + ':first-child')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
loadPage()
|
||||||
|
|
||||||
|
/* --------------------------- hide loading scree --------------------------- */
|
||||||
|
|
||||||
|
$('.loadingscreen').hide()
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* Black logo on scroll on mobile */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
$.fn.scrollStopped = function (callback) {
|
||||||
|
var that = this, $this = $(that);
|
||||||
|
$this.scroll(function (ev) {
|
||||||
|
clearTimeout($this.data('scrollTimeout'));
|
||||||
|
$this.data('scrollTimeout', setTimeout(callback.bind(that), 250, ev));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
var isMenuOpen = function () {
|
||||||
|
let menuopen = ($('#sidebar').attr('data-simplersidebar') == 'opened') ? true : false
|
||||||
|
return menuopen
|
||||||
|
}
|
||||||
|
|
||||||
|
$(window).scroll(function () {
|
||||||
|
if (isMobile && !isMenuOpen() && (isHome || isSingle)) {
|
||||||
|
$('.dis-logo, .menubutton-icon').addClass('black')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
$(window).scrollStopped(function () {
|
||||||
|
if (isMobile && !isMenuOpen() && (isHome || isSingle)) {
|
||||||
|
$('.dis-logo, .menubutton-icon').removeClass('black')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* SCROLL */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* ------------------------ scroll on home on desktop ----------------------- */
|
||||||
|
|
||||||
var scrolltimer = false;
|
var scrolltimer = false;
|
||||||
$(window).on('wheel DOMMouseScroll', function (e) {
|
$(window).on('wheel DOMMouseScroll', function (e) {
|
||||||
@@ -867,18 +818,20 @@
|
|||||||
|
|
||||||
/* ------------------------------ hover on home ----------------------------- */
|
/* ------------------------------ hover on home ----------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const metadataHeights = {}
|
const metadataHeights = {}
|
||||||
|
|
||||||
//hover on big articles
|
//hover on big articles
|
||||||
|
|
||||||
$(".home-big h2 a").hover(function () {
|
$('body').on('mouseenter', '.home-big h2 a', function () {
|
||||||
bigArticleHoverShow($(this))
|
bigArticleHoverShow($(this))
|
||||||
|
})
|
||||||
|
$('body').on('mouseleave', '.home-big h2 a', function () {
|
||||||
|
bigArticleHoverHide($(this))
|
||||||
|
})
|
||||||
|
|
||||||
}, function () {
|
function bigArticleHoverHide(cc) {
|
||||||
|
// let cc = $(this)
|
||||||
let cc = $(this)
|
if (!isMobile) {
|
||||||
let cArticle = cc.parents("article")
|
let cArticle = cc.parents("article")
|
||||||
let cMetadata = cArticle.children(".metadata")
|
let cMetadata = cArticle.children(".metadata")
|
||||||
|
|
||||||
@@ -898,11 +851,13 @@
|
|||||||
//hide and show metadata
|
//hide and show metadata
|
||||||
cMetadata.children(".alcimWrapper, .bevezetoWrapper").css({ display: 'none' }).removeClass("transparent")
|
cMetadata.children(".alcimWrapper, .bevezetoWrapper").css({ display: 'none' }).removeClass("transparent")
|
||||||
cMetadata.children(".categories, .postedon").removeClass("transparent").show()
|
cMetadata.children(".categories, .postedon").removeClass("transparent").show()
|
||||||
|
cMetadata.css({ height: '' })
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function bigArticleHoverShow(cc) {
|
function bigArticleHoverShow(cc) {
|
||||||
|
if (!isMobile) {
|
||||||
// let cc = $(this)
|
// let cc = $(this)
|
||||||
let cArticle = cc.parents("article")
|
let cArticle = cc.parents("article")
|
||||||
let cMetadata = cArticle.children(".metadata")
|
let cMetadata = cArticle.children(".metadata")
|
||||||
@@ -910,12 +865,12 @@
|
|||||||
let cBevezeto = cBevezetoWrapper.children(".bevezeto")
|
let cBevezeto = cBevezetoWrapper.children(".bevezeto")
|
||||||
|
|
||||||
// calculate default metadata height
|
// calculate default metadata height
|
||||||
if (!metadataHeights.collapsedHeight) {
|
|
||||||
metadataHeights.collapsedHeight = cMetadata[0].getBoundingClientRect().height
|
metadataHeights.collapsedHeight = cMetadata[0].getBoundingClientRect().height
|
||||||
}
|
|
||||||
|
|
||||||
//calculate opened metadata height
|
//calculate opened metadata height
|
||||||
if (!metadataHeights.openedHeight) {
|
|
||||||
let h2H = 0
|
let h2H = 0
|
||||||
$(".home-big h2").each(function () {
|
$(".home-big h2").each(function () {
|
||||||
if ($(this)[0].getBoundingClientRect().height > h2H) {
|
if ($(this)[0].getBoundingClientRect().height > h2H) {
|
||||||
@@ -932,7 +887,7 @@
|
|||||||
$('.bevezetoWrapper').css({ height: metadataHeights.openedHeight })
|
$('.bevezetoWrapper').css({ height: metadataHeights.openedHeight })
|
||||||
|
|
||||||
$('.alcimWrapper').css({ height: metadataHeights.openedHeight })
|
$('.alcimWrapper').css({ height: metadataHeights.openedHeight })
|
||||||
}
|
|
||||||
|
|
||||||
//add hovered class
|
//add hovered class
|
||||||
cArticle.addClass("hovered")
|
cArticle.addClass("hovered")
|
||||||
@@ -978,7 +933,9 @@
|
|||||||
ellipsis.set();
|
ellipsis.set();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uncomment for debugging hover
|
||||||
// if (!isMobile && isHome) {
|
// if (!isMobile && isHome) {
|
||||||
// setTimeout(() => {
|
// setTimeout(() => {
|
||||||
// bigArticleHoverShow($(".home_wrapper-1 .home-big h2 a"))
|
// bigArticleHoverShow($(".home_wrapper-1 .home-big h2 a"))
|
||||||
@@ -986,35 +943,17 @@
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
/* ------------------------- hover on small articles ------------------------ */
|
||||||
|
|
||||||
/**
|
|
||||||
* finds a name of a class, from the first element
|
|
||||||
* @param {Array} classlist the list of classes to search from as an array
|
|
||||||
* @param {String} startString the string to search for
|
|
||||||
* @param {String} sep the separator that separates the startString from the rest of the classname
|
|
||||||
*/
|
|
||||||
function findClassByStart(classlist, startString, sep = "-") {
|
|
||||||
var fullstring
|
|
||||||
for (let i = 0; i < classlist.length; i++) {
|
|
||||||
let curr = classlist[i].split(sep)
|
|
||||||
if (curr[0] == startString) {
|
|
||||||
fullstring = classlist[i]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return fullstring
|
|
||||||
}
|
|
||||||
|
|
||||||
//hover on small articles
|
|
||||||
function showTitle(th) {
|
function showTitle(th) {
|
||||||
if (!$('body').hasClass('no-result')) {
|
if (!$('body').hasClass('no-result') && !isMobile) {
|
||||||
$(th).children("h2").show()
|
$(th).children("h2").show()
|
||||||
$(th).children(".metadata").addClass("vis")
|
$(th).children(".metadata").addClass("vis")
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function hideTitle(th) {
|
function hideTitle(th) {
|
||||||
if (!$('body').hasClass('no-result')) {
|
if (!$('body').hasClass('no-result') && !isMobile) {
|
||||||
$(th).children("h2").hide()
|
$(th).children("h2").hide()
|
||||||
$(th).children(".metadata").removeClass("vis")
|
$(th).children(".metadata").removeClass("vis")
|
||||||
}
|
}
|
||||||
@@ -1050,17 +989,6 @@
|
|||||||
}, ".home-small a.thumbnailwrapper")
|
}, ".home-small a.thumbnailwrapper")
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
/* EVENTS - ESEMÉNYEK */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
|
|
||||||
if (isEsemeny) {
|
|
||||||
if (!isMobile) {
|
|
||||||
$('html').css({ overflowY: "hidden" })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* CIRCULAR TEXT */
|
/* CIRCULAR TEXT */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
@@ -1069,26 +997,6 @@
|
|||||||
const bedoWords = bedoListItems + " a"
|
const bedoWords = bedoListItems + " a"
|
||||||
const bedoLetters = bedoWords + " span"
|
const bedoLetters = bedoWords + " span"
|
||||||
|
|
||||||
|
|
||||||
//move subs to wrapper
|
|
||||||
$(bedoListItems).each(function () {
|
|
||||||
let itemId = $(this).attr("id")
|
|
||||||
let tagClass = $(this).attr("class").split(" ")
|
|
||||||
let itemClass = findClassByStart(tagClass, 'tag')
|
|
||||||
|
|
||||||
// add wrapper div
|
|
||||||
// $(".sub-wrapper").append('<div id="' + itemId + '" class="bedo-sub-wrapper ' + itemClass + '"></div>')
|
|
||||||
|
|
||||||
// add tag title
|
|
||||||
// $(this).children("a").clone().appendTo(".sub-wrapper #" + itemId)
|
|
||||||
|
|
||||||
//add sub text
|
|
||||||
// $(this).children("span").appendTo(".sub-wrapper #" + itemId)
|
|
||||||
|
|
||||||
//add circle
|
|
||||||
// $(".sub-wrapper #" + itemId + " span").append('<div class="circle">')
|
|
||||||
})
|
|
||||||
|
|
||||||
//wrap each letter to spans
|
//wrap each letter to spans
|
||||||
var charnum = 0
|
var charnum = 0
|
||||||
$(bedoWords).each(function () {
|
$(bedoWords).each(function () {
|
||||||
@@ -1138,36 +1046,23 @@
|
|||||||
|
|
||||||
//hide caption on desktop
|
//hide caption on desktop
|
||||||
if (!isMobile) {
|
if (!isMobile) {
|
||||||
// $('.wp-block-gallery img, .wp-block-image img, .vis').hover(function () {
|
|
||||||
// $(this).parent('a').next("figcaption").addClass("vis")
|
|
||||||
// }, function () {
|
|
||||||
// $('.wp-block-gallery .vis, .wp-block-image .vis')
|
|
||||||
// .removeClass("vis")
|
|
||||||
// })
|
|
||||||
|
|
||||||
$('.wp-block-gallery .blocks-gallery-item, .wp-block-image').hover(function () {
|
$('.wp-block-gallery .blocks-gallery-item, .wp-block-image').hover(function () {
|
||||||
$(this).find("figcaption").addClass("vis")
|
$(this).find("figcaption").addClass("vis")
|
||||||
|
|
||||||
}, function () {
|
}, function () {
|
||||||
$('.wp-block-gallery .vis, .wp-block-image .vis').removeClass("vis")
|
$('.wp-block-gallery .vis, .wp-block-image .vis').removeClass("vis")
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------- Lightbox -------------------------------- */
|
/* -------------------------------- Lightbox -------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//group gallery images:
|
//group gallery images:
|
||||||
$('.wp-block-gallery a, .wp-block-image a').addClass('cb-gallery')
|
$('.wp-block-gallery a, .wp-block-image a').addClass('cb-gallery')
|
||||||
|
|
||||||
//copy figcaption to title
|
//copy figcaption to title
|
||||||
$("a.cb-gallery ~ figcaption").each(function () {
|
$("a.cb-gallery ~ figcaption").each(function () {
|
||||||
let captiotext = $(this).html()
|
let captiontext = $(this).html()
|
||||||
$(this).prev('.cb-gallery').attr({ title: captiotext })
|
$(this).prev('.cb-gallery').attr({ title: captiontext })
|
||||||
})
|
})
|
||||||
|
|
||||||
const lightBoxMaxHeight = isMobile ? '65%' : '80%'
|
const lightBoxMaxHeight = isMobile ? '65%' : '80%'
|
||||||
@@ -1256,17 +1151,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}//if single end
|
}//if single end
|
||||||
|
|
||||||
|
|
||||||
/* ------------------------------- IOS fix try ------------------------------ */
|
|
||||||
// $(".logo a").click(function(e){
|
|
||||||
// e.preventDefault()
|
|
||||||
// alert('hello')
|
|
||||||
// })
|
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* window resize event */
|
/* window resize event */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
@@ -1281,6 +1167,8 @@
|
|||||||
// calc other vars
|
// calc other vars
|
||||||
menuWidth = mwCalc()
|
menuWidth = mwCalc()
|
||||||
|
|
||||||
|
articleWrapCounter = 0
|
||||||
|
|
||||||
//run load script
|
//run load script
|
||||||
loadPage()
|
loadPage()
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
"node-sass": "^4.11.0"
|
"node-sass": "^4.11.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"gulp-clean-css": "^4.2.0",
|
||||||
|
"gulp-svgmin": "^2.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
font-size: 6.8rem;
|
font-size: 6.8rem;
|
||||||
}
|
}
|
||||||
@media #{$bigdesktop-hidpi} {
|
@media #{$bigdesktop-hidpi} {
|
||||||
// font-size: 5.5rem !important;
|
font-size: 5.5rem;
|
||||||
}
|
}
|
||||||
@media #{$verybigdesktop} {
|
@media #{$verybigdesktop} {
|
||||||
font-size: 11rem;
|
font-size: 11rem;
|
||||||
@@ -89,11 +89,14 @@
|
|||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
@media #{$bigdesktop-hidpi} {
|
@media #{$bigdesktop-hidpi} {
|
||||||
// font-size: 1.5rem !important;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
@media #{$verybigdesktop} {
|
@media #{$verybigdesktop} {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
}
|
}
|
||||||
|
// @media #{$verybigdesktop-hidpi} {
|
||||||
|
// font-size: 2.6rem;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin home-metadata {
|
@mixin home-metadata {
|
||||||
@@ -258,9 +261,13 @@
|
|||||||
@media #{$bigdesktop} {
|
@media #{$bigdesktop} {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
}
|
}
|
||||||
|
@media #{$bigdesktop-hidpi} {
|
||||||
|
font-size: 2.8rem;
|
||||||
|
}
|
||||||
@media #{$verybigdesktop} {
|
@media #{$verybigdesktop} {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin event-date {
|
@mixin event-date {
|
||||||
@@ -269,7 +276,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@mixin event-link {
|
@mixin event-link {
|
||||||
font: 500 1.3rem "Westeinde Caption";
|
font: 900 1.3rem "Westeinde Caption";
|
||||||
-webkit-text-stroke: #00f 1px;
|
-webkit-text-stroke: #00f 1px;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
@media #{$bigmobile} {
|
@media #{$bigmobile} {
|
||||||
|
|||||||
482
sass/base.scss
@@ -1,10 +1,10 @@
|
|||||||
@import "font-mixins";
|
@import "font-mixins";
|
||||||
|
|
||||||
/*------------------------------------*\
|
//------------------------------------*\
|
||||||
MAIN
|
// MAIN
|
||||||
\*------------------------------------*/
|
//------------------------------------*/
|
||||||
|
|
||||||
/* global box-sizing */
|
// global box-sizing */
|
||||||
*,
|
*,
|
||||||
*:after,
|
*:after,
|
||||||
*:before {
|
*:before {
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
}
|
}
|
||||||
/* html element 62.5% font-size for REM use */
|
// html element 62.5% font-size for REM use */
|
||||||
html {
|
html {
|
||||||
font-size: 62.5%;
|
font-size: 62.5%;
|
||||||
}
|
}
|
||||||
@@ -23,7 +23,7 @@ body {
|
|||||||
// font: 300 14px/1.4 "Westeinde Caption", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
// font: 300 14px/1.4 "Westeinde Caption", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
/* clear */
|
// clear */
|
||||||
.clear:before,
|
.clear:before,
|
||||||
.clear:after {
|
.clear:after {
|
||||||
content: " ";
|
content: " ";
|
||||||
@@ -76,65 +76,38 @@ button {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- default selection --------------------------- */
|
// ---------------------------- default selection --------------------------- */
|
||||||
|
|
||||||
html *::selection {
|
html *::selection {
|
||||||
color: #000;
|
color: #000;
|
||||||
background-color: #fdff00;
|
background-color: #fdff00;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* MEDIA QUERIES */
|
// MEDIA QUERIES */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
$bigmobile: only screen and
|
$bigmobile: "only screen and (min-width: 360px)";
|
||||||
(
|
|
||||||
min-width: 360px
|
|
||||||
);
|
|
||||||
|
|
||||||
$only-mobile: only screen and
|
$only-mobile: "only screen and (max-width: 768px)";
|
||||||
(
|
|
||||||
max-width: 768px
|
|
||||||
);
|
|
||||||
|
|
||||||
$tablet: only screen and
|
$tablet: "only screen and (min-width: 769px)";
|
||||||
(
|
|
||||||
min-width: 769px
|
|
||||||
);
|
|
||||||
|
|
||||||
$smalldesktop: only screen and
|
$smalldesktop: "only screen and (min-width: 1024px)";
|
||||||
(
|
|
||||||
min-width: 1024px
|
|
||||||
);
|
|
||||||
|
|
||||||
$mobile-landscape: only screen and
|
$mobile-landscape: "only screen and (min-width: 769px) and (-webkit-min-device-pixel-ratio: 2.1) and (min-aspect-ratio: 1/1)";
|
||||||
(
|
|
||||||
min-width: 769px
|
|
||||||
)
|
|
||||||
and (-webkit-min-device-pixel-ratio: 2.1) and
|
|
||||||
(
|
|
||||||
min-aspect-ratio: 1/1
|
|
||||||
);
|
|
||||||
|
|
||||||
$bigdesktop: only screen and
|
$bigdesktop: "only screen and (min-width: 1279px)";
|
||||||
(
|
|
||||||
min-width: 1279px
|
|
||||||
);
|
|
||||||
|
|
||||||
$bigdesktop-hidpi: only screen and
|
$bigdesktop-hidpi: "only screen and (min-width: 1279px) and (-webkit-min-device-pixel-ratio: 1.4)";
|
||||||
(
|
|
||||||
min-width: 1279px
|
|
||||||
)
|
|
||||||
and (-webkit-min-device-pixel-ratio: 1.4);
|
|
||||||
|
|
||||||
$verybigdesktop: only screen and
|
$verybigdesktop: "only screen and (min-width: 1919px)";
|
||||||
(
|
|
||||||
min-width: 1919px
|
|
||||||
);
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
$verybigdesktop-hidpi: "only screen and (min-width: 1919px) and (-webkit-min-device-pixel-ratio: 1.4)";
|
||||||
/* GLOBAL VARIABLES */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
// GLOBAL VARIABLES */
|
||||||
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
//Horizontal units:
|
//Horizontal units:
|
||||||
$h-unit-5: 25rem;
|
$h-unit-5: 25rem;
|
||||||
@@ -150,9 +123,9 @@ $v-unit-2: 8rem;
|
|||||||
$v-unit-4: 16rem;
|
$v-unit-4: 16rem;
|
||||||
$v-unit-6: 24rem;
|
$v-unit-6: 24rem;
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* other mixins */
|
// other mixins */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
@mixin fit-content($wh) {
|
@mixin fit-content($wh) {
|
||||||
#{$wh}: -moz-max-content;
|
#{$wh}: -moz-max-content;
|
||||||
@@ -311,9 +284,9 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* COOKIE NOTIFICATION */
|
// COOKIE NOTIFICATION */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.cookie-notice-container {
|
.cookie-notice-container {
|
||||||
@include home-metadata();
|
@include home-metadata();
|
||||||
@@ -374,11 +347,27 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* STRUCTURE */
|
// STRUCTURE */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/* wrapper */
|
.no-js body .loadingscreen {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadingscreen {
|
||||||
|
background-color: #fff;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 3100;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// wrapper
|
||||||
.wrapper {
|
.wrapper {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -386,9 +375,9 @@ $v-unit-6: 24rem;
|
|||||||
height: 100vh;
|
height: 100vh;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* header */
|
// header */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@@ -409,8 +398,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-1,
|
.header-inner {
|
||||||
.header-2 {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -463,76 +451,9 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// .totop {
|
// -------------------------------------------------------------------------- */
|
||||||
// position: fixed;
|
// header elements */
|
||||||
// bottom: 1rem;
|
// -------------------------------------------------------------------------- */
|
||||||
// right: 1rem;
|
|
||||||
// z-index: 2;
|
|
||||||
// @media #{$tablet} {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
// a {
|
|
||||||
// display: inline-block;
|
|
||||||
// object {
|
|
||||||
// height: 2rem;
|
|
||||||
// // color: #000;
|
|
||||||
// // fill: currentColor;
|
|
||||||
// filter: invert(100%); //black
|
|
||||||
// @include transform(rotate(180deg));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// object {
|
|
||||||
// height: 3rem;
|
|
||||||
// // width: 3rem;
|
|
||||||
// @media #{$tablet} {
|
|
||||||
// height: 2.5rem;
|
|
||||||
// // width: 2.5rem;
|
|
||||||
// }
|
|
||||||
// @media #{$smalldesktop} {
|
|
||||||
// height: 3rem;
|
|
||||||
// // width: 3rem;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
/* header elements */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
|
|
||||||
// color of header elements, icons
|
|
||||||
// .logo,
|
|
||||||
// .social-link,
|
|
||||||
// .menubutton,
|
|
||||||
// .events-link {
|
|
||||||
// a,
|
|
||||||
// button,
|
|
||||||
// * {
|
|
||||||
// // z-index: 3501;
|
|
||||||
// // cursor: pointer;
|
|
||||||
// }
|
|
||||||
// // .white {
|
|
||||||
// // display: block;
|
|
||||||
// // }
|
|
||||||
// // .black {
|
|
||||||
// // display: none;
|
|
||||||
// // }
|
|
||||||
// // filter: invert(100);
|
|
||||||
// }
|
|
||||||
// @media #{$tablet} {
|
|
||||||
// .logo,
|
|
||||||
// .social-link,
|
|
||||||
// .menubutton,
|
|
||||||
// .events-link {
|
|
||||||
// // .white {
|
|
||||||
// // display: none;
|
|
||||||
// // }
|
|
||||||
// // .black {
|
|
||||||
// // display: block;
|
|
||||||
// // }
|
|
||||||
// // filter: invert(100);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
//icons:
|
//icons:
|
||||||
.dis-logo {
|
.dis-logo {
|
||||||
@@ -611,28 +532,10 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
.header-1 > div,
|
.header-inner > div {
|
||||||
.header-2 > div {
|
|
||||||
flex: 0 0 $h-unit-1 !important;
|
flex: 0 0 $h-unit-1 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// dis logo size:
|
|
||||||
// .logo {
|
|
||||||
// object {
|
|
||||||
// height: $h-unit-1;
|
|
||||||
// // width: $h-unit-1;
|
|
||||||
// @media #{$tablet} {
|
|
||||||
// height: 4rem;
|
|
||||||
// // width: 4rem;
|
|
||||||
// }
|
|
||||||
// @media #{$smalldesktop} {
|
|
||||||
// height: $h-unit-1;
|
|
||||||
// // width: $h-unit-1;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
.menubutton {
|
.menubutton {
|
||||||
$speed: 0.5s;
|
$speed: 0.5s;
|
||||||
$degree: 225deg;
|
$degree: 225deg;
|
||||||
@@ -652,12 +555,6 @@ $v-unit-6: 24rem;
|
|||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
background-image: url(../img/dis-plus-white.png);
|
background-image: url(../img/dis-plus-white.png);
|
||||||
background-image: url(../img/dis-plus-white.svg);
|
background-image: url(../img/dis-plus-white.svg);
|
||||||
// .white {
|
|
||||||
// display: block;
|
|
||||||
// }
|
|
||||||
// .black {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -678,11 +575,11 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================== */
|
// ========================================================================== */
|
||||||
/* SEARCH */
|
// SEARCH */
|
||||||
/* ========================================================================== */
|
// ========================================================================== */
|
||||||
|
|
||||||
/* ------------------------------ search mobile ----------------------------- */
|
// ------------------------------ search mobile ----------------------------- */
|
||||||
|
|
||||||
.search-box {
|
.search-box {
|
||||||
display: none;
|
display: none;
|
||||||
@@ -706,31 +603,16 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
|
|
||||||
// .white {
|
|
||||||
// display: block;
|
|
||||||
// }
|
|
||||||
// .black {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} //search-bar end
|
} //search-bar end
|
||||||
|
|
||||||
/* ----------------------------- search desktop ----------------------------- */
|
// ----------------------------- search desktop ----------------------------- */
|
||||||
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
.search-box {
|
.search-box {
|
||||||
display: block;
|
display: block;
|
||||||
flex: 1 1 0 !important;
|
flex: 1 1 0 !important;
|
||||||
// & > button {
|
|
||||||
// .white {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
// .black {
|
|
||||||
// display: block;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-bar {
|
.search-bar {
|
||||||
@@ -760,15 +642,15 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------- header scroll: scroll with click -------------------- */
|
// -------------------- header scroll: scroll with click -------------------- */
|
||||||
|
|
||||||
.header-scroll {
|
.header-scroll {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================== */
|
// ========================================================================== */
|
||||||
/* MENUS */
|
// MENUS */
|
||||||
/* ========================================================================== */
|
// ========================================================================== */
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
padding-top: 9rem !important;
|
padding-top: 9rem !important;
|
||||||
@@ -824,9 +706,6 @@ $v-unit-6: 24rem;
|
|||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
// @media #{$smalldesktop} {
|
|
||||||
// padding: 2rem 0;
|
|
||||||
// }
|
|
||||||
a {
|
a {
|
||||||
@include menutext();
|
@include menutext();
|
||||||
}
|
}
|
||||||
@@ -835,7 +714,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------------- bedo circle ------------------------------ */
|
// ------------------------------- bedo circle ------------------------------ */
|
||||||
|
|
||||||
#tag-nav {
|
#tag-nav {
|
||||||
display: none;
|
display: none;
|
||||||
@@ -893,9 +772,9 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
} //header end
|
} //header end
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* STRUCTURE ALL PAGE */
|
// STRUCTURE ALL PAGE */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
main {
|
main {
|
||||||
// z-index: 2;
|
// z-index: 2;
|
||||||
section {
|
section {
|
||||||
@@ -919,7 +798,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
} //article end
|
} //article end
|
||||||
|
|
||||||
/* -------------------------------- load more ------------------------------- */
|
// -------------------------------- load more ------------------------------- */
|
||||||
.misha_loadmore {
|
.misha_loadmore {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 2rem 0;
|
padding: 2rem 0;
|
||||||
@@ -966,15 +845,17 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* ARCHIVE AND HOMEPAGE */
|
// ARCHIVE AND HOMEPAGE */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.archive,
|
// .archive,
|
||||||
.home,
|
// .home,
|
||||||
.search-results,
|
// .search-results,
|
||||||
.search-no-results,
|
// .search-no-results,
|
||||||
.error404 {
|
// .error404
|
||||||
|
|
||||||
|
.masonrypage {
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
// overflow-y: hidden;
|
// overflow-y: hidden;
|
||||||
}
|
}
|
||||||
@@ -986,7 +867,7 @@ $v-unit-6: 24rem;
|
|||||||
min-width: 100vw;
|
min-width: 100vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------- header on home ----------------------------- */
|
// ----------------------------- header on home ----------------------------- */
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
.header-scroll {
|
.header-scroll {
|
||||||
@@ -1025,14 +906,15 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
|
|
||||||
//header not on home
|
//header not on home
|
||||||
&.archive,
|
// &.archive,
|
||||||
&.search-results,
|
// &.search-results,
|
||||||
&.search-no-results,
|
// &.search-no-results,
|
||||||
&.error404 {
|
// &.error404 {
|
||||||
.wrapper .header {
|
|
||||||
|
&:not(.home) .wrapper .header {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
}
|
}
|
||||||
}
|
// }
|
||||||
|
|
||||||
main {
|
main {
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
@@ -1050,12 +932,12 @@ $v-unit-6: 24rem;
|
|||||||
@include fit-content(width);
|
@include fit-content(width);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------- archivetitle on mobile ------------------------- */
|
// ------------------------- archivetitle on mobile ------------------------- */
|
||||||
.archivetitle {
|
.archivetitle {
|
||||||
padding: 8rem 2rem 0;
|
padding: 8rem 2rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --------------------------- home article mobile/default -------------------------- */
|
// --------------------------- home article mobile/default -------------------------- */
|
||||||
|
|
||||||
article {
|
article {
|
||||||
// height: 100vh;
|
// height: 100vh;
|
||||||
@@ -1154,20 +1036,8 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------- home article mobile cutout ----------------------- */
|
// ----------------------- home article mobile first 2 ----------------------- */
|
||||||
|
&.post_nr {
|
||||||
// &.cut-even {
|
|
||||||
// .metadata {
|
|
||||||
// // background-color: transparent;
|
|
||||||
// &::after {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/* ----------------------- home article mobile first 2 ----------------------- */
|
|
||||||
&.post_nr_1,
|
|
||||||
&.post_nr_2 {
|
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
.thumbnailwrapper {
|
.thumbnailwrapper {
|
||||||
img {
|
img {
|
||||||
@@ -1199,32 +1069,10 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//border on first elements
|
|
||||||
// &.post_nr_1 {
|
|
||||||
// // .metadata {
|
|
||||||
// // &::after {
|
|
||||||
// // display: none;
|
|
||||||
// // }
|
|
||||||
|
|
||||||
// // @include triangle-corner-bordered(#{$h-unit-1}, #{$h-unit-1} + 1px, white, #000, left);
|
|
||||||
// // z-index: 15;
|
|
||||||
// // & > * {
|
|
||||||
// // z-index: 15;
|
|
||||||
// // }
|
|
||||||
// // }
|
|
||||||
// // h2 {
|
|
||||||
// // height: calc(50vh + 1px);
|
|
||||||
// // top: -1px;
|
|
||||||
// // position: relative;
|
|
||||||
// // border-top: #000 1px solid;
|
|
||||||
// // z-index: 8;
|
|
||||||
// // }
|
|
||||||
// }
|
|
||||||
} //article end
|
} //article end
|
||||||
|
|
||||||
/* ------------------------ home article desktop big ------------------------ */
|
// ------------------------ home article desktop big ------------------------ */
|
||||||
/* ------------------------------------ - ----------------------------------- */
|
// ------------------------------------ - ----------------------------------- */
|
||||||
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
//big: first 2 articles
|
//big: first 2 articles
|
||||||
@@ -1247,7 +1095,7 @@ $v-unit-6: 24rem;
|
|||||||
|
|
||||||
border-top: 1px #000 solid;
|
border-top: 1px #000 solid;
|
||||||
|
|
||||||
/* ------------- home article desktop big - thumbnail and title ------------- */
|
// ------------- home article desktop big - thumbnail and title ------------- */
|
||||||
|
|
||||||
.thumbnailwrapper {
|
.thumbnailwrapper {
|
||||||
width: 60%;
|
width: 60%;
|
||||||
@@ -1283,7 +1131,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------- home article metadata big------------------------- */
|
// -------------------------- home article metadata big------------------------- */
|
||||||
.metadata {
|
.metadata {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
top: unset;
|
top: unset;
|
||||||
@@ -1364,7 +1212,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
} //metadata end
|
} //metadata end
|
||||||
|
|
||||||
/* --------------------- home article desktop big hover --------------------- */
|
// --------------------- home article desktop big hover --------------------- */
|
||||||
// &.hovered {
|
// &.hovered {
|
||||||
.bevezeto,
|
.bevezeto,
|
||||||
.alcim {
|
.alcim {
|
||||||
@@ -1425,7 +1273,7 @@ $v-unit-6: 24rem;
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------ home article desktop 1 + 2 ----------------------- */
|
// ------------------------ home article desktop 1 + 2 ----------------------- */
|
||||||
|
|
||||||
&.home_wrapper-1 {
|
&.home_wrapper-1 {
|
||||||
article {
|
article {
|
||||||
@@ -1464,7 +1312,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
} //smalldesktop end
|
} //smalldesktop end
|
||||||
|
|
||||||
/* ----------------------- home articles desktop small ----------------------- */
|
// ----------------------- home articles desktop small ----------------------- */
|
||||||
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
.home_wrapper-small,
|
.home_wrapper-small,
|
||||||
@@ -1502,9 +1350,10 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
article,
|
// article,
|
||||||
.archivetitle,
|
// .archivetitle,
|
||||||
.archivedescription {
|
// .archivedescription
|
||||||
|
& > * {
|
||||||
flex: 0 0 calc(100% / 3);
|
flex: 0 0 calc(100% / 3);
|
||||||
height: 50%;
|
height: 50%;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -1699,7 +1548,7 @@ $v-unit-6: 24rem;
|
|||||||
} //section end
|
} //section end
|
||||||
} //main end
|
} //main end
|
||||||
|
|
||||||
/* -------------------------- no results on mobile -------------------------- */
|
// -------------------------- no results on mobile -------------------------- */
|
||||||
|
|
||||||
&.no-result,
|
&.no-result,
|
||||||
&.error404,
|
&.error404,
|
||||||
@@ -1719,7 +1568,7 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------- no results on desktop ------------------------- */
|
// -------------------------- no results on desktop ------------------------- */
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
main {
|
main {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
@@ -1775,9 +1624,9 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
} //home, archive, search, 404 end
|
} //home, archive, search, 404 end
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* Search results */
|
// Search results */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.search-results {
|
.search-results {
|
||||||
#content {
|
#content {
|
||||||
@@ -1812,9 +1661,9 @@ $v-unit-6: 24rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* Events */
|
// Events */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
body.category.category-esemeny {
|
body.category.category-esemeny {
|
||||||
header {
|
header {
|
||||||
@@ -1907,7 +1756,7 @@ body.category.category-esemeny {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- Events on desktop --------------------------- */
|
// ---------------------------- Events on desktop --------------------------- */
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
main {
|
main {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
@@ -1981,9 +1830,9 @@ body.category.category-esemeny {
|
|||||||
}
|
}
|
||||||
} //body.category.category-esemeny end
|
} //body.category.category-esemeny end
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* single */
|
// single */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
@mixin singleDesktopLayout() {
|
@mixin singleDesktopLayout() {
|
||||||
padding-right: $h-unit-4;
|
padding-right: $h-unit-4;
|
||||||
@@ -1994,16 +1843,14 @@ body.category.category-esemeny {
|
|||||||
|
|
||||||
$padd: 2rem;
|
$padd: 2rem;
|
||||||
|
|
||||||
.single,
|
.singularpage {
|
||||||
.page {
|
|
||||||
//no menus on single
|
//no menus on single
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
.wrapper {
|
.wrapper {
|
||||||
height: unset;
|
height: unset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.header {
|
.header {
|
||||||
.header-1,
|
.header-inner {
|
||||||
.header-2 {
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
.social-link,
|
.social-link,
|
||||||
@@ -2016,7 +1863,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- single on mobile ---------------------------- */
|
// ---------------------------- single on mobile ---------------------------- */
|
||||||
article {
|
article {
|
||||||
padding-bottom: $h-unit-1;
|
padding-bottom: $h-unit-1;
|
||||||
|
|
||||||
@@ -2098,7 +1945,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- single header on desktop --------------------------- */
|
// ---------------------------- single header on desktop --------------------------- */
|
||||||
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
min-height: calc(100vh - #{$h-unit-2});
|
min-height: calc(100vh - #{$h-unit-2});
|
||||||
@@ -2121,7 +1968,7 @@ $padd: 2rem;
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
img.attachment-post-thumbnail {
|
img.attachment-single-thumbnail {
|
||||||
// post thumbnail on home
|
// post thumbnail on home
|
||||||
|
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
@@ -2132,7 +1979,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------- title and metadata on desktop --------------------- */
|
// ---------------------- title and metadata on desktop --------------------- */
|
||||||
|
|
||||||
.titlewrapper {
|
.titlewrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -2167,11 +2014,11 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- single content hr --------------------------- */
|
// ---------------------------- single content hr --------------------------- */
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: #ff5f5f;
|
background-color: #00ffb8;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
||||||
@@ -2206,7 +2053,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------- single content ----------------------------- */
|
// ----------------------------- single content ----------------------------- */
|
||||||
|
|
||||||
.single-content {
|
.single-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -2228,8 +2075,8 @@ $padd: 2rem;
|
|||||||
@include single-quote();
|
@include single-quote();
|
||||||
margin: 2rem 0;
|
margin: 2rem 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: #ff5f5f;
|
background: #00ffb8;
|
||||||
@include box-shadow(10px 0 #ff5f5f, -5px 0 #ff5f5f);
|
@include box-shadow(10px 0 #00ffb8, -5px 0 #00ffb8);
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
@@ -2244,15 +2091,19 @@ $padd: 2rem;
|
|||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iframe{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
@include single-quote();
|
@include single-quote();
|
||||||
margin: 3rem 0;
|
margin: 3rem 0;
|
||||||
p {
|
p {
|
||||||
background: #ff5f5f;
|
background: #00ffb8;
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 5px 0 3px;
|
padding: 5px 0 3px;
|
||||||
|
|
||||||
@include box-shadow(10px 0 #ff5f5f, -5px 0 #ff5f5f);
|
@include box-shadow(10px 0 #00ffb8, -5px 0 #00ffb8);
|
||||||
}
|
}
|
||||||
cite {
|
cite {
|
||||||
display: block;
|
display: block;
|
||||||
@@ -2287,7 +2138,11 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------------------------- images on single ---------------------------- */
|
// ---------------------------- images on single ---------------------------- */
|
||||||
|
|
||||||
|
img {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-block-image {
|
.wp-block-image {
|
||||||
margin: $padd 0;
|
margin: $padd 0;
|
||||||
@@ -2347,9 +2202,10 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
|
|
||||||
//figcaptions:
|
//figcaptions:
|
||||||
.wp-block-image figcaption,
|
// .wp-block-image figcaption,
|
||||||
.wp-block-gallery .blocks-gallery-image figcaption,
|
// .wp-block-gallery .blocks-gallery-image figcaption,
|
||||||
.wp-block-gallery .blocks-gallery-item figcaption {
|
// .wp-block-gallery .blocks-gallery-item
|
||||||
|
figcaption {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
||||||
@@ -2441,7 +2297,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
} //.single-content end
|
} //.single-content end
|
||||||
} //article end
|
} //article end
|
||||||
/* -------------------------------- lightbox -------------------------------- */
|
// -------------------------------- lightbox -------------------------------- */
|
||||||
|
|
||||||
#cboxOverlay {
|
#cboxOverlay {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -2529,8 +2385,15 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} //#colorbox end
|
} //#colorbox end
|
||||||
|
|
||||||
|
/* -------------------------------- /facebook ------------------------------- */
|
||||||
|
|
||||||
|
.fb-page {
|
||||||
|
display: block !important;
|
||||||
|
padding: $padd 0;
|
||||||
|
}
|
||||||
} //body.single, page end
|
} //body.single, page end
|
||||||
/* ------------------------------ related posts ----------------------------- */
|
// ------------------------------ related posts ----------------------------- */
|
||||||
|
|
||||||
.toHome,
|
.toHome,
|
||||||
#related_posts > h3 {
|
#related_posts > h3 {
|
||||||
@@ -2629,7 +2492,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------ related posts on desktop ------------------------ */
|
// ------------------------ related posts on desktop ------------------------ */
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
top: -#{$h-unit-1};
|
top: -#{$h-unit-1};
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -2774,7 +2637,7 @@ $padd: 2rem;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------- page only------------------------------- */
|
// -------------------------------- page only------------------------------- */
|
||||||
body.page {
|
body.page {
|
||||||
@media #{$only-mobile} {
|
@media #{$only-mobile} {
|
||||||
//hide header image on mobile on 'rolunk'
|
//hide header image on mobile on 'rolunk'
|
||||||
@@ -2816,9 +2679,9 @@ body.page {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* TAG COLORS */
|
// TAG COLORS */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
@mixin tagcolors($color) {
|
@mixin tagcolors($color) {
|
||||||
//metadata on mobile
|
//metadata on mobile
|
||||||
@@ -2842,14 +2705,6 @@ body.page {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//mobile desktop firat post
|
|
||||||
// &.post_nr_1:not(.home-big) {
|
|
||||||
// .metadata {
|
|
||||||
// &::before,
|
|
||||||
// &::after {
|
|
||||||
// border-color: $color !important;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
h2 {
|
h2 {
|
||||||
@media #{$only-mobile} {
|
@media #{$only-mobile} {
|
||||||
border-top-color: $color !important;
|
border-top-color: $color !important;
|
||||||
@@ -2903,8 +2758,8 @@ body.page {
|
|||||||
|
|
||||||
&.archive.tag {
|
&.archive.tag {
|
||||||
background-color: $color !important;
|
background-color: $color !important;
|
||||||
.header-1,
|
|
||||||
.header-2 {
|
.header-inner {
|
||||||
background-color: $color !important;
|
background-color: $color !important;
|
||||||
}
|
}
|
||||||
article *:not(.vr) {
|
article *:not(.vr) {
|
||||||
@@ -2916,12 +2771,6 @@ body.page {
|
|||||||
//tagclip: filters on small articale images
|
//tagclip: filters on small articale images
|
||||||
|
|
||||||
@mixin tagclip($tag) {
|
@mixin tagclip($tag) {
|
||||||
// -webkit-mask: url(../img/clip/#{$tag}_mobil.svg);
|
|
||||||
// -webkit-mask-repeat: no-repeat;
|
|
||||||
// -webkit-mask-size: 100%;
|
|
||||||
// mask: url(../img/clip/#{$tag}_mobil.svg);
|
|
||||||
// mask-repeat: no-repeat;
|
|
||||||
// mask-size: 100%;
|
|
||||||
@media #{$tablet} {
|
@media #{$tablet} {
|
||||||
-webkit-mask: url(../img/clip/#{$tag}_desktop.svg);
|
-webkit-mask: url(../img/clip/#{$tag}_desktop.svg);
|
||||||
-webkit-mask-repeat: no-repeat;
|
-webkit-mask-repeat: no-repeat;
|
||||||
@@ -2966,6 +2815,9 @@ body.page {
|
|||||||
a {
|
a {
|
||||||
color: $color;
|
color: $color;
|
||||||
}
|
}
|
||||||
|
hr {
|
||||||
|
background-color: $color;
|
||||||
|
}
|
||||||
.authors {
|
.authors {
|
||||||
a {
|
a {
|
||||||
-webkit-text-stroke: $color 1px !important;
|
-webkit-text-stroke: $color 1px !important;
|
||||||
@@ -2976,6 +2828,9 @@ body.page {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
hr.related-wrap {
|
||||||
|
background-color: $color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$color-be: #fdff00;
|
$color-be: #fdff00;
|
||||||
$color-do: #3c00ff;
|
$color-do: #3c00ff;
|
||||||
@@ -3074,8 +2929,7 @@ $color-love-dark: #7f2f2f;
|
|||||||
//menu colored on big article hover
|
//menu colored on big article hover
|
||||||
|
|
||||||
body,
|
body,
|
||||||
.header-1,
|
.header-inner {
|
||||||
.header-2 {
|
|
||||||
&.hover-tag-be {
|
&.hover-tag-be {
|
||||||
background-color: $color-be !important;
|
background-color: $color-be !important;
|
||||||
}
|
}
|
||||||
@@ -3093,9 +2947,9 @@ body,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
/* imports */
|
// imports */
|
||||||
/* -------------------------------------------------------------------------- */
|
// -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
@import "fonts";
|
@import "fonts";
|
||||||
@import "print";
|
@import "print";
|
||||||
|
|||||||
13
singular.php
@@ -12,7 +12,7 @@
|
|||||||
<!-- post thumbnail -->
|
<!-- post thumbnail -->
|
||||||
<?php if (has_post_thumbnail()): // Check if Thumbnail exists ?>
|
<?php if (has_post_thumbnail()): // Check if Thumbnail exists ?>
|
||||||
<div class="thumbnailwrapper">
|
<div class="thumbnailwrapper">
|
||||||
<?php the_post_thumbnail(); // Fullsize image for the single post ?>
|
<?php the_post_thumbnail('single-thumbnail'); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php endif;?>
|
<?php endif;?>
|
||||||
@@ -73,6 +73,16 @@
|
|||||||
echo '<p>';
|
echo '<p>';
|
||||||
} ?>
|
} ?>
|
||||||
|
|
||||||
|
<!-- Facebook -->
|
||||||
|
<?php
|
||||||
|
if ($categories) {
|
||||||
|
?>
|
||||||
|
<div class="fb-like" data-href="<?php the_permalink();?>" data-width="" data-layout="button_count" data-action="like" data-size="small" data-show-faces="false" data-share="true"></div>
|
||||||
|
<div class="fb-page" data-href="https://www.facebook.com/designisso/" data-tabs="" data-width="" data-height="" data-small-header="true" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false"><blockquote cite="https://www.facebook.com/designisso/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/designisso/">designisso</a></blockquote></div>
|
||||||
|
<?php
|
||||||
|
};
|
||||||
|
?>
|
||||||
|
|
||||||
<hr class="content-wrap content-end">
|
<hr class="content-wrap content-end">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -128,6 +138,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<!-- /article -->
|
<!-- /article -->
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Theme Name: dis-2019
|
Theme Name: dis-2019
|
||||||
Theme URI: https://git.gyetpet.dynu.net/infeeeee/dis-2019
|
Theme URI: https://git.gyetpet.dynu.net/infeeeee/dis-2019
|
||||||
Description: Designisso téma 2019 | <a target="_blank" href="https://git.gyetpet.dynu.net/infeeeee/dis-2019/src/branch/master/K%c3%89ZIK%c3%96NYV.md">Használati utasítás magyarul</a> | <a target="_blank" href="https://git.gyetpet.dynu.net/infeeeee/dis-2019/issues">Hibák, problémák jelentése</a>
|
Description: Designisso téma 2019 | <a target="_blank" href="https://git.gyetpet.dynu.net/infeeeee/dis-2019/src/branch/master/K%c3%89ZIK%c3%96NYV.md">Használati utasítás magyarul</a> | <a target="_blank" href="https://git.gyetpet.dynu.net/infeeeee/dis-2019/issues">Hibák, problémák jelentése</a>
|
||||||
Version: 0.1.0
|
Version: 1.0.3
|
||||||
Author: Gyetvai Péter
|
Author: Gyetvai Péter
|
||||||
Author URI: https://gyetvai-peter.hu
|
Author URI: https://gyetvai-peter.hu
|
||||||
Tags: Designisso
|
Tags: Designisso
|
||||||
|
|||||||