Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion static/users/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,27 @@
text-align: center;
}

.login_title_psy p {
.login_typing_text_ksy {
font-family: var(--main_font);
color: var(--title_color);
font-size: 14px;
font-weight: bold;
display: inline-block;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid var(--title_color); /* 커서 효과 */
animation: typing_psy 3s steps(22) forwards, cursor_remove_psy 0s forwards;
animation-delay: 0s, 3s;
}

@keyframes typing_psy {
from { width: 0; }
to { width: 100%; }
}

@keyframes cursor_remove_psy {
from { border-right: 2px solid var(--title_color); }
to { border-right: none; }
}

.login_title_psy h1 {
Expand Down
16 changes: 15 additions & 1 deletion static/users/signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,27 @@
text-align: center;
}

.signup_title_psy p {
.signup_typing_text_ksy {
font-family: var(--main_font);
color: var(--title_color);
font-size: 14px;
font-weight: bold;
display: inline-block;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid var(--title_color); /* 커서 효과 */
animation: typing_psy 3s steps(22) forwards, cursor_remove_psy 0s forwards;
animation-delay: 0s, 3s;
}
@keyframes typing_psy {
from { width: 0; }
to { width: 100%; }
}

@keyframes cursor_remove_psy {
from { border-right: 2px solid var(--title_color); }
to { border-right: none; }
}
.signup_title_psy h1 {
font-size: 32px;
font-family: var(--logo_font);
Expand Down
4 changes: 2 additions & 2 deletions templates/users/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<div class="login_wrapper_psy">

<div class="login_title_psy">
<p>인생네컷으로 만드는 나만의 일기장</p>
<h1>Pictory</h1>
<p class="login_typing_text_ksy">인생네컷으로 만드는 나만의 일기장</p>
<h1 class="login_title_pictory_ksy">Pictory</h1>
</div>

<div class="login_container_psy">
Expand Down
2 changes: 1 addition & 1 deletion templates/users/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class="signup_wrapper_psy">

<div class="signup_title_psy">
<p>인생네컷으로 만드는 나만의 일기장</p>
<p class="signup_typing_text_ksy">인생네컷으로 만드는 나만의 일기장</p>
<h1>Pictory</h1>
</div>

Expand Down
Loading