mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2025-07-13 01:06:06 +00:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
b06c57f1e1 | |||
99ff118174 | |||
054cd87653 | |||
5060c945e6 | |||
d07d6dee09 | |||
0d8228ff05 |
@ -295,6 +295,10 @@ li li {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li > p:last-of-type {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
display: block;
|
display: block;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
@ -976,13 +980,13 @@ body.nav-opened .nav {
|
|||||||
/* Add subtle load-in animation for content on the home page */
|
/* Add subtle load-in animation for content on the home page */
|
||||||
.home-template .page-title {
|
.home-template .page-title {
|
||||||
-webkit-animation: fade-in-down 0.6s;
|
-webkit-animation: fade-in-down 0.6s;
|
||||||
animation: fade-in-down 0.6s;
|
animation: fade-in-down 0.6s both;
|
||||||
-webkit-animation-delay: 0.2s;
|
-webkit-animation-delay: 0.2s;
|
||||||
animation-delay: 0.2s;
|
animation-delay: 0.2s;
|
||||||
}
|
}
|
||||||
.home-template .page-description {
|
.home-template .page-description {
|
||||||
-webkit-animation: fade-in-down 0.9s;
|
-webkit-animation: fade-in-down 0.9s;
|
||||||
animation: fade-in-down 0.9s;
|
animation: fade-in-down 0.9s both;
|
||||||
-webkit-animation-delay: 0.1s;
|
-webkit-animation-delay: 0.1s;
|
||||||
animation-delay: 0.1s;
|
animation-delay: 0.1s;
|
||||||
}
|
}
|
||||||
@ -1015,11 +1019,14 @@ body.nav-opened .nav {
|
|||||||
box-shadow: #FFF 0 0 0 5px;
|
box-shadow: #FFF 0 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body:not(.post-template) .post-title,
|
body:not(.post-template) .post-title {
|
||||||
body:not(.page-template) .post-title {
|
|
||||||
font-size: 3.6rem;
|
font-size: 3.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.page-template .post-title {
|
||||||
|
font-size: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.post-title a {
|
.post-title a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@ -1789,11 +1796,14 @@ body:not(.page-template) .post-title {
|
|||||||
font-size: 0.95em
|
font-size: 0.95em
|
||||||
}
|
}
|
||||||
|
|
||||||
body:not(.post-template) .post-title,
|
body:not(.post-template) .post-title {
|
||||||
body:not(.page-template) .post-title {
|
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.page-template .post-title {
|
||||||
|
font-size: 4.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 2.4em 0;
|
margin: 2.4em 0;
|
||||||
}
|
}
|
||||||
@ -2058,11 +2068,14 @@ body:not(.page-template) .post-title {
|
|||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
body:not(.post-template) .post-title,
|
body:not(.post-template) .post-title {
|
||||||
body:not(.page-template) .post-title {
|
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.page-template .post-title {
|
||||||
|
font-size: 2.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
.post-template .site-footer,
|
.post-template .site-footer,
|
||||||
.page-template .site-footer {
|
.page-template .site-footer {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
|
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
|
||||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
|
<script type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"></script>
|
||||||
{{!-- Ghost outputs important scripts and data with this tag --}}
|
{{!-- Ghost outputs important scripts and data with this tag --}}
|
||||||
{{ghost_foot}}
|
{{ghost_foot}}
|
||||||
{{!-- Fitvids makes video embeds responsive and awesome --}}
|
{{!-- Fitvids makes video embeds responsive and awesome --}}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"name": "casper",
|
"name": "casper",
|
||||||
"description": "The default personal blogging theme for Ghost. Beautiful, minimal and responsive.",
|
"description": "The default personal blogging theme for Ghost. Beautiful, minimal and responsive.",
|
||||||
"demo": "https://demo.ghost.io",
|
"demo": "https://demo.ghost.io",
|
||||||
"version": "1.3.3",
|
"version": "1.3.4",
|
||||||
"engines": {
|
"engines": {
|
||||||
"ghost": ">=0.9.0 <1.0.0"
|
"ghost": ">=0.9.0 <1.0.0"
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user