/**
Theme Name: Fornace
Theme URI: https://fornace.bukovics.org
Template:     inspiro
Author: harz
Author URI: https://www.bukovics.org/
Description: Inspiro child
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, e-commerce, wide-blocks, portfolio, blog, custom-background, featured-image-header, full-width-template, theme-options, block-styles
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.2
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inspiro
Domain Path: /languages/

Inspiro is based on Twenty Seventeen https://wordpress.org/themes/twentyseventeen/, (C) 2012-2020 Automattic, Inc.
Twenty Seventeen is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/

/* Note: The CSS files are loaded from assets/css/ folder. */

.dishes > hr {
    width: 50%;
    margin: 1.5em auto;
    background-color: #d0cfcf;
}

.dish {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: 'title price'
        'description no';
}

.dish_title {
    grid-area: title;
    font-weight: bold;
}

.dish_price {
    grid-area: price;
    text-align: right;
}

.dish_description {
    grid-area: description;
}
