mirror of https://github.com/apache/cloudstack.git
28 lines
555 B
SCSS
28 lines
555 B
SCSS
@mixin csui-header {
|
|
@include background(
|
|
url(csui/img/overlay-pattern.png) repeat,
|
|
url(csui/img/header/gradient.png) no-repeat
|
|
);
|
|
|
|
background-size: auto, cover;
|
|
|
|
.logo {
|
|
background: url(csui/img/logo-main.png) no-repeat left;
|
|
width: 1280px;
|
|
height: 80px;
|
|
margin: auto;
|
|
background-size: 300px;
|
|
}
|
|
|
|
.controls {
|
|
@include linear-gradient(#525252, #262626);
|
|
@include row;
|
|
|
|
width: 1280px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
color: white;
|
|
border: 1px solid gray;
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
} |