Commit 8d3d8dae by 제남의

전체수정

parent a521f53b
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>테스트 123</title> <title>뉴로모픽</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
</head> </head>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</div> </div>
<div class="user"> <div class="user">
<img src="../assets/img/icon_user.png" alt="" id="icon_user"> <img src="../assets/img/icon_user.png" alt="" id="icon_user">
<h1>사용자페이sdss</h1> <h1>사용자페이지</h1>
<p>User page</p> <p>User page</p>
<button type="button" @click="$router.push('user')">시작</button> <button type="button" @click="$router.push('user')">시작</button>
</div> </div>
......
<template> <template>
<section class="login-form"> <div class="container">
<h1>LOGIN</h1>
<form action=""> <form action="">
<div class="int-area"> <h1>LOGIN</h1>
<input type="text" name="id" id="id" <div class="form-group">
autocomplete="off" required> <label for="">ID</label>
<label for="id">user name</label> <input type="text" class="form-control" required>
</div> </div>
<div class="int-area"> <div class="form-group">
<input type="password" name="pw" id="pw" <label for="">PASSWORD</label>
autocomplete="off" required> <input type="password" class="form-control" required>
<label for="pw">password</label>
</div> </div>
<input type="submit" class="btn" value="LOGIN">
</form> </form>
</section> </div>
</template> </template>
<script> <script>
export default { export default {
} }
</script> </script>
<style> <style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
margin: auto;
width: 500px;
max-width: 90%;
}
.container form{
width: 100%;
height: 100%;
padding:20px;
background: white;
border-radius: 4px;
box-shadow: 0 8px 16px rgba(0,0,0,.3);
}
.container form h1{
text-align: center;
margin-bottom: 24px;
color: #222;
}
.container form .form-control{
width:100%;
height: 40px;
background: white;
border-radius: 4px;
border:1px solid silver;
margin: 10px 0 18px 0;
padding: 0 10px;
}
.container form .btn{
margin-left: 50%;
transform: translateX(-50%);
width: 120px;
height: 34px;
border:none;
outline: none;
background: skyblue;
cursor: pointer;
font-size: 16px;
text-transform: uppercase;
color:white;
border-radius: 4px;
transition: .3s;
}
.container form .btn:hover{
opacity: .7;
}
</style> </style>
\ No newline at end of file
<template> <template>
<div> <div>
프로젝트 생성 프로젝트 생성xcxc
</div> </div>
</template> </template>
......
<template> <template>
<div class="menu">
<input id="tab1" type="radio" name="tabs" checked>
<label for="tab1">생성</label>
<input id="tab2" type="radio" name="tabs" >
<label for="tab2">진행</label>
<input id="tab3" type="radio" name="tabs" >
<label for="tab3">대기</label>
<input id="tab4" type="radio" name="tabs" >
<label for="tab4">완료</label>
</div>
</template> </template>
<script> <script>
...@@ -21,43 +9,7 @@ export default { ...@@ -21,43 +9,7 @@ export default {
</script> </script>
<style> <style>
.menu{
display: flex;
justify-content: space-around;
padding: 50px;
margin: 0 auto;
background-color: #fff;
}
input{
display: none;
}
label{
display: inline-block;
width: 420px;
margin: 0 0 -1px;
padding: 15px 25px;
font-weight: 600;
text-align: center;
color: #bbb;
border: 1px solid transparent;
}
label:hover{
color:#2e9cdf;
}
input:checked+label{
color:#555;
border-top:1px solid #fff;
border-bottom: 4px solid #2e9cdf;
}
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment