Skip to content
Snippets Groups Projects
popup.css 6.46 KiB
Newer Older
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

    margin-bottom: 20px;
    font-size: 150%;
    color: #222;
    font-weight: bold;
#wrapper {
    min-width: 640px;
    position: relative;
}

.table {
    display: table;
.vertical {
    height: 250px;
    display: table-cell;
    vertical-align: middle;
Lloyd Hilaiel's avatar
Lloyd Hilaiel committed
    width: 100%;
#content {
    position: relative;
    height: 250px;
    overflow: hidden;
    /* Fix for IE6 not displaying the unsupported dialog correctly */
    _width: 100%;
section > .contents {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;

    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;

    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;

    /* Set this to .25s for Android browser, 0.5 seconds makes it so that it
     * does not show */
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#wait, #delay {
  background-image: url("/i/bg.png");
}

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
.error #error, #error.unsupported {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
#error.unsupported {
  padding: 20px 0;
   * These are fixes for IE6 - IE6 does not support the combination #id.class
   * selector, so we have to use just the class, and then prepend the css
   * attributes with _ so only IE6 renders them.
#error.unsupported h2 {
  margin: 0 0 20px;
#formWrap {
    background-color: #fff;
    background-image: none;
    display: block;
#signIn {
    background-image: url('/i/bg.png');
    position: absolute;
    left: 0;
    top: 0;
#signIn .table {
    width: 325px;
    margin-right: 40px;
.arrow {
    width: 40px;
    height: 250px;
    display: block;
    position: absolute;
    right: 0px;
    top: 0;
    background-image: url('/i/arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
#favicon {
    position: absolute;
    z-index: 10;
#favicon img {
    display: block;
    margin: 0 auto 10px;
#favicon .vertical {
    display: block;
    line-height: 250px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

div#required_email {
    padding-top: .7em;
    font-size: 1.2em;
    font-weight: bold;
}

  list-style-type: none;
  position: relative;
  margin-top: 10px;
}

#signIn .vertical ul li:first-child {
  margin-top: 0;
#signIn .submit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  clear: right;
  text-align: center;
#signIn label.half,
.half {
    width: 50%;
    display: inline-block;
    float: left;
    color: #888784;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 11px;
#signIn button.create {
    font-size: 14px;
    height: 28px;
    padding: 0 10px;
    float: right;
label {
    display: block;
    color: #62615F;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
Lloyd Hilaiel's avatar
Lloyd Hilaiel committed
    cursor: pointer;
Lloyd Hilaiel's avatar
Lloyd Hilaiel committed
    color: #333;
.inputs > li > label.preselected {
    font-weight: bold;
}

.inputs > li:only-child > label.selectable {
    display: inline-block;
    font-size: 12px;
    color: #62615F;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
footer .learn a {
    color: #549FDC;
    color: #62615F;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
Shane Tomlinson's avatar
Shane Tomlinson committed
header,
footer {
    display: block;
    width: 100%;
}

header {
    padding: 20px;
    font-weight: bold;
Shane Tomlinson's avatar
Shane Tomlinson committed
    border-bottom: 1px solid #c7c6c1;
    background-color: rgba(0,0,0,0.05);
Shane Tomlinson's avatar
Shane Tomlinson committed
    -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#0c000000,endColorstr=#0c000000);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#0c000000,endColorstr=#0c000000);
    zoom: 1;
    -webkit-box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1) inset;
         -o-box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1) inset;
header ul {
    display: block;
    float: left;
header ul li {
    margin: 0 10px 0 0;
    color: #222;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
Shane Tomlinson's avatar
Shane Tomlinson committed
    border-top: 1px solid #c7c6c1;
    padding: 20px;
    margin: 1em 0 .5em;
    padding: 0 1em;
Lloyd Hilaiel's avatar
Lloyd Hilaiel committed
    line-height: 18px;
.add {
    font-size: 80%;
}
.inputs > li:only-child input[type=radio] {
    display: none;
}
label[for=remember] {
  display: inline;
  margin-left: 13px;
}

#thisIsNotMe {
  margin-right: 10px;
  background-color: #F0EFED;
  color: #4E4E4E;
  font-size: 0.75em;
  padding: 0 5px;
  display: inline-block;
  line-height: 18px;
#newEmail {
    -moz-box-flex: 1;
}

.newuser,
.returning {
    display: none;
}
#create_text_section {
    color: #222;
}
#checkemail {
    text-align: center;