Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
release: v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
opdev1004 committed Feb 8, 2024
1 parent 71df524 commit ffdbf0a
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 62 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,12 @@ Blogger Theme built with Vue and Vuetify

## Notice

### Releasing version 0.1.2
### Releasing version 0.1.3

Updating how to use code style

### Releasing version 0.1.1

The design has been updated.

### Releasing version 0.1.0

The design has been updated. Popular posts and Featured post have been removed from vue components. You can use Popular posts and Featured posts from theme system instead. But you have to style them yourself.
- Fixed bug on header.
- Removed pointless animation on multiple posts page.
- Added body background color variables
- Now title get smaller for non-desktop view.

## Example

Expand Down
15 changes: 5 additions & 10 deletions lang/ko/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,12 @@ Vue와 Vuetify로 만든 블로거 테마

## 공지

### 0.1.2 버전을 릴리즈 합니다
### 0.1.3 버전을 릴리즈 합니다

코드 스타일 사용 방법을 변경했습니다.

### 0.1.1 버전을 릴리즈 합니다

디자인이 변경되었습니다.

### 0.1.0 버전을 릴리즈 합니다

디자인이 변경되었습니다. 그리고 인기 포스트(Popular posts)와 추천 포스트(Featured post)가 Vue 컴포넌트에서 삭제 되었습니다. 해당 컴포넌트들이 필요하다면 테마 시스템을 통해 추가해주세요. 단, 직접 스타일 해야합니다.
- 헤더의 버튼 버그를 수정했습니다
- 의미 없는 애니메이션을 제거 했습니다
- 바디 백그라운드 색 변수를 추가했습니다
- 이제 블로그 타이틀이 데스크탑이 아닌 환경에서 살짝 작아집니다.

## 다른 언어:

