97 lines
1.4 KiB
CSS
97 lines
1.4 KiB
CSS
body {
|
|
margin: 0;
|
|
background-color: #222;
|
|
|
|
color: #CCC;
|
|
}
|
|
|
|
.headerdiv {
|
|
background-color: #333;
|
|
display: flex;
|
|
border-bottom: 1px solid #111;
|
|
box-shadow: 0 0 8px #000000;
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.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;
|
|
|
|
background-color: #111;
|
|
color: #CCC;
|
|
border: 1px solid #CCC;
|
|
font-weight: bold;
|
|
|
|
margin: 5px 10px;
|
|
padding: 2px 5px;
|
|
min-width: 64px;
|
|
vertical-align: center;
|
|
text-align: center;
|
|
|
|
flex: initial;
|
|
}
|
|
|
|
.tab_github {
|
|
background-color: #4078c0;
|
|
border: 1px solid #111;
|
|
color: black;
|
|
}
|
|
|
|
.tab_split {
|
|
flex: auto;
|
|
}
|
|
|
|
.tab:hover {
|
|
cursor: pointer;
|
|
background-color: #333;
|
|
}
|
|
|
|
.tab_github:hover {
|
|
background-color: #c9510c;
|
|
color: black;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
.headerdiv {
|
|
position: static;
|
|
}
|
|
|
|
.logowrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.headerdiv {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.tabrow {
|
|
flex-direction: column;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|