View corner-cut.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ecke-ab { | |
clip-path: polygon(0% 0%, 95% 0%, 100% 31%, 100% 100%, 0px 100%); | |
-webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 31%, 100% 100%, 0 100%); |
View fontsizes.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.7rem = 11.2px | |
0.8rem = 12.8px | |
0.9rem = 14.4px | |
1rem = 16px | |
1.125rem = 18px | |
1.5rem = 24px | |
1.8rem = 28.8px | |
2.5rem = 40px | |
3rem = 48px | |
5rem = 80px |
View page-categories.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function page_tagcat_settings() { | |
// Add tag metabox to page | |
// register_taxonomy_for_object_type('post_tag', 'page'); | |
// Add category metabox to page | |
register_taxonomy_for_object_type('category', 'page'); | |
} | |
// Add to the admin_init hook of your theme functions.php file | |
add_action( 'init', 'page_tagcat_settings' ); | |
?> |
View mod-css.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Amelia*/ | |
.amelia-v2-booking #amelia-container.am-fs__wrapper { | |
margin-top: 0px!important; | |
} |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Allow Editors to edit Datenschutzerklaerung*// | |
$role_object = get_role( 'editor' ); | |
$role_object->add_cap( 'manage_privacy_options', true ); | |
$role_object->add_cap( 'manage_options' ); // this needs to be active in order that before cap works | |
?> |
View burger.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'fl_builder_mobile_menu_icon' , | |
function($icon) { | |
return file_get_contents( get_stylesheet_directory() . '/burger-icon.svg' ); | |
} | |
); |
View js.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(window).load(function () { | |
jQuery('.video-bg-noloop video').removeAttr('loop'); | |
}); |
View customize-js.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wpgb.facets.history = true; |
View html.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Vakuumfiltration: Trommelfilter werden zur kontinuierlichen, mechanischen Trennung großer Mengen an Fest-Flüssig-Gemischen durch Filtration unter Einsatz von Vakuum eingesetzt. Derartige Trommelfilter werden in der Herstellung chemischer Stoffe, Stoffe für die Lebensmittelindustrie und von Sedimenten aus dem Bergbau verwendet.<span class="dots">...</span><span class="more">Eine sich ständig drehende Trommel mit einer aufwendigen Innenverrohrung wird bei einem Durchmesser von bis zu 5 m mit sehr hoher Rundlaufgenauigkeit gefertigt. Häufig werden sehr hochwertige Edelstähle verarbeitet. Es werden Trommelfilter mit Walzenabnahme, mit Schaberabnahme, mit ablaufendem Filtertuch und Pressband-Trommelfilter gefertigt. TÜV Abnahmen, Schweißer-Zertifizierungen und umfassende Dokumentationen gehören selbstverständlich dazu.</span></p> | |
<div class="btnMoreText">Mehr...</div> |
NewerOlder