133 lines
2.8 KiB
CSS
133 lines
2.8 KiB
CSS
|
/* CSS used here will be applied after bootstrap.css */
|
||
|
|
||
|
.underline {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.page-container .indicator {
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.page-container .project-item {
|
||
|
padding-top: 5px;
|
||
|
padding-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
.row-header {
|
||
|
font-size: 14px;
|
||
|
font-weight: 500;
|
||
|
padding-bottom: 8px;
|
||
|
border-bottom: 2px solid #d1d8dd;
|
||
|
margin: 0!important;
|
||
|
}
|
||
|
|
||
|
.content_display{
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.task-btn, .issue-btn, .timelog-btn{
|
||
|
padding: 8px;
|
||
|
}
|
||
|
|
||
|
.timeline-centered {
|
||
|
position: relative;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.timeline-centered:before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
width: 4px;
|
||
|
background: #f5f5f6;
|
||
|
/*left: 50%;*/
|
||
|
top: 20px;
|
||
|
bottom: 20px;
|
||
|
margin-left: 30px;
|
||
|
}
|
||
|
|
||
|
.timeline-centered .timeline-entry {
|
||
|
position: relative;
|
||
|
/*width: 50%;
|
||
|
float: right;*/
|
||
|
margin-top: 5px;
|
||
|
margin-left: 30px;
|
||
|
margin-bottom: 10px;
|
||
|
clear: both;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
|
||
|
left: auto;
|
||
|
right: 0;
|
||
|
margin-left: 0;
|
||
|
margin-right: -9px;
|
||
|
-moz-transform: rotate(180deg);
|
||
|
-o-transform: rotate(180deg);
|
||
|
-webkit-transform: rotate(180deg);
|
||
|
-ms-transform: rotate(180deg);
|
||
|
transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
.timeline-centered .timeline-entry .timeline-entry-inner {
|
||
|
position: relative;
|
||
|
margin-left: -20px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
|
||
|
background: #fff;
|
||
|
color: #737881;
|
||
|
display: block;
|
||
|
width: 40px;
|
||
|
height: 40px;
|
||
|
-webkit-background-clip: padding-box;
|
||
|
-moz-background-clip: padding;
|
||
|
background-clip: padding-box;
|
||
|
-webkit-border-radius: 20px;
|
||
|
-moz-border-radius: 20px;
|
||
|
border-radius: 20px;
|
||
|
text-align: center;
|
||
|
-moz-box-shadow: 0 0 0 5px #f5f5f6;
|
||
|
-webkit-box-shadow: 0 0 0 5px #f5f5f6;
|
||
|
box-shadow: 0 0 0 5px #f5f5f6;
|
||
|
line-height: 40px;
|
||
|
font-size: 15px;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
|
||
|
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
|
||
|
background-color: #fad839;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
|
||
|
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
|
||
|
position: relative;
|
||
|
background: #f5f5f6;
|
||
|
padding: 1em;
|
||
|
margin-left: 60px;
|
||
|
-webkit-background-clip: padding-box;
|
||
|
-moz-background-clip: padding;
|
||
|
background-clip: padding-box;
|
||
|
-webkit-border-radius: 3px;
|
||
|
-moz-border-radius: 3px;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border-style: solid;
|
||
|
border-width: 9px 9px 9px 0;
|
||
|
border-color: transparent #f5f5f6 transparent transparent;
|
||
|
left: 0;
|
||
|
top: 10px;
|
||
|
margin-left: -9px;
|
||
|
}
|