generator-aristos
Version:
create aristos cms fast with yeoman generator.
140 lines (122 loc) • 2.33 kB
CSS
Body{
display: flex;
}
Main{
display: flex;
flex-direction: column;
width: 100%;
}
/* Admin Buttons */
.btn{
border: 1px solid black;
height: 50px;
margin: 10px;
cursor: pointer;
width: 210px;
}
.btn-text{
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 600;
}
.btn:hover{
background-color: #fff;
color: #eee;
transition: .4s;
}
button-row{
display: flex;
}
/* Admin title stuffs */
.admin-page-title{
font-size: 50px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border-bottom: 2px dashed black;
}
.admin-subheading{
font-size: 30px;
margin: 30px 10px 10px 10px;
padding: 5px;
border-bottom: 1px solid black;
border-top: 2px solid black;
}
.hidden{
visibility: hidden;
}
/* Builder Stuffs */
.page-preview{
padding: 5px;
border: 1px solid black;
height: 300px;
width: 99%;
display: flex;
flex-direction: column;
}
.options-bar{
background: #eee;
display: flex;
height: 200px;
padding: 20px;
position: sticky;
top:0;
z-index: 200;
}
.options-box{
width: 100px;
height: 100px;
border: 1px solid black;
text-align: center;
padding: 20px;
background: white;
margin: 5px;
}
.dynamic-div{
position: relative;
z-index: 100;
display: flex;
width: 100px;
border: 1px solid black;
height: 100%;
}
.dynamic-row{
position: relative;
z-index: 100;
display: flex;
width: 100%;
border: 1px solid black;
height:50px;
}
/* Form stffs */
/* .form-group{
visibility: hidden;
} */
/* popup options menu */
.options-popup-menu{
left: 30%;
top: 25%;
position: fixed;
z-index: 2000;
width: 500px;
height: 500px;
border: 1px solid black;
background: #fff;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
visibility: hidden;
}
.optionsBackground{
position: fixed;
z-index: 1000;
width: 100vw;
height: 100vh;
background: #eee;
opacity: .45;
visibility: hidden;
}
.showMe{
visibility: visible;
}