Skip to content

Commit

Permalink
Change UI
Browse files Browse the repository at this point in the history
  • Loading branch information
brainer3220 committed Dec 18, 2023
1 parent 211821d commit afe0f3e
Showing 1 changed file with 65 additions and 20 deletions.
85 changes: 65 additions & 20 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,28 @@ <h1>ํ•™๊ธฐ๊ฐ€ ์‹œ์ž‘ํ•˜๋Š” ๋‚ ๊ณผ ๋๋‚˜๋Š” ๋‚ ์„ ๋„ฃ์–ด์ฃผ์„ธ์š”.</h1>
<!-- Interaction area -->
<form action="/dwn_cal" method="get">
<div class="oui-bubble">
<p class="oui-overlay-bubble-item">์—๋ธŒ๋ฆฌํƒ€์ž„ ๊ณต๊ฐœ ์‹œ๊ฐ„ํ‘œ</p>
<div class="field clearfix date-range-start date-wrapper">
<div class="label">
<label for="start_date">์‹œ์ž‘ํ•˜๋Š” ๋‚ </label>
</div>
<div class="input">
<input type="date" name="start_date" value="2023-12-22" id="start_date" class="input-text"
placeholder="dd/mm/yyyy"
required="required">
</div>
<div class="large-font">
<label for="start_date">์‹œ์ž‘ํ•˜๋Š” ๋‚ </label>
</div>
<div class="field clearfix date-range-start date-wrapper">
<div class="label">
<label for="end_date">๋๋‚˜๋Š” ๋‚ </label>
</div>
<div class="input">
<input type="date" name="end_date" value="2024-02-15" id="end_date" class="input-text"
placeholder="dd/mm/yyyy"
required="required">
</div>
<div class="input">
<input type="date" name="start_date" value="2023-12-22" id="start_date" class="input-text"
placeholder="dd/mm/yyyy"
required="required">
</div>
<div class="large-font">
<label for="end_date">๋๋‚˜๋Š” ๋‚ </label>
</div>
<div class="input">
<input type="date" name="end_date" value="2024-02-15" id="end_date" class="input-text"
placeholder="dd/mm/yyyy"
required="required">
</div>
<div class="large-font">
<label for="schd_url">์—๋ธŒ๋ฆฌํƒ€์ž„ ๊ณต๊ฐœ ์‹œ๊ฐ„ํ‘œ</label>
</div>
<ul>
<input type="url" name="schd_url" id="schd_url" placeholder="https://everytime.kr/@ABcD12efgHijkL"
<input type="url" name="schd_url" id="schd_url"
placeholder="https://everytime.kr/@ABcD12efgHijkL"
required="required"/>
</button>
</ul>
Expand Down Expand Up @@ -234,4 +233,50 @@ <h1>ํ•™๊ธฐ๊ฐ€ ์‹œ์ž‘ํ•˜๋Š” ๋‚ ๊ณผ ๋๋‚˜๋Š” ๋‚ ์„ ๋„ฃ์–ด์ฃผ์„ธ์š”.</h1>
margin: auto;
margin-top: 20px;
}

.oui-bubble {
display: flex;
flex-direction: column;
}

h1 {
color: #5C6BC0;
text-align: center;
margin-bottom: 40px;
}

.field {
margin-bottom: 20px;
}

label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}

input[type="date"],
input[type="url"],
a {
display: block;
margin: 15px 0;
color: #5C6BC0;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

.large-font, .field input {
text-align: left;
}

.label label {
width: 100%;
}

.large-font {
font-size: 20px; /* Adjust this value as needed */
}
</style>

0 comments on commit afe0f3e

Please sign in to comment.