﻿/* This StyleSheet contains custom styles for this project */
/* Accusoft custom: to accommodate dark mode, we now have 2 branding logos. The branding logo set in the project is just a placeholder (placeholder-logo.png). The logo used in design-time is the logo corresponding to the theme
used. You must add to EACH PROJECT this style sheet, along with all 3 images: placeholder-logo, accusoft-logo-black-text, and accusoft-logo-white-text. */

/* Accusoft customization to set light theme logo */
.logoimage { 
    height: 0; 
    width: 0; 
    padding-left: 220px; 
    padding-top: 64px; 
    background-image: url('../images/accusoft-logo-black-text.png'); 
    background-repeat: no-repeat; 
} 

/* Accusoft custom - set alternate branding logo for dark mode */
html.i-dark .logoimage { 
    padding-left: 221px; 
    padding-top: 62px;
    background-image: url('../images/accusoft-logo-white-text.png'); 
    background-repeat: no-repeat; 
}