-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat : index페이지 초안 * feat : container 크기 고정에 따른 변동 * feat : header랑 index * feat : 메인페이지 끝 * feat : layout변경
- Loading branch information
1 parent
e82c1a8
commit ede67b3
Showing
8 changed files
with
217 additions
and
17 deletions.
There are no files selected for viewing
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
swiper-container { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
swiper-slide { | ||
max-height: 400px; | ||
text-align: center; | ||
font-size: 18px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: transparent; | ||
} | ||
|
||
swiper-slide div.box { | ||
width: 100%; | ||
height: 100%; | ||
border-radius: 30%; | ||
overflow: hidden; | ||
} | ||
|
||
swiper-slide div.box img { | ||
display: block; | ||
width: 100%; | ||
height: 100%; | ||
object-fit: cover; | ||
} | ||
|
||
div.auction-container { | ||
margin-top: 100px; | ||
} | ||
|
||
div.title-sector { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
div.title-sector>button.more { | ||
border-radius: 100px; | ||
background: #18ACDB; | ||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset; | ||
color: #FFF; | ||
text-align: center; | ||
font-family: Sigmar One; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html xmlns:th="http://www.thymeleaf.org"> | ||
<header class="main-header" th:fragment="headerFragment"> | ||
<div style="background-color: rgba(186,255,250,0.41)"> | ||
header.html | ||
<div class="row text-center"> | ||
<div class="col"></div> | ||
<div class="col"></div> | ||
<div class="col"> | ||
<div class="title"> | ||
<img src="/static/asset/logo.png" alt="logo" height="100px"/> | ||
</div> | ||
</div> | ||
<div class="col"></div> | ||
<div class="col before-login-area" style="display: flex; align-items: center;"> | ||
<div class="row" > | ||
<div class="col"> | ||
<button type="button" class="btn btn-primary before-login-btn" onclick="">LOGIN</button> | ||
</div> | ||
<div class="col"> | ||
<button type="button" class="btn btn-primary before-login-btn" onclick="">JOIN</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters