-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.css
More file actions
78 lines (69 loc) · 1.3 KB
/
admin.css
File metadata and controls
78 lines (69 loc) · 1.3 KB
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
@font-face {
font-family: 'korea bold';
src: url(./fonts/korea_bold.otf);
}
@font-face {
font-family: 'korea light';
src: url(./fonts/korea_thin.otf);
}
@font-face {
font-family: 'kbo medium';
src: url(./fonts/korea_medium.otf);
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow: hidden;
background-color: #e4d7c4;
}
.logoImage img {
position: absolute;
top: 350px;
left: 500px;
}
.login_container {
position: absolute;
top: 200px;
left: 1000px;
width: 460px;
height: 568px;
background-color: #fff;
border-radius: 30px;
}
.login_container img {
position: relative;
top: 62.5px;
left: 40px;
}
.login_container #email {
position: relative;
top: 109px;
left: 40px;
width: 380px;
height: 56px;
border-radius: 8px;
border: 1px solid #424242;
}
.login_container #password {
position: relative;
top: 129px;
left: 40px;
width: 380px;
height: 56px;
border-radius: 8px;
border: 1px solid #424242;
}
.login_container button {
position: relative;
top: 170px;
left: 40px;
width: 380px;
height: 56px;
border-radius: 8px;
border: 1px solid #d84040;
background-color: #d84040;
color: #fff;
font-size: 18px;
cursor: pointer;
}