123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- @CHARSET "UTF-8";
- @import url("../css/general.css");
- html {
- background-color: #464646;
- }
- #backButton {
- }
- #addButton {
- }
- #newCartoonSourceSection {
- z-index:5;
- position: fixed;
- top: 30px;
- left: -25px;
- width: 84%;
- background: transparent;
- padding: 0;
- margin: 0;
- font-size: 1.5em;
- border-width: 56px;
- -webkit-border-image: url('../images/shadow-border.png') 56 56 56 56;
-
- }
- #newCartoonSourceContainer {
- width: 100%;
- height: 100%;
- background: white;
- }
- #newCartoonSourceSection fieldset {
- border: 0;
- }
- #newCartoonSourceError {
- display: none;
- }
- #newCartoonSourceSection label {
- display: block;
- clear: both;
- }
- #newCartoonSourceSection input {
- width: 89.5%;
- clear: left;
- border: 1px solid black;
- background: #ffff9a;
- border-width: 0 7px 0 5px;
- -webkit-border-image: url('../images/input-inset-bg.png') 0 8 0 6;
- }
- #newCartoonSourceSection .activity {
- display: inline-block;
- height: 100%;
- width: 4%;
- clear: right;
- margin: 0 auto 0 0.5%;
- }
- #newCartoonAddActivity {
- display: none;
- margin: 0 auto 0 auto;
- }
- #newCartoonSourceSection .buttons {
- clear: both;
- }
- #newCartoonSourceSection button {
- font-size: 1em;
- margin-top: 0.66em;
- color: #fefefe;
- background: -webkit-gradient(linear,
- left top,
- left bottom,
- from(#5f5f5f),
- to(#262626));
- -webkit-border-radius: 7px;
- border: 0.0833em solid #5e5e5e;
- height: 2em;
- font-weight: bold;
- padding: 0.250em 0.66em;
- min-width: 3.33em;
- }
- #newCartoonSourceSection input {
- font-size: 0.8em;
- }
- #newCartoonSourceSection button:active {
- background: -webkit-gradient(linear,
- left top,
- left bottom,
- from(#262626),
- to(#efefef));
- }
- #addFeedButton {
- clear: left;
- float: left;
- font-size: 1em;
- }
- #cancelAddFeedButton {
- clear: right;
- float: right;
- }
- #cartoons {
- position: fixed;
- top: 3.625em;
- left: 0em;
- right: 0em;
- font-size: 100%;
- bottom: 0em;
- overflow: auto;
- }
- ul#cartoonList {
- width: 99%;
- list-style-type: none;
- margin: 0 auto;
- padding: 0;
- }
- #cartoonList li {
- background: white;
- width: 99%;
- border: 2px solid black;
- margin: 0.5em 0 0.5em 0;
- vertical-align: middle;
- padding: 1px;
- }
- #cartoonList table {
- width: 100%;
- text-align: center;
- }
- #cartoonList table tr{
- margin: 0em;
- padding: 0em;
- border: 0em;
- line-height: 1em;
- }
- #cartoonList table td {
- margin: 0em;
- padding: 0em;
- border: 0em;
- }
- #cartoonList .activeLabelTd {
- font-size: 1.5em;
- width: 10%;
- border-right: 0.0625em solid #b2b2b2;
- }
- #cartoonList .activeIcon{
- }
- #cartoonList button {
- font-size: 1.5em;
- border: 0em;
- margin: 0em;
- width: 100%;
- }
- #cartoonList .feedButtonTd {
- width: 80%;
- }
- #cartoonList .feedButtonTd button{
- background: transparent;
- }
- #cartoonList .removeButtonTd {
- width: 100%;
- }
- #cartoonList .removeButtonTd button {
- color: white;
- float: right;
- background: -webkit-gradient(linear,
- left top,
- left bottom,
- from(#da4141),
- to(#9a0101));
- -webkit-border-radius: 0.25em;
- }
- #cartoonList .removeButtonTd button:active {
- background: -webkit-gradient(linear,
- left top,
- left bottom,
- from(#9a0101),
- to(#fea0a0));
- }
|