-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclonesignup.css
124 lines (114 loc) · 2.12 KB
/
clonesignup.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
#one
{
background: url("back.jpg");
background-repeat: no-repeat;
background-size: cover;
}
#one1
{
color: rgb(51, 51, 51);
border-left: 6px solid black;
height: auto;
margin-left: 2%;
font-size: 30px;
padding-top: 2%;
}
a:link, a:visited
{
float: right;
color: rgb(51, 51, 51);
font-size: 20px;
font-weight: bold;
padding: 14px 50px;
text-align: center;
text-decoration: none;
display: inline-block;
}
.form{
max-width:400px;
margin:50px auto;
background:#fff;
border-radius:2px;
padding:20px;
font-family: Georgia, "Times New Roman", Times, serif;
}
.form ul{
list-style:none;
padding:0;
margin:0;
}
.form li{
display: block;
padding: 9px;
border:1px solid rgb(173, 173, 173);
margin-bottom: 30px;
border-radius: 3px;
}
.form li:last-child{
border:none;
margin-bottom: 0px;
text-align: center;
}
.form li > label{
display: block;
float: left;
margin-top: -19px;
background: rgb(165, 165, 165);
height: 14px;
padding: 2px 5px 2px 5px;
color: rgb(240, 232, 232);
font-size: 14px;
overflow: hidden;
font-family: Arial, Helvetica, sans-serif;
}
.form input[type="email"],
.form input[type="password"],
.form textarea,
.form select
{
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
display: block;
outline: none;
border: none;
height: 25px;
line-height: 25px;
font-size: 16px;
padding: 0;
font-family: Georgia, "Times New Roman", Times, serif;
}
.form li > span{
background: rgb(165, 165, 165);
display: block;
padding: 3px;
margin: 0 -9px -9px -9px;
text-align: center;
color: rgb(223, 223, 223);
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
.form input[type="submit"],
.form input[type="button"]{
background:rgb(165, 165, 165);
border: none;
padding: 10px 20px 10px 20px;
border-bottom: 3px solid rgb(165, 165, 165);
border-radius: 3px;
color: rgb(238, 241, 239);
}
.form input[type="submit"]:hover,
.form input[type="button"]:hover{
background: #6B9FFF;
color:#fff;
}
a:hover, a:active
{
color: blue;
}
#wel
{
padding-left: 20%;
font-size: 50px;
}