-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.css
More file actions
110 lines (110 loc) · 2.17 KB
/
join.css
File metadata and controls
110 lines (110 loc) · 2.17 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
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
@font-face {
font-family: 'Cafe24Oneprettynight';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Oneprettynight.woff')
format('woff');
font-weight: normal;
font-style: normal;
}
* {
font-family: 'Cafe24Oneprettynight';
}
body {
background-color: #fafafa;
margin: 10px;
color: #262626;
box-sizing: border-box;
}
.login_wrapper {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
width: 400px;
height: 490px;
top: 40%;
left: 50%;
margin: -175px 0px 0px -190px;
background-color: white;
border: 1px solid #dbdbdb;
box-shadow: 5px 5px 5px rgb(199, 196, 196);
}
.logoImg {
width: 100px;
height: 100px;
}
.login_logo {
margin: 30px 0 30px 0;
color: #262626;
/* font-family: 'Gowun Dodum', cursive; */
font-weight: 400;
font-size: 40px;
}
.login_form {
display: flex;
flex-direction: column;
width: 280px;
margin-top: 10px;
justify-content: center;
/* font-family: 'Gothic A1'; */
}
.login_text {
width: 100%;
height: 40px;
margin: 3px 0 8px 0;
padding: 0 10px 0 10px;
background-color: #fafafa;
border: 1px solid #dbdbdb;
border-radius: 3px;
font-size: 15px;
}
.login_text:focus {
outline: 1px solid #a8a8a8;
}
.login_text::placeholder {
color: #8e8e8e;
}
.login_text::value {
color: #262626;
}
input[type='password'] {
font: small-caption;
font-size: 16px;
}
.login_btn {
width: 100px;
height: 40px;
margin: 10px 10px 5px 10px;
color: rgba(48, 47, 47, 0.895);
background-color: #fffed0;
border-radius: 5px;
border-style: none;
font-size: 13px;
font-weight: bold;
cursor: pointer;
padding: 5px;
}
.login_btn:hover {
color: rgba(48, 47, 47, 0.895);
background-color: #fffda1;
}
.login_bottom {
color: #01376a;
font-size: 13px;
/* font-family: 'Gothic A1'; */
margin-bottom: 15px;
}
.login_bottom:hover {
font-weight: bold;
}
.btn {
flex-direction: column;
}
@media (max-width: 1100px) {
.logoImg {
width: 70px;
height: 70px;
}
.login_wrapper {
top: 45%;
}
}