docs: configurando deploy via ssh para angular
This commit is contained in:
363
src/app/admin/permission-user/permission-user.component.scss
Normal file
363
src/app/admin/permission-user/permission-user.component.scss
Normal file
@@ -0,0 +1,363 @@
|
||||
.wrapper {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.logo {
|
||||
background-image: url("../../../assets/img/logo.svg");
|
||||
background-position: center;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
height: 80px !important;
|
||||
overflow: hidden;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.header-productlist {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 32px 64px;
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
|
||||
/*background: #2d2e83;*/
|
||||
background: #131d52;
|
||||
}
|
||||
|
||||
.header-menu {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
position: static;
|
||||
height: 48px;
|
||||
|
||||
background: #1d1e67;
|
||||
border-radius: 5px;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.name-user {
|
||||
position: static;
|
||||
width: 100%;
|
||||
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
line-height: 19px;
|
||||
/* identical to box height */
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
margin: 0px 0px;
|
||||
}
|
||||
|
||||
.last-access {
|
||||
position: static;
|
||||
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 16px;
|
||||
|
||||
color: #848484;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
margin: 0px 0px;
|
||||
}
|
||||
|
||||
.img-config {
|
||||
position: static;
|
||||
background: #ffffff;
|
||||
flex: none;
|
||||
order: 2;
|
||||
flex-grow: 0;
|
||||
margin: 0px 16px;
|
||||
}
|
||||
|
||||
.center {
|
||||
// modificado
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.img-user {
|
||||
position: static;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
left: 8px;
|
||||
top: 6px;
|
||||
|
||||
background: url("../../../assets/img/img_user.svg");
|
||||
border-radius: 2px;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
margin: 0px 16px;
|
||||
}
|
||||
|
||||
.home-footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 46px;
|
||||
/*background: #2d2e83;*/
|
||||
background: #131d52;
|
||||
}
|
||||
|
||||
.text-footer {
|
||||
position: static;
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 14px;
|
||||
/* identical to box height */
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.main-dashboard {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.new-order {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
position: static;
|
||||
background: #ff9521;
|
||||
border-radius: 5px;
|
||||
/* Inside auto layout */
|
||||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.text-button {
|
||||
position: static;
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
/* identical to box height */
|
||||
|
||||
text-align: center;
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.button-flat {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
position: static;
|
||||
background: #ffffff;
|
||||
border: 1px solid #ef7d00;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
/* Inside auto layout */
|
||||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.side-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 16px;
|
||||
|
||||
position: static;
|
||||
height: 100%;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
|
||||
background: #ffffff;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
align-self: stretch;
|
||||
flex-grow: 0;
|
||||
margin: 0px 0px;
|
||||
}
|
||||
|
||||
.text-button-flat {
|
||||
position: static;
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
/* identical to box height */
|
||||
|
||||
text-align: center;
|
||||
|
||||
color: #ef7d00;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.button-flat-blue {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 0px;
|
||||
|
||||
position: static;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
|
||||
background: #ffffff;
|
||||
border: 1px solid #2d2e83;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 1;
|
||||
align-self: stretch;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.text-button-flat-blue {
|
||||
position: static;
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
/* identical to box height */
|
||||
|
||||
text-align: center;
|
||||
|
||||
color: #2d2e83;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.noData {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-muted{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
/* Responsividade */
|
||||
|
||||
/* Smartphones */
|
||||
@media (max-width: 575.98px) {
|
||||
.btnSbtn-formearch {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.title-page{
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.noData {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.noData p {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Tablets */
|
||||
@media (max-width: 991.98px) {
|
||||
.btn-form {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.title-page{
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktops */
|
||||
@media (min-width: 992px) {
|
||||
.btn-form {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
.title-page{
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user