bootstrap-1.0.0.css 33.3 KB
Newer Older
1001
 * ---------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
1002
1003
div.topbar {
  background-color: #222222;
1004
  background-repeat: repeat-x;
Jacob Thornton's avatar
Jacob Thornton committed
1005
  background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
  /* Konqueror */

  background-image: -moz-linear-gradient(#333333, #222222);
  /* FF 3.6+ */

  background-image: -ms-linear-gradient(#333333, #222222);
  /* IE10 */

  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  /* Safari 4+, Chrome 2+ */

  background-image: -webkit-linear-gradient(#333333, #222222);
  /* Safari 5.1+, Chrome 10+ */

  background-image: -o-linear-gradient(#333333, #222222);
  /* Opera 11.10 */

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0)";
  /* IE8+ */

1026
1027
1028
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  /* IE6 & IE7 */

1029
1030
1031
  background-image: linear-gradient(#333333, #222222);
  /* the standard */

Jacob Thornton's avatar
Jacob Thornton committed
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
  -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);
}
div.topbar a {
Mark Otto's avatar
Mark Otto committed
1044
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all linear 0.1s;
  -moz-transition: all linear 0.1s;
  transition: all linear 0.1s;
}
div.topbar ul li a:hover, div.topbar ul li.active a, div.topbar a.logo:hover {
  background-color: #333;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
}
div.topbar a.logo {
  float: left;
  display: block;
  padding: 8px 20px 12px;
  margin-left: -20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}
div.topbar a.logo img {
  float: left;
  margin-right: 6px;
}
div.topbar form {
  float: left;
Mark Otto's avatar
Mark Otto committed
1072
  margin: 5px 0 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
1073
1074
1075
1076
  opacity: 1;
  position: relative;
}
div.topbar form input {
Mark Otto's avatar
Mark Otto committed
1077
  background-color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
  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;
1088
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
  -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;
  transition: none;
}
div.topbar form input:-moz-placeholder {
1099
  color: #e6e6e6;
Jacob Thornton's avatar
Jacob Thornton committed
1100
1101
}
div.topbar form input::-webkit-input-placeholder {
1102
  color: #e6e6e6;
Jacob Thornton's avatar
Jacob Thornton committed
1103
1104
1105
1106
1107
1108
1109
1110
1111
}
div.topbar form input:hover {
  background-color: #444;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
div.topbar form input:focus, div.topbar form input.focused {
  outline: none;
  background-color: #fff;
1112
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
  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);
}
div.topbar ul {
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
div.topbar ul.secondary-nav {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
div.topbar ul li {
  display: block;
  float: left;
  font-size: 13px;
}
div.topbar ul li a {
  display: block;
  float: none;
  padding: 10px 10px 11px;
  line-height: 19px;
  text-decoration: none;
}
div.topbar ul li a:hover {
  color: #fff;
  text-decoration: none;
}
div.topbar ul li.active a {
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.5);
}
div.topbar ul.primary-nav li ul {
  left: 0;
}
div.topbar ul.secondary-nav li ul {
  right: 0;
}
div.topbar ul li.menu {
  position: relative;
}
div.topbar ul li.menu a.menu:after {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: transparent url(assets/img/dropdown-arrow.gif) no-repeat top center;
  content: "↓";
  text-indent: -99999px;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 4px;
  opacity: .5;
}
div.topbar ul li.menu.open a.menu, div.topbar ul li.menu.open a:hover {
  background-color: #00b4eb;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
div.topbar ul li.menu.open ul {
  display: block;
}
div.topbar ul li.menu.open ul li a {
  background-color: transparent;
  font-weight: normal;
}
div.topbar ul li.menu.open ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
div.topbar ul li.menu.open ul li.active a {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
}
div.topbar ul li ul {
  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;
1206
  -webkit-border-radius: 0 0 5px 5px;
Jacob Thornton's avatar
Jacob Thornton committed
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
  -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);
}
div.topbar ul li ul li {
  float: none;
  clear: both;
  display: block;
  background: none;
  font-size: 12px;
}
div.topbar ul li ul li a {
  display: block;
  padding: 6px 15px;
  clear: both;
  font-weight: normal;
  line-height: 19px;
  color: #bbb;
}
div.topbar ul li ul li a:hover {
  background-color: #333;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
div.topbar ul li ul li.divider {
  height: 1px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 5px 0;
}
div.topbar ul li ul li span {
  clear: both;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 15px;
  cursor: default;
1246
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
1247
1248
1249
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
div.page-header {
1250
  margin-bottom: 17px;
Jacob Thornton's avatar
Jacob Thornton committed
1251
1252
1253
1254
1255
1256
  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);
}
div.page-header h1 {
1257
  margin-bottom: 8px;
Jacob Thornton's avatar
Jacob Thornton committed
1258
1259
1260
}
div.alert-message {
  background-color: rgba(0, 0, 0, 0.15);
1261
  background-repeat: repeat-x;
Jacob Thornton's avatar
Jacob Thornton committed
1262
  background-image: -khtml-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.15)));
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
  /* Konqueror */

  background-image: -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  /* FF 3.6+ */

  background-image: -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  /* IE10 */

  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.15)));
  /* Safari 4+, Chrome 2+ */

  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  /* Safari 5.1+, Chrome 10+ */

  background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  /* Opera 11.10 */

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0)";
  /* IE8+ */

1283
1284
1285
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0);
  /* IE6 & IE7 */

1286
1287
1288
1289
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  /* the standard */

  background-color: #e6e6e6;
