This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (114 loc) · 2.03 KB
/
style.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
* {
margin:0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background: #FFFFFF;
height: 100%;
font-family: 'Open Sans', sans-serif;
font-style: normal;
}
.container {
margin-top: 100px;
display: flex;
justify-content: center;
text-align: center;
}
.info {
font-weight: bold;
font-size: 18px;
color: #222222;
margin-top: 40px;
margin-bottom: 50px;
}
.confirm {
margin-top: 22px;
margin-bottom: 50px;
font-weight: 500;
font-size: 14px;
text-align: center;
color: #F01F0E;
}
.btn-group {
display: flex;
justify-content: center;
}
.btn {
padding: 15px 30px;
width: 123px;
height: 48px;
font-size: 14px;
text-decoration: none;
}
.btn-full {
background: #DB3022;
box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.05);
border-radius: 4px 0px 0px 4px;
color: white;
}
.btn-shadow {
border: 1px solid #9B9B9B;
box-sizing: border-box;
filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.05));
border-radius: 0px 4px 4px 0px;
color: gray;
}
.form-section {
width: 400px;
margin-top: 40px;
}
.form-main {
display: flex;
margin-top: 16px;
}
input[type="email"],
input[type="password"],
input[type="name"] {
font-size: 14px;
padding: 7px 0px 7px 15px;
width: 100%;
height: 48px;
border: 1px solid #9B9B9B;
box-sizing: border-box;
filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.05));
border-radius: 4px;
}
.forgot {
display: inline-block;
margin-top: 26px;
text-align: right;
width: 100%;
font-size: 14px;
color:#db3022;
text-decoration: none;
}
.submit {
margin-top: 26px;
display: inline-block;
padding: 15px 30px;
width: 100%;
font-size: 14px;
color: #FFFFFF;
background: #DB3022;
border-radius: 25px;
text-decoration: none;
}
.register {
margin-top: 40px;
font-size: 14px;
color: #222222;
}
.register a {
color:#db3022;
text-decoration: none;
}
@media only screen and (max-width: 420px) {
.form-section {
width: 100%;
}
}