openstamanager/templates/base/style.css

111 lines
1.4 KiB
CSS
Raw Normal View History

body {
background-color: white;
color: black;
}
p {
padding: 0px;
margin: 0px;
}
.small-bold {
font-weight: bold;
}
table {
width: 100%;
overflow: wrap
}
2017-09-08 18:19:39 +02:00
table td,
table th {
vertical-align: top;
padding: 4px;
}
table.table-striped tbody tr:nth-child(2n) td {
background-color: #eee;
}
table.table-striped tbody tr:nth-child(2n+1) td {
background-color: #fff;
}
2017-09-12 16:45:18 +02:00
table.table-bordered th {
background: #ddd;
}
table.table-bordered thead tr:nth-child(2) th {
background: #eee;
}
small,
.small,
.small-bold,
table.table-bordered>th {
font-size: 70%;
}
table.table-bordered,
table.table-bordered td,
table.table-bordered th {
border: 1px solid #aaa;
}
table thead th,
table.vertical-middle td,
table.vertical-middle th {
vertical-align: middle;
}
table#contents td {
border-top: 0;
border-bottom: 0;
}
table #contents thead th {
font-size: 80%;
}
.row,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-lg-12 {
margin: 0px !important;
padding: 0px !important;
}
.border-left {
border-left: 1px solid #aaa;
}
.border-right {
border-right: 1px solid #aaa;
}
.border-top {
border-top: 1px solid #aaa;
}
.border-bottom {
border-bottom: 1px solid #aaa;
}
.border-full {
border: 1px solid #aaa;
}
.cell-padded {
padding: 4px;
}