Vulcan/packages/example-membership/lib/stylesheets/style.scss
2017-07-26 08:02:16 +09:00

162 lines
No EOL
2.2 KiB
SCSS

body{
background: #FAFAFA;
}
.main, .header{
width: 100%;
margin: 20px auto;
max-width: 1000px;
}
.header-wrapper{
background: white;
border-bottom: 1px #E7E7E7 solid;
margin-bottom: 60px;
padding-top: 1px;
}
.header{
display: flex;
justify-content: space-between;
align-items: center;
}
.logo{
width: 200px;
margin: 0;
img{
display: block;
width: 100%;
}
}
.header-nav{
display: flex;
>div{
margin-left: 20px;
}
}
.header-accounts{
.modal-trigger{
display: inline-block;
}
}
.pics-list-grid{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.pics-item{
width: 30%;
}
}
.pics-item{
img{
width: 100%;
}
position: relative;
margin-bottom: 40px;
&:hover{
.pics-meta{
opacity: 1;
background: rgba(0,0,0,0.65);
}
}
cursor: pointer;
}
.pics-meta{
display: flex;
opacity: 0;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: white;
pointer-events: none;
}
.pics-comment-count{
}
.pics-image, .pics-details-image{
img{
display: block;
width: 100%;
}
}
.pics-details-modal{
.modal-body{
padding: 0;
}
}
.pics-details{
display: flex;
.pics-info{
border-bottom: 1px solid #EFEFEF;
padding-bottom: 20px;
margin-bottom: 20px;
.modal-trigger{
display: inline-block;
}
}
.pics-author{
font-size: 16px;
font-weight: bold;
}
}
.pics-details-sidebar{
width: 100%;
max-width: 300px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
.icon{
opacity: 0.2;
&:hover{
opacity: 1;
cursor: pointer;
}
}
}
.pics-list-footer{
display: flex;
justify-content: center;
}
.load-more{
background: #3897f0;
color: white;
border-radius: 3px;
display: inline-block;
text-align: center;
padding: 10px 20px;
&:hover{
text-decoration: none;
color: white;
}
}
.no-more{
text-align: center;
}
.footer{
padding: 20px 0;
text-align: center;
}
.stripe-checkout{
margin-bottom: 40px;
display: flex;
justify-content: center;
align-items: center;
}