1
0
www.mikescher.com/www/data/css/styles.css

213 lines
3.4 KiB
CSS
Raw Normal View History

2017-10-22 15:29:45 +02:00
body {
margin: 0;
2017-10-29 18:52:46 +01:00
background-color: #EEE;
2017-10-22 18:03:05 +02:00
color: #CCC;
2017-10-22 15:29:45 +02:00
}
2017-10-29 18:52:46 +01:00
#content {
padding-top: 64px;
display: flex;
justify-content: center;
}
2017-10-22 15:29:45 +02:00
.headerdiv {
2017-10-22 18:03:05 +02:00
background-color: #333;
2017-10-22 15:29:45 +02:00
display: flex;
2017-10-22 18:03:05 +02:00
border-bottom: 1px solid #111;
box-shadow: 0 0 8px #000000;
position: fixed;
width: 100%;
2017-10-22 15:29:45 +02:00
}
.headerdiv .logowrapper {
flex: initial;
margin: 0;
padding: 0;
height: 42px;
}
.headerdiv > .logowrapper > .logo {
height: 30px;
margin: 4px 0px 8px 6px;
flex: initial;
}
.tabrow {
display: flex;
flex: auto;
}
.tab {
display: flex;
justify-content: center;
align-items: center;
2017-10-29 18:52:46 +01:00
background-color: #222;
2017-10-22 18:03:05 +02:00
color: #CCC;
2017-10-29 18:52:46 +01:00
border-left: 1px solid #000;
border-right: 1px solid #000;
2017-10-22 15:29:45 +02:00
font-weight: bold;
2017-10-29 18:52:46 +01:00
margin: 0px 0px 0px 20px;
2017-10-22 18:03:05 +02:00
padding: 2px 5px;
2017-10-22 15:29:45 +02:00
min-width: 64px;
text-align: center;
flex: initial;
}
2017-10-29 18:52:46 +01:00
.tab:hover {
cursor: pointer;
background-color: #555;
}
2017-10-22 15:29:45 +02:00
.tab_github {
background-color: #4078c0;
2017-10-29 18:52:46 +01:00
border-left: 1px solid #111;
border-right: 1px solid #111;
2017-10-22 15:29:45 +02:00
color: black;
}
.tab_split {
flex: auto;
}
.tab_github:hover {
background-color: #c9510c;
color: black;
}
2017-10-29 18:52:46 +01:00
@media (max-width: 850px) {
2017-10-22 15:29:45 +02:00
2017-10-22 18:03:05 +02:00
.headerdiv {
position: static;
}
2017-10-22 15:29:45 +02:00
.logowrapper {
display: flex;
align-items: center;
justify-content: center;
}
.headerdiv {
flex-direction: column;
}
.tabrow {
flex-direction: column;
}
2017-10-29 18:52:46 +01:00
.tab {
border: 1px solid #000;
font-weight: bold;
margin: 5px 10px;
}
#content {
padding-top: 0px;
}
}
/*############################################################################*/
.euler_pnl_base {
display: inline-flex;
flex-direction: column;
border: 1px solid #AAA;
border-radius: 5px 5px 0 0;
margin: 15px;
}
.euler_pnl_header {
display: flex;
align-items: center;
justify-content: center;
2017-11-08 17:39:50 +01:00
2017-10-29 18:52:46 +01:00
padding: 4px;
background: #AAA;
2017-11-08 17:39:50 +01:00
}
.euler_pnl_header a {
color: #222;
font-weight: bold;
text-decoration: none;
2017-10-29 18:52:46 +01:00
font-size: large;
}
2017-11-08 17:39:50 +01:00
.euler_pnl_header a:hover {
text-decoration: underline;
}
2017-10-29 18:52:46 +01:00
.euler_pnl_content {
display: flex;
flex-direction: column;
background: #DDD;
padding: 6px;
}
.euler_pnl_row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
@media (max-width: 850px) { .euler_pnl_row { flex-direction: column; } }
.euler_pnl_row2 {
display: flex;
flex-direction: row;
}
.euler_pnl_cell {
width: 24px;
height: 24px;
font-size: 11px;
margin: 3px;
border: 1px solid #333;
display: flex;
align-items: center;
justify-content: center;
}
2017-11-08 17:39:50 +01:00
.euler_pnl_cell:hover {
box-shadow: 0 0 4px #000000;
}
2017-10-29 18:52:46 +01:00
.euler_pnl_cell a {
color: black;
text-decoration: none;
2017-11-08 17:39:50 +01:00
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
2017-10-29 18:52:46 +01:00
}
.euler_pnl_cell a:hover {
color: black;
text-decoration: none;
}
.euler_pnl_cell a:visited {
color: black;
text-decoration: none;
2017-10-22 15:29:45 +02:00
}
2017-10-29 18:52:46 +01:00
.euler_pnl_celltime_perfect { background: #98C398; }
.euler_pnl_celltime_good { background: #B9D89B; }
.euler_pnl_celltime_ok { background: #D8D898; }
.euler_pnl_celltime_bad { background: #D8B298; }
.euler_pnl_celltime_fail { background: #D89D9D; }
.euler_pnl_cell_notexist { background: #CCCCCC; }
2017-10-22 15:29:45 +02:00