bootstrap-1.1.1.css 40.9 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1001
1002
1003
1004
1005
table th {
  padding-top: 9px;
  font-weight: bold;
  border-bottom-width: 2px;
}
1006
.zebra-striped tbody tr:nth-child(odd) td {
1007
  background-color: #f9f9f9;
Jacob Thornton's avatar
Jacob Thornton committed
1008
}
1009
.zebra-striped tbody tr:hover td {
1010
  background-color: #f5f5f5;
Jacob Thornton's avatar
Jacob Thornton committed
1011
}
1012
.zebra-striped .header {
Jacob Thornton's avatar
Jacob Thornton committed
1013
  cursor: pointer;
1014
}
1015
.zebra-striped .header:after {
1016
  content: "";
1017
1018
  float: right;
  margin-top: 7px;
1019
1020
1021
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #000 transparent;
1022
  visibility: hidden;
Jacob Thornton's avatar
Jacob Thornton committed
1023
}
1024
.zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
Jacob Thornton's avatar
Jacob Thornton committed
1025
  background-color: rgba(141, 192, 219, 0.25);
1026
1027
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 3px 3px 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
1028
1029
1030
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
1031
.zebra-striped .header:hover:after {
1032
  visibility: visible;
Jacob Thornton's avatar
Jacob Thornton committed
1033
}
1034
.zebra-striped .headerSortDown:after, .zebra-striped .headerSortDown:hover:after {
1035
1036
1037
1038
1039
1040
  visibility: visible;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
1041
.zebra-striped .headerSortUp:after {
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
  border-bottom: none;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  visibility: visible;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
Jacob Thornton's avatar
Jacob Thornton committed
1054
}
1055
table .blue {
1056
1057
  color: #049cdb;
  border-bottom-color: #049cdb;
Jacob Thornton's avatar
Jacob Thornton committed
1058
}
1059
table .headerSortUp.blue, table .headerSortDown.blue {
1060
  background-color: #ade6fe;
Jacob Thornton's avatar
Jacob Thornton committed
1061
}
1062
table .green {
Jacob Thornton's avatar
Jacob Thornton committed
1063
1064
1065
  color: #46a546;
  border-bottom-color: #46a546;
}
1066
table .headerSortUp.green, table .headerSortDown.green {
Jacob Thornton's avatar
Jacob Thornton committed
1067
1068
  background-color: #cdeacd;
}
1069
table .red {
Jacob Thornton's avatar
Jacob Thornton committed
1070
1071
1072
  color: #9d261d;
  border-bottom-color: #9d261d;
}
1073
table .headerSortUp.red, table .headerSortDown.red {
Jacob Thornton's avatar
Jacob Thornton committed
1074
1075
  background-color: #f4c8c5;
}
1076
table .yellow {
Jacob Thornton's avatar
Jacob Thornton committed
1077
1078
1079
  color: #ffc40d;
  border-bottom-color: #ffc40d;
}
1080
table .headerSortUp.yellow, table .headerSortDown.yellow {
Jacob Thornton's avatar
Jacob Thornton committed
1081
1082
  background-color: #fff6d9;
}
1083
table .orange {
Jacob Thornton's avatar
Jacob Thornton committed
1084
1085
1086
  color: #f89406;
  border-bottom-color: #f89406;
}
1087
table .headerSortUp.orange, table .headerSortDown.orange {
Jacob Thornton's avatar
Jacob Thornton committed
1088
1089
  background-color: #fee9cc;
}
1090
table .purple {
Jacob Thornton's avatar
Jacob Thornton committed
1091
1092
1093
  color: #7a43b6;
  border-bottom-color: #7a43b6;
}
1094
table .headerSortUp.purple, table .headerSortDown.purple {
Jacob Thornton's avatar
Jacob Thornton committed
1095
1096
  background-color: #e2d5f0;
}
1097
/* Patterns.less
1098
 * Repeatable UI elements outside the base styles provided from the scaffolding
1099
 * ---------------------------------------------------------------------------- */
1100
.topbar {
Jacob Thornton's avatar
Jacob Thornton committed
1101
1102
1103
1104
1105
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
Mark Otto's avatar
Mark Otto committed
1106
  z-index: 10000;
Jacob Thornton's avatar
Jacob Thornton committed
1107
  overflow: visible;
1108
}
Mark Otto's avatar
Mark Otto committed
1109
.topbar .fill {
Jacob Thornton's avatar
ie Xp    
Jacob Thornton committed
1110
  background: #222;
Jacob Thornton's avatar
Jacob Thornton committed
1111
  background-color: #222222;
1112
  background-repeat: repeat-x;
Jacob Thornton's avatar
Jacob Thornton committed
1113
  background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
Mark Otto's avatar
Mark Otto committed
1114
1115
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -ms-linear-gradient(top, #333333, #222222);
1116
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
Mark Otto's avatar
Mark Otto committed
1117
1118
1119
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
Jacob Thornton's avatar
Jacob Thornton committed
1120
1121
1122
1123
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
1124
.topbar a {
Mark Otto's avatar
Mark Otto committed
1125
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1126
1127
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
1128
.topbar a:hover, .topbar ul li.active a {
Jacob Thornton's avatar
Jacob Thornton committed
1129
  background-color: #333;
1130
  background-color: rgba(255, 255, 255, 0.05);
Jacob Thornton's avatar
Jacob Thornton committed
1131
1132
1133
  color: #ffffff;
  text-decoration: none;
}
Mark Otto's avatar
Mark Otto committed
1134
.topbar h3 {
1135
1136
  position: relative;
}
1137
.topbar h3 a {
Jacob Thornton's avatar
Jacob Thornton committed
1138
1139
1140
1141
1142
1143
1144
1145
1146
  float: left;
  display: block;
  padding: 8px 20px 12px;
  margin-left: -20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}
1147
.topbar form {
Jacob Thornton's avatar
Jacob Thornton committed
1148
  float: left;
Mark Otto's avatar
Mark Otto committed
1149
  margin: 5px 0 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
1150
  position: relative;
1151
1152
1153
1154
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
Jacob Thornton's avatar
Jacob Thornton committed
1155
}
1156
.topbar form input {
1157
  background-color: #444;
Jacob Thornton's avatar
Jacob Thornton committed
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
  background-color: rgba(255, 255, 255, 0.3);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: normal;
  font-weight: 13px;
  line-height: 1;
  width: 220px;
  padding: 4px 9px;
  color: #fff;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid #111;
1168
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
1169
1170
1171
1172
1173
1174
1175
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
  -webkit-transition: none;
  -moz-transition: none;
Jacob Thornton's avatar
Jacob Thornton committed
1176
1177
  -ms-transition: none;
  -o-transition: none;
Jacob Thornton's avatar
Jacob Thornton committed
1178
1179
  transition: none;
}
1180
.topbar form input:-moz-placeholder {
1181
  color: #e6e6e6;
Jacob Thornton's avatar
Jacob Thornton committed
1182
}
1183
.topbar form input::-webkit-input-placeholder {
1184
  color: #e6e6e6;
Jacob Thornton's avatar
Jacob Thornton committed
1185
}
1186
.topbar form input:hover {
1187
  background-color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1188
1189
1190
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
1191
.topbar form input:focus, .topbar form input.focused {
Jacob Thornton's avatar
Jacob Thornton committed
1192
1193
  outline: none;
  background-color: #fff;
1194
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
1195
1196
1197
1198
1199
1200
1201
  text-shadow: 0 1px 0 #fff;
  border: 0;
  padding: 5px 10px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
1202
.topbar ul {
Jacob Thornton's avatar
Jacob Thornton committed
1203
1204
1205
  display: block;
  float: left;
  margin: 0 10px 0 0;
Mark Otto's avatar
Mark Otto committed
1206
  position: relative;
Jacob Thornton's avatar
Jacob Thornton committed
1207
}
1208
.topbar ul.secondary-nav {
Jacob Thornton's avatar
Jacob Thornton committed
1209
1210
1211
1212
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
1213
.topbar ul li {
Jacob Thornton's avatar
Jacob Thornton committed
1214
1215
1216
1217
  display: block;
  float: left;
  font-size: 13px;
}
1218
.topbar ul li a {
Jacob Thornton's avatar
Jacob Thornton committed
1219
1220
1221
1222
1223
1224
  display: block;
  float: none;
  padding: 10px 10px 11px;
  line-height: 19px;
  text-decoration: none;
}
1225
.topbar ul li a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1226
1227
1228
  color: #fff;
  text-decoration: none;
}
1229
.topbar ul li.active a {
Jacob Thornton's avatar
Jacob Thornton committed
1230
1231
1232
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.5);
}
1233
.topbar ul.primary-nav li ul {
Jacob Thornton's avatar
Jacob Thornton committed
1234
1235
  left: 0;
}
1236
.topbar ul.secondary-nav li ul {
Jacob Thornton's avatar
Jacob Thornton committed
1237
1238
  right: 0;
}
1239
.topbar ul li.menu {
Jacob Thornton's avatar
Jacob Thornton committed
1240
1241
  position: relative;
}
1242
.topbar ul li.menu a.menu:after {
1243
1244
  width: 0px;
  height: 0px;
Jacob Thornton's avatar
Jacob Thornton committed
1245
1246
1247
1248
1249
1250
  display: inline-block;
  content: "↓";
  text-indent: -99999px;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 4px;
1251
1252
1253
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
1254
1255
1256
1257
  filter: alpha(opacity=50);
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
Jacob Thornton's avatar
Jacob Thornton committed
1258
}
1259
.topbar ul li.menu.open a.menu, .topbar ul li.menu.open a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1260
  background-color: #444;
Jacob Thornton's avatar
Jacob Thornton committed
1261
  background-color: rgba(255, 255, 255, 0.1);
1262
1263
1264
  *background-color: #444;
  /* IE6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
1265
1266
  color: #fff;
}
1267
.topbar ul li.menu.open ul {
Jacob Thornton's avatar
Jacob Thornton committed
1268
1269
  display: block;
}
1270
.topbar ul li.menu.open ul li a {
Jacob Thornton's avatar
Jacob Thornton committed
1271
1272
1273
  background-color: transparent;
  font-weight: normal;
}
1274
.topbar ul li.menu.open ul li a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1275
  background-color: rgba(255, 255, 255, 0.1);
1276
1277
1278
  *background-color: #444;
  /* IE6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
1279
1280
  color: #fff;
}
1281
.topbar ul li.menu.open ul li.active a {
Jacob Thornton's avatar
Jacob Thornton committed
1282
1283
1284
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
}
1285
.topbar ul li ul {
Jacob Thornton's avatar
Jacob Thornton committed
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
  background-color: #333;
  float: left;
  display: none;
  position: absolute;
  top: 40px;
  min-width: 160px;
  max-width: 220px;
  _width: 160px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-align: left;
  border: 0;
  zoom: 1;
1300
  -webkit-border-radius: 0 0 5px 5px;
Jacob Thornton's avatar
Jacob Thornton committed
1301
1302
1303
1304
1305
1306
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
1307
.topbar ul li ul li {
Jacob Thornton's avatar
Jacob Thornton committed
1308
1309
1310
1311
1312
1313
  float: none;
  clear: both;
  display: block;
  background: none;
  font-size: 12px;
}
1314
.topbar ul li ul li a {
Jacob Thornton's avatar
Jacob Thornton committed
1315
1316
1317
1318
1319
1320
1321
  display: block;
  padding: 6px 15px;
  clear: both;
  font-weight: normal;
  line-height: 19px;
  color: #bbb;
}
1322
.topbar ul li ul li a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1323
1324
1325
1326
  background-color: #333;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
1327
.topbar ul li ul li.divider {
Jacob Thornton's avatar
Jacob Thornton committed
1328
1329
  height: 1px;
  overflow: hidden;
Jacob Thornton's avatar
Jacob Thornton committed
1330
  background: #222;
Jacob Thornton's avatar
Jacob Thornton committed
1331
1332
1333
1334
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 5px 0;
}
1335
.topbar ul li ul li span {
Jacob Thornton's avatar
Jacob Thornton committed
1336
1337
1338
1339
1340
  clear: both;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 15px;
  cursor: default;
1341
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
1342
1343
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
1344
1345
.hero-unit {
  background-color: #f5f5f5;
1346
  margin-top: 60px;
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
  margin-bottom: 30px;
  padding: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-unit p {
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
}
1364
1365
1366
1367
1368
footer {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid #eee;
}
1369
.page-header {
1370
  margin-bottom: 17px;
Jacob Thornton's avatar
Jacob Thornton committed
1371
1372
1373
1374
1375
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
1376
.page-header h1 {
1377
  margin-bottom: 8px;
Jacob Thornton's avatar
Jacob Thornton committed
1378
}
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
.btn {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(0.25, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -moz-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
Jacob Thornton's avatar
Jacob Thornton committed
1405
1406
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
1407
1408
1409
1410
1411
1412
1413
  transition: 0.1s linear all;
}
.btn:hover {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}
Jacob Thornton's avatar
Jacob Thornton committed
1414
1415
1416
1417
1418
.btn.primary {
  color: #fff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
Mark Otto's avatar
Mark Otto committed
1419
1420
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
Jacob Thornton's avatar
Jacob Thornton committed
1421
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
Mark Otto's avatar
Mark Otto committed
1422
1423
1424
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
Jacob Thornton's avatar
Jacob Thornton committed
1425
1426
1427
1428
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
.btn.disabled {
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.btn:disabled {
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.large {
  font-size: 16px;
  line-height: normal;
  padding: 9px 14px 9px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn.small {
  padding: 7px 9px 7px;
  font-size: 11px;
}
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
1466
.alert-message {
1467
  background-color: #eedc94;
1468
  background-repeat: repeat-x;
1469
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
Mark Otto's avatar
Mark Otto committed
1470
1471
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
1472
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
Mark Otto's avatar
Mark Otto committed
1473
1474
1475
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
1476
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1477
1478
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1479
  margin-bottom: 18px;
1480
1481
1482
1483
1484
  padding: 7px 14px;
  color: #404040;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
1485
1486
1487
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
1488
1489
1490
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
Jacob Thornton's avatar
Jacob Thornton committed
1491
}
1492
.alert-message h5 {
1493
1494
  line-height: 18px;
}
1495
.alert-message p {
Jacob Thornton's avatar
Jacob Thornton committed
1496
1497
  margin-bottom: 0;
}
1498
.alert-message div {
Jacob Thornton's avatar
Jacob Thornton committed
1499
  margin-top: 5px;
1500
1501
1502
  margin-bottom: 2px;
  line-height: 28px;
}
1503
.alert-message .btn {
1504
1505
1506
1507
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
1508
.alert-message .close {
Jacob Thornton's avatar
Jacob Thornton committed
1509
1510
  float: right;
  margin-top: -2px;
1511
  color: #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1512
1513
  font-size: 20px;
  font-weight: bold;
1514
1515
1516
1517
1518
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=20);
  -khtml-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
Jacob Thornton's avatar
Jacob Thornton committed
1519
}
1520
.alert-message .close:hover {
1521
  color: #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1522
  text-decoration: none;
1523
1524
1525
1526
  filter: alpha(opacity=40);
  -khtml-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
Jacob Thornton's avatar
Jacob Thornton committed
1527
}
1528
.alert-message.block-message {
1529
1530
  background-image: none;
  background-color: #fdf5d9;
1531
  padding: 14px;
1532
1533
1534
1535
  border-color: #fceec1;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
Jacob Thornton's avatar
Jacob Thornton committed
1536
}
1537
.alert-message.block-message p {
Jacob Thornton's avatar
Jacob Thornton committed
1538
1539
  margin-right: 30px;
}
1540
.alert-message.block-message .alert-actions {
1541
  margin-top: 5px;
Jacob Thornton's avatar
Jacob Thornton committed
1542
}
1543
.alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
1544
1545
1546
  color: #404040;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
1547
.alert-message.block-message.error {
1548
1549
  background-color: #fddfde;
  border-color: #fbc7c6;
Jacob Thornton's avatar
Jacob Thornton committed
1550
}
1551
.alert-message.block-message.success {
1552
1553
  background-color: #d1eed1;
  border-color: #bfe7bf;
Jacob Thornton's avatar
Jacob Thornton committed
1554
}
1555
.alert-message.block-message.info {
1556
1557
  background-color: #ddf4fb;
  border-color: #c6edf9;
Jacob Thornton's avatar
Jacob Thornton committed
1558
}
1559
.tabs, .pills {
Jacob Thornton's avatar
Jacob Thornton committed
1560
1561
1562
  margin: 0 0 20px;
  padding: 0;
  zoom: 1;
1563
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
1564
}
1565
1566
1567
1568
.tabs:before,
.pills:before,
.tabs:after,
.pills:after {
1569
1570
1571
  display: table;
  content: "";
}
1572
.tabs:after, .pills:after {
Jacob Thornton's avatar
Jacob Thornton committed
1573
1574
  clear: both;
}
1575
.tabs li, .pills li {
Jacob Thornton's avatar
Jacob Thornton committed
1576
1577
  display: inline;
}
1578
.tabs li a, .pills li a {
Jacob Thornton's avatar
Jacob Thornton committed
1579
1580
1581
  float: left;
  width: auto;
}
1582
.tabs {
Jacob Thornton's avatar
Jacob Thornton committed
1583
  width: 100%;
Mark Otto's avatar
Mark Otto committed
1584
  border-bottom: 1px solid #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1585
}
1586
.tabs li a {
Jacob Thornton's avatar
Jacob Thornton committed
1587
1588
1589
  margin-bottom: -1px;
  margin-right: 2px;
  padding: 0 15px;
1590
  line-height: 35px;
1591
  -webkit-border-radius: 3px 3px 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
1592
1593
1594
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
1595
.tabs li a:hover {
1596
  background-color: #e6e6e6;
Mark Otto's avatar
Mark Otto committed
1597
  border-bottom: 1px solid #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1598
}
1599
.tabs li.active a {
1600
  background-color: #fff;
Jacob Thornton's avatar
Jacob Thornton committed
1601
1602
1603
  padding: 0 14px;
  border: 1px solid #ccc;
  border-bottom: 0;
1604
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
1605
}
1606
.pills li a {
Jacob Thornton's avatar
Jacob Thornton committed
1607
1608
1609
1610
  margin: 5px 3px 5px 0;
  padding: 0 15px;
  text-shadow: 0 1px 1px #fff;
  line-height: 30px;
1611
  -webkit-border-radius: 15px;
Jacob Thornton's avatar
Jacob Thornton committed
1612
1613
1614
  -moz-border-radius: 15px;
  border-radius: 15px;
}
1615
.pills li a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1616
1617
1618
1619
1620
  background: #0050a3;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
1621
.pills li.active a {
Jacob Thornton's avatar
Jacob Thornton committed
1622
1623
1624
1625
  background: #0069d6;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
1626
.pagination {
1627
1628
  height: 36px;
  margin: 18px 0;
Jacob Thornton's avatar
Jacob Thornton committed
1629
}
1630
.pagination ul {
Jacob Thornton's avatar
Jacob Thornton committed
1631
1632
  float: left;
  margin: 0;
1633
  border: 1px solid #ddd;
Jacob Thornton's avatar
Jacob Thornton committed
1634
  border: 1px solid rgba(0, 0, 0, 0.15);
1635
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
1636
1637
  -moz-border-radius: 3px;
  border-radius: 3px;
1638
1639
1640
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
Jacob Thornton's avatar
Jacob Thornton committed
1641
}
1642
.pagination ul li {
Jacob Thornton's avatar
Jacob Thornton committed
1643
1644
  display: inline;
}
1645
.pagination ul li a {
Jacob Thornton's avatar
Jacob Thornton committed
1646
1647
  float: left;
  padding: 0 14px;
1648
  line-height: 34px;
Jacob Thornton's avatar
Jacob Thornton committed
1649
1650
1651
  border-right: 1px solid;
  border-right-color: #ddd;
  border-right-color: rgba(0, 0, 0, 0.15);
Jacob Thornton's avatar
Jacob Thornton committed
1652
1653
1654
  *border-right-color: #ddd;
  /* IE6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
1655
1656
  text-decoration: none;
}
1657
.pagination ul li a:hover, .pagination ul li.active a {
1658
  background-color: #c7eefe;
Jacob Thornton's avatar
Jacob Thornton committed
1659
}
1660
.pagination ul li.disabled a, .pagination ul li.disabled a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
1661
  background-color: transparent;
Mark Otto's avatar
Mark Otto committed
1662
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1663
}
Jacob Thornton's avatar
remake    
Jacob Thornton committed
1664
.pagination ul li.next a {
Jacob Thornton's avatar
Jacob Thornton committed
1665
1666
  border: 0;
}
1667
1668
.well {
  background-color: #f5f5f5;
Jacob Thornton's avatar
Jacob Thornton committed
1669
1670
1671
  margin-bottom: 20px;
  padding: 19px;
  min-height: 20px;
1672
1673
  border: 1px solid #eee;
  border: 1px solid rgba(0, 0, 0, 0.05);
1674
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
1675
1676
  -moz-border-radius: 4px;
  border-radius: 4px;
1677
1678
1679
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
Jacob Thornton's avatar
Jacob Thornton committed
1680
}
1681
.modal-backdrop {
1682
1683
1684
1685
  /*  background-color: rgba(0,0,0,.5);
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=%d,endColorstr=%d)", '#aa000000', '#aa000000'));*/

  background-color: #000;
1686
1687
1688
1689
1690
1691
1692
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
1693
1694
1695
.modal-backdrop.fade.in {
  opacity: .5;
}
1696
.modal {
1697
1698
1699
1700
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2000;
1701
1702
  width: 560px;
  margin: -280px 0 0 -250px;
1703
  background-color: #ffffff;
1704
  border: 1px solid #999;
1705
  border: 1px solid rgba(0, 0, 0, 0.3);
Jacob Thornton's avatar
Jacob Thornton committed
1706
1707
1708
  *border: 1px solid #999;
  /* IE6-7 */

1709
1710
1711
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
1712
1713
1714
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1715
1716
1717
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
Jacob Thornton's avatar
Jacob Thornton committed
1718
}
1719
.modal .modal-header {
Jacob Thornton's avatar
Jacob Thornton committed
1720
1721
1722
  border-bottom: 1px solid #eee;
  padding: 5px 20px;
}
Jacob Thornton's avatar
remake    
Jacob Thornton committed
1723
.modal .modal-header .close {
Jacob Thornton's avatar
Jacob Thornton committed
1724
1725
1726
1727
1728
1729
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
  line-height: 10px;
  font-size: 18px;
1730
}
1731
.modal .modal-body {
1732
1733
  padding: 20px;
}
1734
.modal .modal-footer {
1735
  background-color: #f5f5f5;
1736
1737
1738
1739
1740
1741
1742
1743
1744
  padding: 14px 20px 15px;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  zoom: 1;
1745
1746
  margin-bottom: 18px;
  margin-bottom: 0;
1747
}
1748
.modal .modal-footer:before, .modal .modal-footer:after {
1749
1750
1751
  display: table;
  content: "";
}
1752
.modal .modal-footer:after {
1753
1754
  clear: both;
}
1755
.modal .modal-footer .btn {
1756
1757
1758
  float: right;
  margin-left: 10px;
}
1759
.twipsy {
Jacob Thornton's avatar
Jacob Thornton committed
1760
1761
1762
1763
  display: block;
  position: absolute;
  visibility: visible;
  padding: 5px;
Mark Otto's avatar
Mark Otto committed
1764
  font-size: 11px;
Mark Otto's avatar
Mark Otto committed
1765
  z-index: 1000;
Jacob Thornton's avatar
Jacob Thornton committed
1766
1767
1768
1769
1770
  filter: alpha(opacity=80);
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
1771
.twipsy.above .twipsy-arrow {
Jacob Thornton's avatar
Jacob Thornton committed
1772
1773
1774
1775
1776
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
Mark Otto's avatar
Mark Otto committed
1777
  border-top: 5px solid #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1778
}
1779
.twipsy.left .twipsy-arrow {
Jacob Thornton's avatar
Jacob Thornton committed
1780
1781
1782
1783
1784
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
Mark Otto's avatar
Mark Otto committed
1785
  border-left: 5px solid #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1786
}
1787
.twipsy.below .twipsy-arrow {
Jacob Thornton's avatar
Jacob Thornton committed
1788
1789
1790
1791
1792
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
Mark Otto's avatar
Mark Otto committed
1793
  border-bottom: 5px solid #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1794
}
1795
.twipsy.right .twipsy-arrow {
Jacob Thornton's avatar
Jacob Thornton committed
1796
1797
1798
1799
1800
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
Mark Otto's avatar
Mark Otto committed
1801
  border-right: 5px solid #000000;
Jacob Thornton's avatar
Jacob Thornton committed
1802
}
1803
.twipsy .twipsy-inner {
Mark Otto's avatar
Mark Otto committed
1804
  padding: 3px 8px;
Jacob Thornton's avatar
Jacob Thornton committed
1805
1806
1807
1808
1809
1810
1811
1812
1813
  background-color: #000;
  color: white;
  text-align: center;
  max-width: 200px;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
1814
.twipsy .twipsy-arrow {
Jacob Thornton's avatar
Jacob Thornton committed
1815
1816
1817
1818
  position: absolute;
  width: 0;
  height: 0;
}
Mark Otto's avatar
Mark Otto committed
1819
1820
1821
1822
.popover {
  position: absolute;
  top: 0;
  left: 0;
Mark Otto's avatar
Mark Otto committed
1823
  z-index: 1000;
Mark Otto's avatar
Mark Otto committed
1824
  padding: 5px;
Jacob Thornton's avatar
Jacob Thornton committed
1825
  display: none;
Mark Otto's avatar
Mark Otto committed
1826
}
Jacob Thornton's avatar
Jacob Thornton committed
1827
.popover.above .arrow {
Mark Otto's avatar
Mark Otto committed
1828
1829
1830
1831
1832
1833
1834
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
}
Jacob Thornton's avatar
Jacob Thornton committed
1835
.popover.right .arrow {
Mark Otto's avatar
Mark Otto committed
1836
1837
1838
1839
1840
1841
1842
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000000;
}
Jacob Thornton's avatar
Jacob Thornton committed
1843
.popover.below .arrow {
Mark Otto's avatar
Mark Otto committed
1844
1845
1846
1847
1848
1849
1850
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000000;
}
Jacob Thornton's avatar
Jacob Thornton committed
1851
.popover.left .arrow {
Mark Otto's avatar
Mark Otto committed
1852
1853
1854
1855
1856
1857
1858
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000000;
}
Jacob Thornton's avatar
Jacob Thornton committed
1859
.popover .arrow {
Mark Otto's avatar
Mark Otto committed
1860
1861
1862
1863
  position: absolute;
  width: 0;
  height: 0;
}
Jacob Thornton's avatar
Jacob Thornton committed
1864
.popover .inner {
1865
1866
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.8);
Jacob Thornton's avatar
Jacob Thornton committed
1867
1868
1869
  *background-color: #333;
  /* IE 6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
  padding: 3px;
  overflow: hidden;
  width: 280px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.popover .title {
1881
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
1882
1883
  padding: 9px 15px;
  line-height: 1;
Jacob Thornton's avatar
Jacob Thornton committed
1884
1885
1886
1887
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #eee;
Mark Otto's avatar
Mark Otto committed
1888
}
Jacob Thornton's avatar
Jacob Thornton committed
1889
.popover .content {
Mark Otto's avatar
Mark Otto committed
1890
1891
  background-color: #ffffff;
  padding: 14px;
Jacob Thornton's avatar
Jacob Thornton committed
1892
1893
1894
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
1895
1896
1897
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
1898
}
Jacob Thornton's avatar
Jacob Thornton committed
1899
.popover .content p, .popover .content ul, .popover .content ol {
Mark Otto's avatar
Mark Otto committed
1900
1901
  margin-bottom: 0;
}
1902
.fade {
1903
1904
1905
1906
1907
1908
1909
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -ms-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  opacity: 0;
}
1910
.fade.in {
1911
1912
  opacity: 1;
}
For faster browsing, not all history is shown. View entire blame