﻿/*
 * ------------------------------------------------------------------------------------------------
 * © Copyright 2012 SunGard K-12 Education, All Rights Reserved.
 * This program is PROPRIETARY and CONFIDENTIAL information of SunGard K-12 Education, and may not
 * be disclosed or used except as expressly authorized in a license agreement controlling such use
 * and disclosure.  Unauthorized use of this program will result in legal proceedings, civil
 * damages, and possible criminal prosecution.
 * ------------------------------------------------------------------------------------------------
 * System Name: Teacher Access Center
 * ------------------------------------------------------------------------------------------------
 * File Name: Common.css
 * ------------------------------------------------------------------------------------------------
 * File Description:
 *   CSS settings that should be applied to the various pages that are part of the Sign In/Out
 *   process.
 * ------------------------------------------------------------------------------------------------
 *  SOURCE
 * CHG-SET*  DATE/TIME   MODIFIED BY           COMMENTS
 * ========  ==========  ====================  ====================================================
 *        0  04/26/2012  Eric.Weist            Updated Authentication screens to use the latest
 *           07:53:28 P                        graphics and layout design.
 *    35345  06/16/2012  Eric.Weist            Initial check-in for the jQuery combobox.
 *           02:53:32 P                        
 *    41793  06/26/2012  Eric.Weist            Updated styling of comboboxes.
 *           10:38:46 A                        
 *    41645  06/26/2012  randy.kline           Merge all programmer-approved TAC specific changesets from 2.5 SP1 HFD to 2.5 SP2 HFD
 *           03:35:13 P                        
 *    36092  06/26/2012  randy.kline           Merge all programmer-approved TAC specific changesets from 2.5 SP2 HFD to 2.5 SP2 HF
 *           04:35:42 P                        
 *    36092  06/26/2012  randy.kline           Merge all programmer-approved TAC specific changesets from 2.5 SP2 HFD to 2.5 SP2 HF
 *           05:04:21 P                        
 *    36089  06/29/2012  randy.kline           Merge approved changes through 06/29/2012 for version 2.5 from SP2 Hot Fix to Service Pack
 *           03:57:24 P                        
 *    36091  06/29/2012  randy.kline           Merge approved changes through 06/29/2012 from 2.5 Service Pack to Development
 *           04:24:08 P                        
 *    42664  07/03/2012  stephen.heckman       Changed sungard html helpers. Made dropdownlists into comboboxes by default. Fixed IE gradient for logon. Moved css around where appropriate.
 *           05:55:57 P                        
 *    42664  07/03/2012  stephen.heckman       Changed sungard html helpers. Made dropdownlists into comboboxes by default. Fixed IE gradient for logon. Moved css around where appropriate.
 *           05:58:22 P                        
 *    43459  08/02/2012  Eric.Weist            Display copyright/company info as follows:
 *           08:25:15 P                        * Add copyright notice to the Login page
 *                                             * Change copyright in footer of all pages to just
 *                                               display the company name
 *    42758  07/05/2012  randy.kline           merge TAC changes (in batch) from 2.5 SP1 HFD to 2.5 SP2 HFD
 *           03:41:47 P                        
 *    42805  07/05/2012  randy.kline           merge TAC changes (in batch) from 2.5 SP2 HFD to 2.5 SP2 HF
 *           03:54:35 P                        
 *    43240  07/06/2012  randy.kline           Merge approved changes through 07/06/2012 for version 2.5 from SP2 Hot Fix to Service Pack
 *           03:23:53 P                        
 *    43244  07/06/2012  randy.kline           Merge approved changes through 07/06/2012 from 2.5 Service Pack to Development
 *           03:43:08 P                        
 * $log$
 * * SOURCE CHG-SET refers to the TFS Changeset that the changes were applied to.
 * ------------------------------------------------------------------------------------------------
 */

/* Background coloring for the page */
body 
{
    /* Fallback color */
    background: White;
    
    /* Fallback image */
    /* TODO: add */
    
    /* Firefox 3.6+ */
    background: -moz-linear-gradient(left, #cccccc 0%, #ffffff 50%, #cccccc 100%);
    
    /* Safari 4+, Chrome 1-9 */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#cccccc), color-stop(50%,#ffffff), color-stop(100%,#cccccc));
    
    /* Safari 5.1+, Mobile Safari, Chrome 10+ */
    background: -webkit-linear-gradient(left, #cccccc 0%,#ffffff 50%,#cccccc 100%);
    
    /* IE 7-9 (bad css) */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#cccccc');
    
    /* IE 10+ */
    background: -ms-linear-gradient(left, #cccccc 0%,#ffffff 50%,#cccccc 100%);
    
    /* W3C Markup (not yet implemented in browsers) */
    background: linear-gradient(left, #cccccc 0%,#ffffff 50%,#cccccc 100%);
}

/* Additional/Different formats for labels on the Set Environment form */
#SetEnvironmentContent .sg-label-field-input .sg-editor-label
{
    width: 10em;
}

/* Sets the width for the input/message area of the form */
#SignInSectionContainer,
#SignedOutSectionContainer,
#TimedOutSectionContainer,
#CopyrightNotice 
{
    width: 320px;
}

#CopyrightNotice
{
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    color: #999999;
    font-size: .917em;
}
