-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
82 lines (62 loc) · 1.31 KB
/
index.css
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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500;700&display=swap');
html{
font-family: 'Noto Sans KR', sans-serif;
}
body{
margin: 0px auto;
font-weight: 300;
text-align: center;
}
p{
margin: 0px;
}
.main{
max-width: 500px;
height: auto;
background-color: #fffdf6;
margin: 100px auto;
border: 2px dashed black;
border-radius: 40px;
padding: 0px 0px 30px;
}
/* login */
.loginerror{
max-width: 500px;
align-items: center;
height: fit-content;
background-color: #ffd1d1;
margin: 10px;
padding: 30px; /*내부 간격 -> 텍스트 정중앙 정렬*/
border: 2px dotted rgb(255, 55, 55);
border-radius: 30px;
}
.msg{
font-size: 16px;
}
.logo{
font-size: 40px;
width: 100%;
margin: 20px auto 50px;
}
.login{
display: flex;
flex-wrap: wrap;
max-width: 400px;
margin: 0px auto;
}
.button{
width: 150px;
height: 40px;
margin: 10px auto 20px;
font-size: 20px;
background-color: lightblue;
font-family: 'Noto Sans KR', sans-serif;
}
/* end login */
input{
width: 100%;
height: 40px;
margin: 10px auto 20px;
font-size: 20px;
font-family: 'Noto Sans KR', sans-serif;
}