/* vlastní úpravy stylů */

/* zvětšený text pro bloky kódu - použité pro ceník a otvírací dobu */
pre code {
  font-size: large;
}

/*  */
.box-image-text .image {
  min-height: 200px;
  max-height: 200px;
}

.box-simple {
  min-height: 230px;
}

/* http://www.ebadf.net/2016/10/19/centering-images-in-hugo/ */
img[src$='#center']
{
    display: block;
    margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
                            whatever floats your boat, but keep the
                            horizontal 'auto' for this to work */
    /* whatever else styles you fancy here */
    border-style: double;
    border-width: 3px;
    border-color: black;
}

img[src$='#floatleft']
{
    float:left;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
    border-style: double;
    border-width: 3px;
    border-color: black;
}

img[src$='#floatright']
{
    float:right;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
    border-style: double;
    border-width: 3px;
    border-color: black;
}
/*    */
