-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths.css
More file actions
74 lines (66 loc) · 1011 Bytes
/
s.css
File metadata and controls
74 lines (66 loc) · 1011 Bytes
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
body
{
margin :0;
padding: 0;
font-family: sans-serif;
background-color: rgb(108, 85, 183);
/* background-size :cover; */
background-position:center;
}
.sign-up-form
{
width:500px;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
background-color: #fff;
padding:20px;
margin: 8% auto 0;
text-align: center;
}
.sign-up-form h1
{
color: rgb(38, 155, 213);
margin-bottom: 30px;
}
.input-box
{
border-radius: 20px;
padding:10px;
margin:20px 0;
width:90%;
border: 1px solid #999;
outline:none;
}
.input
{
border-radius: 20px;
padding:10px;
margin:20px 0;
width:30%;
border: 1px solid #999;
outline:none;
}
button
{
color:#fff;
width:100%;
padding:10px;
border-radius:20px;
font-size: 15px;
margin: 10px 0;
border:none;
outline:none;
cursor:pointer;
}
.signup-btn
{
background-color: rgb(38, 155, 213);
}
a
{
text-decoration: none;
}
img
{
width: 150px;
margin-top: -50px;
}