balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

style.scss (1370B)


      1 @import "../../variables";
      2 .action-buttons {
      3     span,
      4     a {
      5         display: inline-block;
      6         padding: 0 12px 2px;
      7         margin: 2px;
      8         height: 33px;
      9         line-height: 32px;
     10         font-size: 13px;
     11         color: #353535;
     12         border: 1px solid #f7f7f7;
     13         background: #f7f7f7;
     14         box-shadow: 0 1px 2px #ddd;
     15         vertical-align: top;
     16         border-radius: 3px;
     17         text-decoration: none;
     18         cursor: pointer;
     19         -webkit-transition: all 0.2s ease-in-out;
     20         transition: all 0.2s ease-in-out;
     21         &:hover {
     22             box-shadow: 0 1px 2px #ccc;
     23             background: #f1f1f1;
     24         }
     25     }
     26 
     27     span i,
     28     a i {
     29         font-size: 10px;
     30         margin-right: 4px;
     31     }
     32 
     33     span {
     34         background: #0085ba;
     35         border-color: #006a95 #00648c #00648c;
     36         box-shadow: inset 0 -1px 0 #00648c;
     37         color: #fff;
     38         text-decoration: none;
     39         text-shadow: 0 -1px 1px #005d82, 1px 0 1px #005d82, 0 1px 1px #005d82, -1px 0 1px #005d82;
     40     }
     41 
     42     a.redux-templates-button-download {
     43         border: 1px solid $missingColorHover;
     44         background: $missingColorHover;
     45         box-shadow: 0 1px 0 #165cb4;
     46         color: #fff;
     47     }
     48 
     49     .redux-templates-button-download {
     50         margin-left: 5px;
     51     }
     52 
     53     i.challenge-dot {
     54         margin-top: 10px;
     55         margin-left: 5px;
     56     }
     57 }