eventman/static/css/eventman.css

89 lines
1.6 KiB
CSS
Raw Normal View History

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-05-10 10:30:37 +02:00
/* logo padding */
.navbar-brand {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
}
a:focus a:hover {
color: #23527c;
}
2016-06-19 19:24:36 +02:00
a:hover {
color: #23527c;
}
2015-03-28 12:54:46 +01:00
/* fix styling for empty href */
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
2015-05-10 10:38:43 +02:00
/* Footer links */
.main-footer {
background-color: lightgray;
text-align: center;
padding: 4px;
font-size: x-small;
}
2015-03-28 12:54:46 +01:00
/* 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; }
/* horizontally center */
.hcenter {
text-align: center;
}
2015-05-04 22:36:44 +02:00
/* 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 {
2015-05-10 10:30:37 +02:00
height: 200px !important;
overflow-x: hidden !important;
overflow-y: scroll !important;
2015-05-04 22:36:44 +02:00
}
/* do not wrap elements inside this one */
.nowrap {
white-space: nowrap;
}