Make WordPress Core

Changeset 67


Ignore:
Timestamp:
05/23/2003 05:22:28 PM (22 years ago)
Author:
saxmatt
Message:

Structure cleanup, #login stuff added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/b2.css

    r51 r67  
     1
     2a {
     3    color: #00019b;
     4    font-weight: bold;
     5}
     6
     7a:visited {
     8    color: #006;
     9}
     10
     11a:hover {
     12    color: #069;
     13}
     14
     15a.b2menutop {
     16    background-color: transparent;
     17    color: #06f;
     18    font-weight: lighter;
     19}
     20
     21a.b2menutop:hover {
     22    color: #f90;
     23    font-weight: bold;
     24    text-decoration: none;
     25}
     26
     27a.menutop {
     28    background-color: transparent;
     29    border-width: 0px;
     30    color: #36c;
     31    font-weight: normal;
     32}
     33
     34a.menutop:hover {
     35    color: #f90;
     36    font-weight: normal;
     37    text-decoration: underline;
     38}
     39
     40body    {
     41    background-color: #fff;
     42    margin: 0px;
     43}
     44
     45body, td {
     46    color: #000;
     47    font-family: Georgia, "Times New Roman", Times, serif;
     48    font-size: 10pt;
     49}
     50
     51form {
     52    margin: 0;
     53    padding: 0; /* thanks #mozilla */
     54}
     55
     56h2 {
     57    border-bottom: 2px solid #333;
     58    color: #333;
     59    margin: 0 5px 2px 5px;
     60    padding: 3px;
     61}
     62
     63label {
     64    font-weight: bold;
     65}
     66
     67p {
     68    line-height: 130%;
     69}
     70
     71td.menutop {
     72    border-bottom-width: 1px;
     73    border-color: #999;
     74    border-left-width: 0px;
     75    border-right-width: 0px;
     76    border-style: dashed;
     77    border-top-width: 1px;
     78    padding-bottom: 2px;
     79    padding-top: 2px;
     80}
     81
     82textarea, input, select {
     83    background-color: #f0f0f0;
     84    border-color: #ccc;
     85    border-style: solid;
     86    border-width: 1px;
     87    font-family: Georgia, "Times New Roman", Times, serif;
     88    margin: 1px;
     89    padding: 2px;
     90}
     91
     92xmp {
     93    font-size: 10pt; /* Just in case */
     94}
     95
     96.b2menutop {
     97    color: #333;
     98    font-size: 10px;
     99}
     100
     101.checkbox {
     102    background-color: #fff;
     103    border-width: 0px;
     104    margin: 0px;
     105    padding: 0px;
     106}
     107
     108.menutop {
     109    background-color: #def;
     110    color: #999;
     111    font-size: 10px;
     112}
     113
     114.menutoptitle {
     115    color: #bcd;
     116    font-size: 14px;
     117    font-weight: bold;
     118}
     119
     120.quicktags, .search {
     121    background-color: #ccc;
     122    color: #000;
     123    font-family: Georgia, "Times New Roman", Times, serif;
     124    font-size: 12px;
     125}
     126
     127.table {
     128    color: #000;
     129    font-size: 10pt;
     130}
     131
     132.tabletoprow {
     133    background-color: #fff;
     134    color: #000;
     135    font-size: 12px;
     136    font-style: italic;
     137}
     138
     139.wrap {
     140    border: 1px solid #ccc;
     141    margin: 20px auto 10px auto;
     142    padding: 10px;
     143    width: 85%;
     144}
     145
     146#adminmenu {
     147    list-style: none outside;
     148    margin: 5px 0 0 0;
     149    margin-left: 40px;
     150    padding: 0;
     151}
     152
     153#adminmenu #last {
     154    border-right: none;
     155}
     156
     157#adminmenu a {
     158    border: 1px solid #fff;
     159    color: #333;
     160    padding: 3px 8px 3px 7px;
     161    text-decoration: none;
     162}
     163
     164#adminmenu a:hover {
     165    background-color: #e9e9e9;
     166    border: 1px solid #808080;
     167    color: #333;
     168}
     169
     170#adminmenu li {
     171    border-right: 1px solid #ccc;
     172    display: block;
     173    float: left;
     174    padding: 4px;
     175    text-align: center;
     176}
     177
     178#login {
     179    background: url(http://wordpress.org/images/wp-small.png) #fff no-repeat top center;
     180    border: 2px solid #333;
     181    color: #333;
     182    padding: 40px 5px 5px 5px;
     183    text-align: right;
     184    width: 210px;
     185}
     186
    1187#wphead {
    2     margin: 5px;
    3188    background-image: url(http://wordpress.org/images/wp-small.png);
    4189    background-repeat: no-repeat;
     190    border-bottom: 4px solid #333;
    5191    height: 42px;
    6     border-bottom: 4px solid #333;
    7 }
     192    margin: 5px;
     193}
     194
    8195#wphead a {
    9196    display: block;
    10197    height: 30px;
    11198}
     199
    12200#wphead a span {
    13201    display: none;
    14202}
    15 p {
    16     line-height: 130%;
    17 }
    18 #adminmenu {
    19     list-style: none outside;
    20     padding: 0;
    21     margin: 5px 0 0 0;
    22     margin-left: 40px;
    23 }
    24 
    25 #adminmenu li {
    26     text-align: center;
    27     display: block;
    28     float: left;
    29     padding: 4px;
    30     border-right: 1px solid #ccc;
    31 }
    32 #adminmenu #last {
    33     border-right: none;
    34 }
    35 #adminmenu a {
    36     padding: 3px 8px 3px 7px;
    37     color: #333;
    38     text-decoration: none;
    39     border: 1px solid white;
    40 }
    41 #adminmenu a:hover {
    42     background-color: #e9e9e9;
    43     color: #333;
    44     border: 1px solid gray;
    45 }
    46 
    47 body    {
    48     margin-top: 0px;
    49     margin-left: 0px;
    50     margin-right: 0px;
    51     margin-bottom: 0px;
    52     background-color: #FFFFFF}
    53 body, td {
    54     color: #000000;
    55     font-family: Georgia, "Times New Roman", Times, serif;
    56     font-size: 10pt;
    57 }
    58 a {
    59     color: #00019b;
    60     font-weight: bold;
    61 }
    62 a:visited {
    63     color: #006;
    64 }
    65 a:hover {
    66     color: #069;
    67 }
    68 
    69 h2 {
    70     margin: 0 5px 2px 5px;
    71     padding: 3px;
    72     color: #333;
    73     border-bottom: 2px solid #333;
    74 }
    75 
    76 .table {
    77     color: #000000;
    78     font-size: 10pt;
    79 }
    80 .tabletoprow {
    81     background-color: #ffffff;
    82     color: #000000;
    83     font-size: 12px;
    84     font-style: italic;
    85 }
    86 
    87 .quicktags, .search {
    88     font-family: Georgia, "Times New Roman", Times, serif;
    89     font-size: 12px;
    90     color: #000000;
    91     background-color: #cccccc;
    92 }
    93 
    94 .menutop {
    95     color: #999999;
    96     font-size: 10px;
    97     background-color: #DDEEFF;
    98 }
    99 a.menutop {
    100     background-color: transparent;
    101     color: #3366CC;
    102     font-weight: normal;
    103     border-width: 0px;
    104 }
    105 a.menutop:hover {
    106     color: #FF9900;
    107     text-decoration: underline;
    108     font-weight: normal;
    109 }
    110 
    111 .menutoptitle {
    112     color: #BBCCDD;
    113     font-size: 14px;
    114     font-weight: bold;
    115     }
    116 
    117 .b2menutop {
    118     color: #333333;
    119     font-size: 10px;
    120 }
    121 a.b2menutop {
    122     background-color: transparent;
    123     color: #0066ff;
    124     font-weight: lighter;
    125 }
    126 a.b2menutop:hover {
    127     color: #ff9900;
    128     font-weight: bold;
    129     text-decoration: none;
    130 }
    131 xmp { /* Just in case */
    132     font-size: 10pt;
    133 }
    134 .wrap {
    135     width: 85%;
    136     border: 1px solid #ccc;
    137     margin: 20px auto 10px auto;
    138     padding: 10px;
    139 }
    140 form { margin: 0; padding: 0; } /* thanks #mozilla */
    141 
    142 td.menutop {
    143     padding-top: 2px;
    144     padding-bottom: 2px;
    145     border-color: #999999;
    146     border-top-width: 1px;
    147     border-bottom-width: 1px;
    148     border-left-width: 0px;
    149     border-right-width: 0px;
    150     border-style: dashed;
    151 }
    152 textarea, input, select {
    153     background-color: #f0f0f0;
    154     border-width: 1px;
    155     border-color: #cccccc;
    156     border-style: solid;
    157     padding: 2px;
    158     margin: 1px;
    159     font-family: Georgia, "Times New Roman", Times, serif;
    160 }
    161 .checkbox {
    162     background-color: #ffffff;
    163     border-width: 0px;
    164     padding: 0px;
    165     margin: 0px;
    166 }
    167 
    168 label {
    169     font-weight: bold;
    170 }
Note: See TracChangeset for help on using the changeset viewer.