1290
1291
  margin-bottom: 18px;
  padding: 8px 15px;
Jacob Thornton's avatar
Jacob Thornton committed
1292
1293
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1294
1295
1296
1297
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
}
div.alert-message p {
  color: #fff;
  margin-bottom: 0;
}
div.alert-message p + p {
  margin-top: 5px;
}
div.alert-message.error {
  background-color: #e06359;
}
div.alert-message.warning {
  background-color: #ffd75a;
}
div.alert-message.success {
  background-color: #74c474;
}
div.alert-message.info {
  background-color: #53ccfc;
}
div.alert-message a.close {
  float: right;
  margin-top: -2px;
  opacity: .5;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1326
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
1327
1328
1329
1330
1331
1332
1333
1334
  -moz-border-radius: 3px;
  border-radius: 3px;
}
div.alert-message a.close:hover {
  opacity: 1;
  text-decoration: none;
}
div.block-message {
1335
1336
1337
  margin-bottom: 18px;
  padding: 14px;
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
1338
1339
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1340
  -webkit-border-radius: 6px;
Jacob Thornton's avatar
Jacob Thornton committed
1341
1342
1343
1344
  -moz-border-radius: 6px;
  border-radius: 6px;
}
div.block-message p {
1345
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
  color: rgba(0, 0, 0, 0.8);
  margin-right: 30px;
  margin-bottom: 0;
}
div.block-message ul {
  margin-bottom: 0;
}
div.block-message strong {
  display: block;
}
div.block-message a.close {
  display: block;
1358
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
div.block-message.error {
  background: #f8dcda;
  border: 1px solid #f4c8c5;
}
div.block-message.warning {
  background: #fff0c0;
  border: 1px solid #ffe38d;
}
div.block-message.success {
  background: #dff1df;
  border: 1px solid #bbe2bb;
}
div.block-message.info {
  background: #eaf9ff;
  border: 1px solid #d1f1fe;
}
ul.tabs, ul.pills {
  margin: 0 0 20px;
  padding: 0;
  zoom: 1;
}
ul.tabs:after, ul.pills:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
ul.tabs li, ul.pills li {
  display: inline;
}
ul.tabs li a, ul.pills li a {
  float: left;
  width: auto;
}
ul.tabs {
  width: 100%;
Mark Otto's avatar
Mark Otto committed
1399
  border-bottom: 1px solid #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1400
1401
1402
1403
1404
}
ul.tabs li a {
  margin-bottom: -1px;
  margin-right: 2px;
  padding: 0 15px;
1405
  line-height: 35px;
1406
  -webkit-border-radius: 3px 3px 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
1407
1408
1409
1410
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
ul.tabs li a:hover {
1411
  background-color: #e6e6e6;
Mark Otto's avatar
Mark Otto committed
1412
  border-bottom: 1px solid #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1413
1414
}
ul.tabs li.active a {
1415
  background-color: #fff;
Jacob Thornton's avatar
Jacob Thornton committed
1416
1417
1418
  padding: 0 14px;
  border: 1px solid #ccc;
  border-bottom: 0;
1419
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
1420
1421
1422
1423
1424
1425
}
ul.pills li a {
  margin: 5px 3px 5px 0;
  padding: 0 15px;
  text-shadow: 0 1px 1px #fff;
  line-height: 30px;
1426
  -webkit-border-radius: 15px;
Jacob Thornton's avatar
Jacob Thornton committed
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
  -moz-border-radius: 15px;
  border-radius: 15px;
}
ul.pills li a:hover {
  background: #0050a3;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
ul.pills li.active a {
  background: #0069d6;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
div.pagination {
1442
1443
  height: 36px;
  margin: 18px 0;
Jacob Thornton's avatar
Jacob Thornton committed
1444
1445
1446
1447
1448
}
div.pagination ul {
  float: left;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
1449
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
div.pagination ul li {
  display: inline;
}
div.pagination ul li a {
  float: left;
  padding: 0 14px;
1462
  line-height: 34px;
Jacob Thornton's avatar
Jacob Thornton committed
1463
1464
1465
1466
1467
1468
1469
1470
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
div.pagination ul li a:hover, div.pagination ul li.active a {
  background-color: #eaf9ff;
}
div.pagination ul li.disabled a, div.pagination ul li.disabled a:hover {
  background-color: none;
Mark Otto's avatar
Mark Otto committed
1471
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
}
div.pagination ul li.next a, div.pagination ul li:last-child a {
  border: 0;
}
div.well {
  background: #f5f5f5;
  margin-bottom: 20px;
  padding: 19px;
  min-height: 20px;
  border: 1px solid #ddd;
1482
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
1483
1484
  -moz-border-radius: 4px;
  border-radius: 4px;
1485
1486
1487
  -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
1488
}
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
div.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
div.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2000;
1503
1504
  width: 560px;
  margin: -280px 0 0 -250px;
1505
  background-color: #ffffff;
1506
  border: 1px solid rgba(0, 0, 0, 0.3);
1507
1508
1509
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
1510
1511
1512
1513
1514
1515
  -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);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding;
Jacob Thornton's avatar
Jacob Thornton committed
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
}
div.modal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 5px 20px;
}
div.modal .modal-header a.close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
  line-height: 10px;
  font-size: 18px;
1528
}
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
div.modal .modal-body {
  padding: 20px;
}
div.modal .modal-footer {
  background-color: #eee;
  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;
}
div.modal .modal-footer:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
div.modal .modal-footer .btn {
  float: right;
  margin-left: 10px;
}
For faster browsing, not all history is shown. View entire blame