-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (145 loc) · 3.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!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>동아리 페스티벌</title>
<link href="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/common.css">
</head>
<style>
body {
background-color: #6337FF;
max-width: 700px;
overflow: hidden;
}
body * {
font-family: 'Gothic A1', sans-serif;
padding: 0px;
margin: 0px;
-webkit-font-smoothing: antialiased;
}
.t-dot {
width: 20px;
position: absolute;
height: 20px;
z-index: 100;
right: 20px;
top:20px;
}
.background {
width: 100vw;
height: 60%;
background-color: rgb(228, 228, 228);
position: fixed;
z-index: -1;
bottom: 0px;
left: 0px;
}
.login-text {
margin-left: 20px;
margin-top: 80px;
color:white;
margin-bottom: 10px;
}
.title {
margin-left: 20px;
color:black;
margin-top: 20px;
}
.login {
position: relative;
left: 50%;
width: 100%;
margin-left: -50%;
}
.box {
width: 80%;
position: relative;
left: 50%;
margin-bottom: 20px;
margin-left: -45%;
background-color: rgba(250, 250, 250, 1);
border-radius: 20px;
padding: 20px 5%;
}
.img {
width: 130px;
height: 130px;
border-radius: 100%;
background-color: rgba(245, 245, 245, 0.4);
position: relative;
left: 50%;
margin-left: -65px;
margin-top: 60px;
text-align: center;
line-height: 130px;
color:rgb(225, 225, 225);
}
.help {
width: 40vw;
height: 120px;
border-radius: 20px;
background-color: rgb(19, 219, 136);
border: 0px;
position: relative;
left: 20px;
color: white;
}
.G-login {
width: 80%;
height: 50px;
background-color: rgb(228, 228, 228);
border: 0px;
border-radius: 10px;
position: relative;
left: 50%;
margin-left: -40%;
}
.login-btn {
width: 40vw;
height: 120px;
border-radius: 20px;
right: 25px;
border: 0px;
color:white;
background-color: #37a5ff;
position: absolute;
}
.login > input {
width: 100%;
}
label {
font-size: 13px;
}
input {
border-radius: 20px;
text-align: center;
border: 0px;
height: 40px;
background-color: rgb(245, 245, 245);
}
</style>
<body>
<div class="background ani"></div>
<h3 class="b9 f4 title ani" style="color:white; text-align: left; margin-top:20px">동아리 <span class="b2">페스티벌</span></h3>
<h1 class="login-text b8 f10">로그인을<br>진행해주세요.</h1>
<div class="box blur shadow">
<a href=""><button style="border-radius:5px; width: 100%; background-color: rgb(240, 240, 240); height: 50px; border: 0.1px solid rgb(230, 230, 230); line-height: 30px; padding: 10px; box-shadow: 0px 0px 20px -20px black; font-weight:700; font-size:15px;"><img src="https://i.pinimg.com/originals/39/21/6d/39216d73519bca962bd4a01f3e8f4a4b.png" alt="구글 로고" style="width: 30px; float: left;">구글 로그인</button></a>
</div><br>
<a href="tel:010-1234-5678">
<button class="help f3 b7 shadow" style="color: white;">
<img src="imgs/Help.svg" width="40px"><br>
도움<br>요청하기
</button>
</a>
<button class="login-btn b6 f3 shadow" id="Lo-btn">
<img src="imgs/Login.svg" width="40px"><br>
로그인
</button>
</body>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/script.js"></script>
</html>