-
Notifications
You must be signed in to change notification settings - Fork 1
/
entrance.css
75 lines (64 loc) · 1.16 KB
/
entrance.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
.body{
font-family: Noto Sans KR;
font-style: normal;
font-weight: 100;
font-size: 50px;
line-height: 72px;
color: #000000;
}
.inner {
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.title{
font-size:40px;
}
.form-group{
border: 3px solid #A0CD63;
border-radius: 60px;
width:600px;
height:300px;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.miniFormBox {
display:flex;
flex-direction: row;
margin-top:10px;
margin-bottom:10px;
}
input {
background-color: #c4c4c4;
font-size:25px;
border-radius: 10px;
border:none;
width:200px;
}
label {
font-size:25px;
}
form {
display:inline;
}
.entrance-button{
background: #A0CD63;
border: 3px solid #FFFFFF;
box-sizing: border-box;
border-radius: 60px;
width:600px;
height:80px;
font-family: sans-serif;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 58px;
display: flex;
justify-content: center;
align-items: center;
color: #FFFFFF;
margin-top:20px;
}