-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.css
104 lines (92 loc) · 1.89 KB
/
signup.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@font-face {
font-family: 'GmarketSansMedium';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
font-family: 'GmarketSansMedium';
}
body {
background-image: url(img/Loginbackground.png);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
fieldset {
border: 0;
}
.box {
margin-top: 0;
background-color: #fffcaf85;
padding: 1.875rem;
border-radius: 2.5rem;
width: 28.125rem;
height: auto;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
.login-wrapper {
width: 100%;
padding: 1.25rem;
}
.btn_area {
text-align: center;
}
.Logo {
width: 6.25rem;
height: auto;
margin-bottom: 1.25rem;
display: block;
margin-left: auto;
margin-right: auto;
}
.sign {
text-align: center;
}
.sign th, .sign td {
padding: 0.5rem;
vertical-align: middle;
}
.textForm {
background-color: #F0F0F0;
width: calc(100% - 20px);
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
margin-bottom: 1rem;
}
.btn {
padding: 0.5rem 1rem;
margin-left: 10px;
cursor: pointer;
}
.cancel-button {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #FFEFA0;
color: #8E8E8E;
text-decoration: none;
border: none;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
}
.signup-button {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #FFEFA0;
color: #8E8E8E;
text-decoration: none;
border: none;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
}