first commit
This commit is contained in:
410
public/assets/scss/pages/_blog.scss
Normal file
410
public/assets/scss/pages/_blog.scss
Normal file
@@ -0,0 +1,410 @@
|
||||
/* Blog Area Start */
|
||||
.blog-page{
|
||||
padding: 100px 0px 100px;
|
||||
.single-blog{
|
||||
margin-bottom: 26px;
|
||||
&.blog-details{
|
||||
padding: 0px 20px 30px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pagination{
|
||||
margin-top: 30px;
|
||||
display: block;
|
||||
.page-item{
|
||||
display: inline-block;
|
||||
.page-link{
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
line-height: 35px;
|
||||
font-size: 14px;
|
||||
margin: 0px 3px 0px;
|
||||
padding: 0px;
|
||||
font-weight: 600;
|
||||
background: none;
|
||||
border: 0px;
|
||||
color: #555;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
transition: $transition;
|
||||
&.active,
|
||||
&:hover
|
||||
{
|
||||
background: $base-color;
|
||||
border: 1px solid $base-color;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.categori-widget{
|
||||
padding: 22px 30px 25px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.title{
|
||||
font-size: 21px;
|
||||
font-weight: 600;
|
||||
line-height: 31px;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.20);
|
||||
padding-bottom: 17px;
|
||||
margin-bottom: 13px;
|
||||
text-align: center;
|
||||
}
|
||||
.cat-list{
|
||||
padding-top: 2px;
|
||||
display: block;
|
||||
li{
|
||||
margin-bottom: 5px;
|
||||
&:last-child{
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
a {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
p{
|
||||
line-height: 26px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0px;
|
||||
color: $heading-color;
|
||||
transition: $transition;
|
||||
}
|
||||
.count{
|
||||
font-size: 10px;
|
||||
line-height: 10px;
|
||||
font-weight: 600;
|
||||
background: #777;
|
||||
color: #fff;
|
||||
padding: 4px 8px;
|
||||
border-radius: 50px;
|
||||
align-self: center;
|
||||
}
|
||||
&:hover {
|
||||
p{
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.latest-post-widget {
|
||||
margin-top: 30px;
|
||||
padding: 22px 30px 28px;
|
||||
border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.title {
|
||||
font-size: 21px;
|
||||
font-weight: 600;
|
||||
line-height: 31px;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.20);
|
||||
padding-bottom: 11px;
|
||||
margin-bottom: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
.post-list {
|
||||
padding-left: 0px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 18px;
|
||||
li {
|
||||
list-style: none;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 10px;
|
||||
&:last-child {
|
||||
border-bottom: 0px;
|
||||
margin-bottom: 0px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
.post {
|
||||
display: flex;
|
||||
.post-img {
|
||||
margin-right: 15px;
|
||||
display: flex;
|
||||
img {
|
||||
align-self: center;
|
||||
width: 100%;
|
||||
width: 60px;
|
||||
}
|
||||
}
|
||||
.post-details {
|
||||
flex: 1;
|
||||
line-height: 20px;
|
||||
.post-title{
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0px;
|
||||
transition: $transition;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.newsletter-widget{
|
||||
margin-top: 30px;
|
||||
padding: 22px 30px 30px;
|
||||
border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.title{
|
||||
font-size: 21px;
|
||||
font-weight: 600;
|
||||
line-height: 31px;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.20);
|
||||
padding-bottom: 12px;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
form{
|
||||
.input-field{
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
padding: 0px 20px;
|
||||
border-radius: 3px;
|
||||
font-size: 14px;
|
||||
background: none;
|
||||
}
|
||||
.base-btn1{
|
||||
margin-top: 30px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.single-blog-details{
|
||||
padding: 30px 30px 30px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.img{
|
||||
position: relative;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.content{
|
||||
.top-meta{
|
||||
margin-top: 23px;
|
||||
margin-bottom: 8px;
|
||||
li{
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
&:last-child{
|
||||
margin-right: 0px;
|
||||
}
|
||||
p{
|
||||
padding-left: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.title{
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 20px;
|
||||
transition: $transition;
|
||||
}
|
||||
blockquote{
|
||||
margin: 22px 0px 22px;
|
||||
display: block;
|
||||
padding: 34px 40px 37px;
|
||||
border-left: 4px solid #777;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-weight: 600;
|
||||
box-shadow: $box-shadow;
|
||||
p{
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
ul{
|
||||
margin-bottom: 15px;
|
||||
li{
|
||||
p{
|
||||
margin-bottom: 0px;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
padding-left: 30px;
|
||||
position: relative;
|
||||
i{
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 4px;
|
||||
color: #777;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.comment-area{
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
padding: 22px 30px 30px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.title{
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.comment-box-area{
|
||||
padding-left: 0px;
|
||||
margin-bottom: 0px;
|
||||
li{
|
||||
list-style: none;
|
||||
margin-bottom: 30px;
|
||||
padding: 30px 30px 25px;
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
.comment-box{
|
||||
position: relative;
|
||||
.left{
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
text-align: center;
|
||||
.img{
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
margin-bottom: 19px;
|
||||
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
|
||||
img{
|
||||
width: 100%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
.replay{
|
||||
padding: 3px 20px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
background: $base-color;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.right{
|
||||
margin-left: 100px;
|
||||
.name{
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #000000;
|
||||
line-height: 24px;
|
||||
}
|
||||
.date{
|
||||
font-size: 14px;
|
||||
font-weight: 24px;
|
||||
color: #888;
|
||||
}
|
||||
.text{
|
||||
p{
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.replay-comment{
|
||||
margin-left: 100px;
|
||||
margin-top: 26px;
|
||||
}
|
||||
}
|
||||
.replay-form{
|
||||
margin-left: 0px;
|
||||
padding:30px 0px 5px;
|
||||
position: relative;
|
||||
.replay-form-close{
|
||||
position: absolute;
|
||||
top: 22px;
|
||||
right: -7px;
|
||||
font-weight: 700;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.25);
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
line-height: 23px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
&:hover{
|
||||
background: $base-color;
|
||||
border-color: transparent;
|
||||
color:#fff;
|
||||
}
|
||||
}
|
||||
.input-field{
|
||||
background: none;
|
||||
border: 1px solid #e5e9f4;
|
||||
height: 60px;
|
||||
font-size: 14px;
|
||||
height: 100px;
|
||||
padding: 10px 20px;
|
||||
resize: none;
|
||||
}
|
||||
.replay-comment-btn{
|
||||
border: 0px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
margin-bottom: 0px;
|
||||
.comment-box{
|
||||
.right{
|
||||
border-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
.write-comment{
|
||||
border-radius: 10px;
|
||||
box-shadow: $box-shadow;
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
padding: 22px 30px 30px;
|
||||
.title{
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.input-field{
|
||||
background: none;
|
||||
}
|
||||
.base-btn1{
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
/* Blog Area End */
|
||||
1309
public/assets/scss/pages/_home-page.scss
Normal file
1309
public/assets/scss/pages/_home-page.scss
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user