42 lines
754 B
CSS
Executable File
42 lines
754 B
CSS
Executable File
header {
|
|
padding-top: 18px;
|
|
line-height: 48px;
|
|
text-align: center;
|
|
background: -moz-linear-gradient(left, #f5364c, #e51329);
|
|
/*Mozilla*/
|
|
background: -webkit-gradient(linear, 0 50%, 100% 50%, from(#f5364c), to(#e51329));
|
|
/*Old gradient for webkit*/
|
|
background: -webkit-linear-gradient(left, #f5364c, #e51329);
|
|
/*new gradient for Webkit*/
|
|
background: -o-linear-gradient(left, #f5364c, #e51329);
|
|
/*Opera11*/
|
|
color: white;
|
|
font-size: 18px;
|
|
z-index: 10;
|
|
position: fixed;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
header .nav{
|
|
color: white;
|
|
/*text-align: center;*/
|
|
}
|
|
.mui-bar{
|
|
height: 66px;
|
|
color: white;
|
|
}
|
|
|
|
.mui-title{
|
|
color: white;
|
|
bottom: 0;
|
|
}
|
|
|
|
a{
|
|
color: white;
|
|
}
|
|
|
|
.mui-bar-nav{
|
|
box-shadow: 0 0 0;
|
|
}
|