common.scss 2.3 KB
Newer Older
1
/** COLORS **/
D
Dmitriy Zaporozhets 已提交
2
.cgray { color: gray }
3
.clgray { color: #BBB }
D
Dmitriy Zaporozhets 已提交
4 5 6 7 8
.cred { color: #D12F19 }
.cgreen { color: #4a2 }
.cblue { color: #29A }
.cblack { color: #111 }
.cdark { color: #444 }
9
.camber { color: #ffc000 }
D
Dmitriy Zaporozhets 已提交
10 11
.cwhite { color: #fff!important }
.bgred { background: #F2DEDE!important }
12 13 14

/** COMMON CLASSES **/
.left { float:left }
15

16 17
.prepend-top-10 { margin-top:10px }
.prepend-top-20 { margin-top:20px }
18 19 20 21 22
.prepend-left-10 { margin-left:10px }
.prepend-left-20 { margin-left:20px }
.append-right-10 { margin-right:10px }
.append-right-20 { margin-right:20px }
.append-bottom-10 { margin-bottom:10px }
23
.append-bottom-15 { margin-bottom:15px }
24
.append-bottom-20 { margin-bottom:20px }
25
.inline { display: inline-block }
26

27 28 29
.padded { padding:20px }
.ipadded { padding:20px!important }
.lborder { border-left:1px solid #eee }
30
.underlined_link { text-decoration: underline; }
31
.hint { font-style: italic; color: #999; }
32
.light { color: #888 }
33
.tiny { font-weight: normal }
D
Dmitriy Zaporozhets 已提交
34
.vtop { vertical-align: top !important; }
35 36 37


/** ALERT MESSAGES **/
D
Dmitriy Zaporozhets 已提交
38 39 40 41 42 43
.alert.alert-disabled {
  background: #EEE;
  color: #777;
  border-color: #DDD;
}

44
/** HELPERS **/
D
Dmitriy Zaporozhets 已提交
45 46 47 48 49 50 51 52 53
.nothing_here_message {
  text-align: center;
  padding: 20px;
  color: #666;
  font-weight: normal;
  font-size: 16px;
  line-height: 36px;
}

D
Dmitriy Zaporozhets 已提交
54 55 56 57 58 59 60
.slead {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 24px;
}
61

62

63 64 65
.tab-content {
  overflow: visible;
}
66 67 68 69 70 71

@media (max-width: 1200px) {
  .only-wide {
    display: none;
  }
}
D
Dmitriy Zaporozhets 已提交
72

73 74 75 76 77 78
pre.well-pre {
  border: 1px solid #EEE;
  background: #f9f9f9;
  border-radius: 0;
  color: #555;
}
79 80 81 82 83 84 85 86

.input-append .btn.active, .input-prepend .btn.active {
  background: #CCC;
  border-color: #BBB;
  text-shadow: 0 1px 1px #fff;
  font-weight: bold;
  @include box-shadow(inset 0 2px 4px rgba(0,0,0,.15));
}
87 88 89 90

/** Big Labels **/
.state-label {
  font-size: 14px;
91
  padding: 6px 25px;
92 93
  text-align: center;
  @include border-radius(4px);
94
  text-shadow: none;
95
  margin-left: 10px;
96 97 98 99 100 101 102 103 104 105 106

  &.state-label-green {
    background: #4A4;
    color: #FFF;
  }

  &.state-label-red {
    background: #DA4E49;
    color: #FFF;
  }
}
D
Dmitriy Zaporozhets 已提交
107 108 109 110

.dropdown-menu > li > a {
  text-shadow: none;
}
111 112 113 114 115

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background: #29b;
}
116

117 118 119 120 121
.breadcrumb > li + li:before {
  content: "/";
  padding: 0;
  color: #666;
}