-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.css
68 lines (68 loc) · 938 Bytes
/
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
.body {
margin: 0px;
padding: 0px;
font-family: timesnewroman;
background-image: url(back.jpg);
background-size: cover;
background-position: center;
}
.sign-up-form
{
width: 300px;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
background:#fff;
padding: 20px;
margin: 8% auto 0;
text-align: center;
}
.sign-up-form h1
{
color: blue;
margin-bottom: 30px;
}
.input-box{
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 100%;
border: 1px solid blue;
outline: none;
}
button
{
color: #fff;
width: 100%;
padding: 10px;
border-radius: 20px;
font-size: 15px;
margin: 10px 0;
outline: none;
cursor: pointer;
}
.sign-btn
{
background-color: blue;
}
.twitter-btn
{
background-color: blue;
}
a
{
text-decoration: none;
}
hr
{
margin-top: 20px;
width: 80%;
}
.or
{
background: #fff;
width: 30px;
margin: -19px auto 10px;
}
img
{
width: 70px;
}