-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp-backup.css
135 lines (114 loc) · 2.33 KB
/
signUp-backup.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
131
132
133
134
135
*{margin:0; padding:0;}
body{
background-color: white;
height:1200px;
}
header img{
margin-top:20px;
height:50px;
width:150px;
}
header{
height:100px;
text-align: center;
font-size: 50px;
font-weight: bold;
width: 100%;
color: white;
}
.bar{
width:100%;
background-color: #333333;
height:90px;
margin-bottom: 40px;
}
.bar td{
color:white;
width:25%;
text-align: center;
}
#last{
border:none;
}
.bar td span{
display:block;
height:30px;
line-height: 30px;
border-right: 1px solid white;
width:100%;
}
.id{float:left;}
.password{float:left;}
.password_confirm{float:left;}
.mail{float:left;}
.name{float:left;}
.nick{float:left;}
.login_wrap{
width:100%;
}
.login{
text-align: center;
margin: 0 auto;
height:350px;
width:1500px;
border:1px solid black;
}
#login_title{
display: block;
font-size: 30px;
font-weight:bold;
margin-left: 50px;
margin-top: 20px;
margin-bottom: 10px;
}
.frame{
height:280px;
width:1250px;
margin-left:250px;
}
.login div div:nth-child(n) span{
display: block;
text-align: left;
margin-left:50px;
margin-bottom: 5px;
height:21px;
margin-right:8px;
}
.login span{
text-align: left;
}
input[type="submit"]{
margin-top: 26px;
background-color: #5B4C43;
border:0;
cursor: pointer;
height: 40px;
width:400px;
color: white;
}
input[type="text"],[type="password"]{
background-color: #E6E6E6;
border:0px;
height:40px;
width:400px;
}
.login div div:nth-child(n){
padding-bottom: 10px;
padding-top: 10px;
width:500px;
float:left;
}
@media all and (max-width:720px){
.login{
width:450px;
}
#login_title{
font-size:30px;
}
input[type="text"],[type="password"]{
width:350px;
}
input[type="submit"]{
width:350px;
}
}