Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
62 lines
1000 B
CSS
62 lines
1000 B
CSS
#stopwatch {
|
|
position:absolute;
|
|
font-size:11px;
|
|
right:95px;
|
|
top:11px;
|
|
background: url("grfx/g3_buzzer_display.png") no-repeat;
|
|
color:#51534A;
|
|
overflow:hidden;
|
|
width:224px;
|
|
height:69px;
|
|
display:block;
|
|
z-index:20;
|
|
|
|
}
|
|
|
|
#stopwatch .watch {
|
|
position:relative;
|
|
color:red;
|
|
top:11px;
|
|
font-family:arial, sans-serif;
|
|
font-size:35px;
|
|
width:205px;
|
|
height:52px;
|
|
padding:0;
|
|
overflow:hidden;
|
|
line-height:13px;
|
|
}
|
|
|
|
#stopwatch_ticker {
|
|
position:absolute;
|
|
font-size:11px;
|
|
right:97px;
|
|
top:46px;
|
|
color:#51534A;
|
|
z-index:60;
|
|
}
|
|
|
|
#stopwatch_ticker ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
#stopwatch_ticker ul li {
|
|
text-align:center;
|
|
width:220px;
|
|
height:15px;
|
|
margin-left:-40px;
|
|
margin-top:-3px;
|
|
padding:0;
|
|
overflow:hidden;
|
|
}
|
|
|
|
*+html #stopwatch_ticker ul li {
|
|
margin-top:-3px;
|
|
}
|
|
|
|
#stopwatch_edit_comment {
|
|
position: absolute;
|
|
right: 105px;
|
|
top: 55px;
|
|
z-index: 70;
|
|
display:hidden;
|
|
} |