Expand Down
92 changes: 50 additions & 42 deletions src/vuetilog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@
-----------------------------------------------
*/
/*
<Group description="Header">
<Variable name="header.background.color" description="Header Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="header.font.color" description="Header Font Color" type="color" default="#263238" value="#263238"/>
<Group description="Main">
<Variable name="main.background.color" description="Header Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="main.font.color" description="Header Font Color" type="color" default="#263238" value="#263238"/>
</Group>
<Group description="Body">
<Variable name="body.background.color" description="Body Background Color" type="color" default="#E8F5E9" value="#E8F5E9"/>
<Variable name="body.font.color" description="Body Font Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
</Group>
<Group description="Sidebar">
<Variable name="sidebar.background.color" description="Sidebar Background Color" type="color" default="#B2DFDB" value="#B2DFDB"/>
<Variable name="sidebar.background.color" description="Sidebar Background Color" type="color" default="#212121" value="#212121"/>
<Variable name="sidebar.font.color" description="Sidebar Font Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
</Group>
<Group description="Code">
Expand All @@ -71,24 +75,24 @@
width: auto;
height: auto;
}
pre {
background-color: $(code.background.color) !important;
color: $(code.font.color) !important;
border: 1px solid $(code.border.color);
pre {
background-color: $(code.background.color) !important;
color: $(code.font.color) !important;
border: 1px solid $(code.border.color);
overflow: auto;
white-space: pre-wrap;
word-wrap: break-word;
padding: 20px;
padding: 20px;
word-break: normal;
}
code {
font-family: 'Noto Sans Mono', monaco, Consolas, "Lucida Console", Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
color: $(code.font.color) !important;
background-color: $(code.background.color) !important;
}
code p {
margin-bottom: 0px !important;
}
}
code {
font-family: 'Noto Sans Mono', monaco, Consolas, "Lucida Console", Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
color: $(code.font.color) !important;
background-color: $(code.background.color) !important;
}
code p {
margin-bottom: 0px !important;
}
#init-wrapper {
display: none;
}
Expand All @@ -102,8 +106,8 @@
}
header {
top: 20px !important;
background-color: $(header.background.color) !important;
color: $(header.font.color) !important;
background-color: $(main.background.color) !important;
color: $(main.font.color) !important;
left: calc(50% - 230px) !important;
width: 760px;
}
Expand All @@ -119,10 +123,10 @@
width: 100% !important;
}
header .v-icon {
color: $(header.font.color) !important;
color: $(main.font.color) !important;
}
header a {
color: $(header.font.color) !important;
color: $(main.font.color) !important;
}
header .SearchBar .v-input {
width: 700px !important;
Expand Down Expand Up @@ -210,19 +214,15 @@
text-overflow: ellipsis !important;
}
#bg-photo {
height: 40vh;
}
main {
background-color: $(sidebar.background.color) !important;
color: $(sidebar.font.color) !important;
background-color: $(body.background.color) !important;
color: $(body.font.color) !important;
}
main .container {
max-width: 780px;
min-height: 100vh;
margin-top: -250px;
margin-top: 30px;
padding: 10px;
}
Expand Down Expand Up @@ -263,11 +263,11 @@
}
main .container .post-outer {
color: $(header.font.color) !important;
color: $(main.font.color) !important;
}
main .container .post-outer .post-single {
background-color: $(header.background.color) !important;
background-color: $(main.background.color) !important;
padding: 60px 30px 100px 30px;
}
Expand All @@ -277,15 +277,12 @@
}
main .container .post-outer .post-multiple {
background-color: $(header.background.color) !important;
background-color: $(main.background.color) !important;
padding: 30px 40px 40px 40px;
margin-bottom: 40px;
transition: all 0.1s ease;
transform: scale(1);
}
main .container .post-outer .post-multiple:hover {
transform: scale(1.02) perspective(1px)
}
main .container .post-outer .post .separator a {
Expand Down Expand Up @@ -319,7 +316,7 @@
{
text-decoration: none;
}
/* fill: $(header.font.color); */
/* fill: $(main.font.color); */
main .container .sharing svg
{
fill: #FFFFFF;
Expand Down Expand Up @@ -382,7 +379,7 @@
/* Comments */
main .comments {
margin-top: 30px;
color: $(header.font.color) !important;
color: $(main.font.color) !important;
}
main .comments .title
Expand Down Expand Up @@ -476,6 +473,10 @@
main .comments .loadmore {
display: none;
}
main .comments #comment-editor
{
border-radius: 25px !important;
}
main .comments .blogger-comment-from-post {
margin: 20px auto;
}
Expand All @@ -495,13 +496,17 @@
width: 100vw;
}
header .blog-title {
font-size: 16px !important;
}
header .SearchBar .v-input {
width: calc(100vw - 80px) !important;
}
main {
color: $(header.font.color) !important;
background-color: $(header.background.color) !important;
color: $(main.font.color) !important;
background-color: $(main.background.color) !important;
padding-top: 80px !important;
top: 0 !important;
}
Expand Down Expand Up @@ -539,7 +544,7 @@
main .comments .title
{
color: $(header.font.color) !important;
color: $(main.font.color) !important;
margin-bottom: 20px;
}
Expand Down Expand Up @@ -1529,7 +1534,7 @@
<b:section class='BottomSection' id='BottomSection' name='Bottom Section' showaddelement='yes'>
<b:widget id='PageList1' locked='true' title='' type='PageList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='pageListJson'><![CDATA[{"0":{"href":"https://vuetilog.blogspot.com/","position":0,"title":"Home"},"3407789932173757444":{"href":"https://vuetilog.blogspot.com/p/about.html","position":2,"title":"About"},"link0":{"href":"https://github.com/opdev1004/vuetilog","position":1,"title":"Github"}}]]></b:widget-setting>
<b:widget-setting name='pageListJson'><![CDATA[{"3407789932173757444":{"href":"https://vuetilog.blogspot.com/p/about.html","position":1,"title":"About"},"link0":{"href":"https://github.com/opdev1004/vuetilog","position":0,"title":"Github"}}]]></b:widget-setting>
<b:widget-setting name='homeTitle'>Home</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
Expand Down Expand Up @@ -1638,7 +1643,6 @@
<label-section/>
<nav-bottom/>
</v-navigation-drawer>
<img id='bg-photo' src='https://themes.googleusercontent.com/image?id=iOjEWmpWlNVmx91RAaWC3irZSyq8cu05pASFz84khXxbIM83x8QP6Hnw7ZIDcZFvcAGSBpGCNsBC'/>
<v-main>
<v-container fluid='true'>
<main-content-top/>
Expand Down Expand Up @@ -1825,6 +1829,10 @@
this.drawer = true;
this.desktop = true;
}
else
{
this.desktop = false;
}
window.addEventListener('resize', () => {
this.desktop = window.innerWidth > 1263;
Expand Down

0 comments on commit ffdbf0a

Please sign in to comment.