eventman/static/css/eventman.css

58 lines
1.1 KiB
CSS
Raw Normal View History

2015-03-21 13:17:28 +01:00
2015-04-05 09:28:08 +02:00
/* nav-bar padding */
2015-04-05 16:57:21 +02:00
body { padding-top: 70px; }
2015-04-05 09:28:08 +02:00
2015-03-28 12:54:46 +01:00
/* fix styling for empty href */
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
/* margins for lists */
2015-03-21 13:17:28 +01:00
.top5 { margin-top: 5px; }
.top10 { margin-top: 10px; }
.top15 { margin-top: 15px; }
.top20 { margin-top: 20px; }
2015-04-05 20:12:54 +02:00
.top30 { margin-top: 30px; }
2015-05-04 22:36:44 +02:00
/* minimum widths for various input groups */
.min50 { min-width: 50px; }
.min70 { min-width: 70px; }
.min70-compact { min-width: 70px; padding: 1px; }
.min100 { min-width: 100px; }
.min120 { min-width: 120px; }
.min150 { min-width: 150px; }
.min200 { min-width: 200px; }
.min250 { min-width: 250px; }
/* vertically center */
2015-04-05 20:12:54 +02:00
.vcenter {
vertical-align: middle;
2015-04-08 21:55:23 +02:00
display: inline-block !important;
float: none;
2015-04-05 20:12:54 +02:00
}
2015-03-21 13:17:28 +01:00
2015-05-04 22:36:44 +02:00
/* pop-up message */
.eventman-message {
position: fixed;
top: 2%;
width: 40%;
left: 30%;
text-align: center;
display: inline-block;
z-index: 10000;
}
2015-05-04 22:36:44 +02:00
/* things to be invisible */
.outside-screen {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
}
/* a small table with a fixed height */
.small-table {
height:200px;
overflow-x:hidden;
overflow-y:scroll;
}