Skip to content

Commit

Permalink
upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JadeMin committed Jun 24, 2024
1 parent ea81268 commit 7afc340
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 19 deletions.
1 change: 0 additions & 1 deletion src/app/components/footer/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ footer {
font-size: 12px;

#link {
display: flex;
}

#note {
Expand Down
23 changes: 19 additions & 4 deletions src/app/components/navbar/index.css
Original file line number Diff line number Diff line change
@@ -1,41 +1,49 @@
nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;

padding: 14px 30px 14px 30px;
padding: 14px 30px;

background-color: #f5f5f5;

#logo img {
display: flex;
align-content: center;
justify-content: center;
align-items: center;

width: 60px;
}

#search {
display: flex;
align-content: center;
justify-content: center;
align-items: center;

input {
width: 310px;
height: 40px;

border: 2px solid black;
border-right-width: 0;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;

border-right-width: 0;
}
button {
width: 40px;
height: 40px;

background-color: #cdefff;

border: 2px solid black;
border-left-width: 1px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-left-width: 1px;

cursor: pointer;

Expand All @@ -47,7 +55,14 @@ nav {

#profile {
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
align-items: center;

svg {
margin: 0 auto;
}
}
}

Expand Down
31 changes: 24 additions & 7 deletions src/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,34 @@



*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Noto Sans KR", sans-serif;

input, textarea, button {
font-family: "Noto Sans KR", sans-serif;
}

.divider {
margin: 0 7px;

button {
background: none;
color: inherit;
border: none;
cursor: pointer;
outline: inherit;
}

li {
list-style: none;
}

input:focus {
outline: none;
}

input[type="number"] {
Expand All @@ -20,10 +39,8 @@ body {
margin: 0;
}
}
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
.divider {
margin: 0 7px;
}
}
2 changes: 2 additions & 0 deletions src/app/login/page.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
main#login {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;

Expand Down
13 changes: 7 additions & 6 deletions src/app/page.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
main#main {
display: flex;
flex-direction: row;
flex-wrap: center;
align-content: center;
justify-content: center;
align-items: center;

margin-top: 10px;

min-width: 600px;

#content {
width: 520px;
height: 300px;

padding: 10px 20px 0 0;
padding: 10px 10px 0 0;

#next-time {
padding: 10px;
Expand All @@ -31,6 +32,7 @@ main#main {

#icon {
display: flex;
align-content: center;
justify-content: center;
align-items: center;

Expand All @@ -46,11 +48,10 @@ main#main {
}

aside {
padding-top: 10px;
padding-left: 10px;

width: 220px;
height: 300px;

padding: 10px 0 0 10px;

#hat {
padding: 10px;
Expand Down
4 changes: 3 additions & 1 deletion src/app/privacy/page.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
main#privacy {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;

h1 {
margin: 20px 0;
Expand Down
2 changes: 2 additions & 0 deletions src/app/register/page.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
main#register {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;

Expand Down

0 comments on commit 7afc340

Please sign in to comment.