/*
 Theme Name:   Divi Child Theme
 Description:  This is a sample child theme
 Author:       Ania Romańska
 Author URI:   https://divilover.com
 Template:     Divi
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  divi-child-theme
*/


/* Add CSS below this line */

/* 1. Ladataan ikonifontti @font-face -säännöllä */
@font-face {
    font-family: 'OmaIkonifontti';
    src: url('fonts/icon-test.eot');
    src: url('fonts/icon-test.eot?#iefix') format('embedded-opentype'),
         url('fonts/icon-test.woff2') format('woff2'),
         url('fonts/icon-test.woff') format('woff'),
         url('fonts/icon-test.ttf') format('truetype'),
         url('fonts/icon-test.svg#OmaIkonifontti') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* 2. Luodaan perusluokka kaikille ikoneille */
.oma-ikoni {
    font-family: 'OmaIkonifontti' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Yksittäiset ikonit Unicode-arvojen mukaan */
.ikoni-testi::before {
    content: "\e900";
}

