Home | History | Annotate | Download | only in css
      1 /**
      2  * Copyright (c) 2010 The Chromium Authors. All rights reserved.  Use of this
      3  * source code is governed by a BSD-style license that can be found in the
      4  * LICENSE file.
      5  *
      6  * Sets style of different elements in options page.
      7  *
      8  * Author: navneetg (at) google.com (Navneet Goel).
      9  */
     10 
     11 @CHARSET "UTF-8";
     12 body {
     13   background-color: rgb(235, 239, 249);
     14   font-family: arial , sans-serif;
     15   font-size: 13px;
     16 }
     17 .suppr {
     18   background-image: url(/images/delete-icon.png);
     19   background-repeat: no-repeat;
     20   cursor: pointer;
     21   display: inline;
     22   float: left;
     23   height: 17px;
     24   margin-top: 3px;
     25   overflow: hidden;
     26   width: 14px;
     27 }
     28 .checkBoxTopic {
     29   float: left;
     30   padding-left: 2px;
     31   padding-top: 1px;
     32 }
     33 .checkBox {
     34   float: left;
     35 }
     36 .boxAndTopic {
     37   overflow: auto;
     38   padding-bottom: 5px;
     39 }
     40 #invalid_status, #save_status {
     41   background-color: rgb(255, 241, 168);
     42   font-weight: bold;
     43   margin-left: 10px;
     44   opacity: 0;
     45   padding-bottom: 3px;
     46   padding-left: 7px;
     47   padding-right: 7px;
     48   padding-top: 3px;
     49 }
     50 #all_content {
     51   background-color: white;
     52   border-bottom-left-radius: 12px 12px;
     53   border-bottom-right-radius: 12px 12px;
     54   border-color: #B5C7DE;
     55   border-style: solid;
     56   border-top-left-radius: 12px 12px;
     57   border-top-right-radius: 12px 12px;
     58   border-width: 4px;
     59   margin: 40px auto 20px;
     60   padding: 12px;
     61   width: 600px;
     62 }
     63 .col2 {
     64   padding-left: 20px;
     65 }
     66 body.rtl .col1, body.rtl .col2 {
     67   text-align: right;
     68 }
     69 body.rtl {
     70   direction: rtl;
     71 }
     72 body.rtl .col2 {
     73   padding-right: 20px;
     74 }
     75 body.rtl .checkBox, body.rtl .checkBoxTopic {
     76   float: right;
     77 }
     78 body.rtl table.contentTable {
     79   margin:0 55px 0 0;
     80 }
     81 body.rtl #save_div{
     82   margin: 0 220px 0 0;
     83 }
     84 body.rtl #countryList{
     85   margin:0 5px 0 0;
     86 }
     87 .col1 {
     88   padding-top: 3px;
     89   width: 115px;
     90 }
     91 .all_rows {
     92   height: 35px;
     93   vertical-align: top;
     94 }
     95 body.rtl .cusTopicsClass {
     96   float: right;
     97 }
     98 .cusTopicsClass {
     99   float: left;
    100   width: 225px;
    101 }
    102 #save_div {
    103   margin-left: 220px;
    104 }
    105 #countryList {
    106   padding-left: 5px;
    107 }
    108 #logo {
    109   font-size: 15px;
    110   font-weight: bold;
    111   text-align: center;
    112 }
    113 .noborder {
    114   border: 0;
    115   font-family: arial, sans-serif;
    116   height: 15px;
    117   outline: none;
    118   overflow: hidden;
    119   resize: none;
    120   width:205px;
    121 }
    122