62 lines
802 B
CSS
62 lines
802 B
CSS
:host {
|
|
display: flex;
|
|
}
|
|
|
|
.app-layout {
|
|
height: 150vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-title {
|
|
color:#eabf63;
|
|
}
|
|
|
|
.top-nav {
|
|
line-height: 64px;
|
|
background-color: #2c2c2c;
|
|
}
|
|
|
|
.top-nav a {
|
|
display: block;
|
|
background-color: #4c4c4c;
|
|
}
|
|
|
|
.nav-item {
|
|
color: #eabf63;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.logo {
|
|
float: left;
|
|
height: 64px;
|
|
padding-right: 24px;
|
|
line-height: 64px;
|
|
background: #1c1c1c;
|
|
}
|
|
|
|
.logo img {
|
|
display: inline-block;
|
|
height: 70px;
|
|
width: 130px;
|
|
}
|
|
|
|
.logo h1 {
|
|
display: inline-block;
|
|
margin: 0 0 0 10px;
|
|
color: #eabf63;
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
font-family: Avenir,Helvetica Neue,Arial,Helvetica,sans-serif;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
nz-content {
|
|
padding: 24px 50px;
|
|
}
|
|
|
|
.inner-content {
|
|
padding: 24px;
|
|
background: #fff;
|
|
height: 100%;
|
|
}
|