/*
 * Theme Name:        Hello Elementor Child
 * Theme URI:         https://vikingo.studio/
 * Description:       A Vikingo Studio Hello Elementor gyermek témája, saját admin és bejelentkezési testreszabással.
 * Author:            Vikingo Studio
 * Author URI:        https://vikingo.studio/
 * Template:          hello-elementor
 * Version:           1.1.0
 * Requires at least: 6.0
 * Tested up to:      7.0
 * Requires PHP:      7.4
 * Text Domain:       hello-vikingo-studio
 * License:           GNU General Public License v3 or later
 * License URI:       https://www.gnu.org/licenses/gpl-3.0.html
 */

/* Általános megjelenés */

/* Sötét mód letiltása — a böngésző ne váltson automatikusan dark módra */
:root {
  color-scheme: only light;
}
 
/* Szövegkijelölés stílusa */
::selection {
  color: #fff;
  background: var(--e-global-color-primary);
}
 
::-moz-selection {
  color: #fff;
  background: var(--e-global-color-primary);
}
 
/* <mark> HTML elem stílusozása (kiemelések a szövegben) */
mark {
  background: var(--e-global-color-primary);
  color: #fff;
  font-weight: 700;
}

