@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
   font-family: 'Comic Sans MS', Calibri, 'Segoe UI', Verdana, Tahoma;
   font-size: large;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
   padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
   cursor: pointer;
   position: absolute;
   right: 0.75rem;
   top: 0.5rem;
}

/* Specific amendments I made */

h1 {
   color: dodgerblue;      /* This changes the existing h1 definition to use a blue color for the font */
}

h3 {
   color: green;
}

ul, li {
   margin-left: 20px;
   /*padding-left: 0;*/
}

.img-cell {
   vertical-align: top;
   height: 480px;
   width: 640px;
   padding-right: 10px;
}

.img-text {
   vertical-align: top;
   width: 640px;
   padding-right: 10px;
}

.img-vic {
   vertical-align: top;
   height: 190px;
   width: 330px;
   padding-right: 10px;
}

.img-vicP {
   vertical-align: top;
   height: 330px;
   width: 190px;
   padding-right: 10px;
}


/*
   This is added to make the anchorlink component fully display the heading, not underneath the header
   it makes it apply to all elements with an id anchor like: <h3 id="Sun15">Sunday 15th January</h3>

   https://piccalil.li/quick-tip/add-scroll-margin-to-all-elements-which-can-be-targeted/
   https://www.w3.org/TR/css-scroll-snap-1/

   validation (CSS 4.0) scroll-margin-top is not a known css property name
   although it shows in green still works
*/

[id] {
   scroll-margin-top: 7ex;
}

.vegas-tip {
   border: 0px;
   height: 32px;
   width: 32px;
   background-image: url("/StaticFiles/VegasApr2006/vegastip.bmp");
}

/*
   Spaces output bullet points
*/
li {
   padding: 20px 0px 0px;
}



