Initial commit. State 04.2021.

This commit is contained in:
2021-04-22 17:57:16 +02:00
commit 82781cca41
2974 changed files with 975656 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
//
// Recommended way to include parent theme styles.
// (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
//
// Your code goes below
//

View File

@@ -0,0 +1,8 @@
/*
Theme Name: fonts
Template:
Right to Left text support.
*/
@import url("../Divi/rtl.css");

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -0,0 +1,16 @@
/*
Theme Name: fonts
Description: fonter
Author: admin
Template: Divi
(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
src: url('fonts/agp.otf');
#2b94e5
*/
@media (max-width: 900px) {
#footer1 {
line-height: 200%;
}
}