forked from RECODE01/Notodo-Client
-
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.
enhancement/RECODE01#6/mypage My Page Mock up
- Loading branch information
Showing
2 changed files
with
31 additions
and
8 deletions.
There are no files selected for viewing
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,19 @@ | ||
<!-- 목업작업 --> | ||
<!-- 코딩 완료되면 삭제할 페이지 --> | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Mypage Mock Up</title> | ||
<link rel="stylesheet" href="./mypage.style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
|
||
</div> | ||
</div> | ||
</body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
.test { | ||
width: 100vw; | ||
height: 100vh; | ||
background-color: aqua; | ||
.container { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.test > p { | ||
color: brown; | ||
font-size: 50px; | ||
} | ||
.wrapper { | ||
width: 100%; | ||
max-width: 640px; | ||
min-height: 100vh; | ||
background: #f4f4f4; | ||
|
||
} |