| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /**
- * Stylesheet
- *
- * @namespace Lungo.Widgets
- * @class Colour
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- /* DIMENSIONS */
- /* COLORS */
- a.grey,
- .grey {
- background-color: #cccccc;
- }
- a.grey:active,
- a.grey.active {
- background-color: #b5b5b5;
- }
- a.dark-grey,
- .dark-grey {
- background-color: #000000;
- }
- a.dark-grey:active,
- a.dark-grey.active {
- background-color: #000000;
- }
- a.red,
- .red {
- background-color: #e33100;
- }
- a.red:active,
- a.red.active {
- background-color: #c5280f;
- }
- a.lightgreen,
- .lightgreen {
- background-color: #91bd09;
- }
- a.lightgreen:active,
- a.lightgreen.active {
- background-color: #7ea41a;
- }
- a.green,
- .green {
- background-color: #009600;
- }
- a.green:active,
- a.green.active {
- background-color: #00770e;
- }
- a.blue,
- .blue {
- background-color: #237fd7;
- }
- a.blue:active,
- a.blue.active {
- background-color: #1a69b6;
- }
- a.arcticblue,
- .arcticblue {
- background-color: #2daebf;
- }
- a.arcticblue:active,
- a.arcticblue.active {
- background-color: #238e9e;
- }
- a.orange,
- .orange {
- background-color: #ff5c00;
- }
- a.orange:active,
- a.orange.active {
- background-color: #da4e15;
- }
- a.purple,
- .purple {
- background-color: #7b658d;
- }
- a.purple:active,
- a.purple.active {
- background-color: #574765;
- }
- a.magenta,
- .magenta {
- background-color: #a9014b;
- }
- a.magenta:active,
- a.magenta.active {
- background-color: #831239;
- }
- a.pink,
- .pink {
- background-color: #ff007f;
- }
- a.pink:active,
- a.pink.active {
- background-color: #de2870;
- }
- a.yellow,
- .yellow {
- background-color: #ffb515;
- }
- a.yellow:active,
- a.yellow.active {
- background-color: #dfa020;
- }
- a.twitter,
- .twitter:not(span) {
- background-color: #35cdff;
- }
- a.twitter:active,
- a.twitter.active {
- background-color: #2bafda;
- }
- a.facebook,
- .facebook:not(span) {
- background-color: #3b5998;
- }
- a.facebook:active,
- a.facebook.active {
- background-color: #2c4579;
- }
- li.grey {
- box-shadow: inset 3px 0px 0px #cccccc;
- }
- li.dark-grey {
- box-shadow: inset 3px 0px 0px #000000;
- }
- li.red {
- box-shadow: inset 3px 0px 0px #e33100;
- }
- li.lightgreen {
- box-shadow: inset 3px 0px 0px #91bd09;
- }
- li.green {
- box-shadow: inset 3px 0px 0px #009600;
- }
- li.blue {
- box-shadow: inset 3px 0px 0px #237fd7;
- }
- li.arcticblue {
- box-shadow: inset 3px 0px 0px #2daebf;
- }
- li.orange {
- box-shadow: inset 3px 0px 0px #ff5c00;
- }
- li.purple {
- box-shadow: inset 3px 0px 0px #7b658d;
- }
- li.magenta {
- box-shadow: inset 3px 0px 0px #a9014b;
- }
- li.pink {
- box-shadow: inset 3px 0px 0px #ff007f;
- }
- li.yellow {
- box-shadow: inset 3px 0px 0px #ffb515;
- }
- li.twitter {
- box-shadow: inset 3px 0px 0px #35cdff;
- }
- li.facebook {
- box-shadow: inset 3px 0px 0px #3b5998;
- }
|