coffee.css in Coffee 6
Stylesheet for the Coffee module.
File
coffee.cssView source
- /**
- * @file
- * Stylesheet for the Coffee module.
- */
-
- #coffee-bg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- }
-
- #coffee-form {
- position: fixed;
- left: 50%;
- top: 120px;
- width: 500px;
- margin-left: -250px;
- padding: 10px;
- font: 16px/1.5 sans-serif;
- background: rgba(0, 0, 0, 0.4);
- -webkit-border-radius: 15px;
- -moz-border-radius: 15px;
- border-radius: 15px;
- z-index: 9999;
- }
-
- #coffee-form-inner {
- background: #fff;
- color: #444;
- padding: 10px 10px 1px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
- -moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
- box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
- }
-
- #coffee-q {
- background: #d1d1d1;
- color: #000;
- border: 0;
- font: 36px sans-serif;
- padding: 5px 10px;
- width: 460px;
- outline: none;
- display: block;
- margin: 0 0 10px;
- }
-
- #coffee-results {
- list-style: none;
- margin: 0 0 10px;
- padding: 0;
- }
-
- #coffee-results li {
- margin: 0;
- padding: 0;
- }
-
- #coffee-results a {
- display: block;
- text-decoration: none;
- outline: none;
- color: #444;
- padding: 3px 10px;
- }
-
- #coffee-results a:focus,
- #coffee-results a.focus {
- background: #d1d1d1;
- color: #000;
- }
-
- #coffee-results .description {
- display: block;
- font-size: 11px;
- color: #888;
- }
-
- #coffee-results a:focus .description,
- #coffee-results a.focus .description {
- color: #666;
- }
-
- #coffee-form-inner label.element-invisible {
- display: none !important;
- }