mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-08 02:15:47 +00:00
Initial commit. State 04.2021.
This commit is contained in:
16
wp-content/themes/fonts/functions.php
Normal file
16
wp-content/themes/fonts/functions.php
Normal 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
|
||||
//
|
||||
8
wp-content/themes/fonts/rtl.css
Normal file
8
wp-content/themes/fonts/rtl.css
Normal file
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
Theme Name: fonts
|
||||
Template:
|
||||
|
||||
Right to Left text support.
|
||||
*/
|
||||
@import url("../Divi/rtl.css");
|
||||
|
||||
BIN
wp-content/themes/fonts/screenshot.jpg
Normal file
BIN
wp-content/themes/fonts/screenshot.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 33 KiB |
16
wp-content/themes/fonts/style.css
Normal file
16
wp-content/themes/fonts/style.css
Normal 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%;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user