forked from ibiswajitmishra/MS-hacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.css
More file actions
68 lines (67 loc) · 1.09 KB
/
SignUp.css
File metadata and controls
68 lines (67 loc) · 1.09 KB
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
*{
padding: 0;
margin: 0;
font-family: "Lato";
text-decoration: none;
max-width: 100%;
}
body{
background-image: url(images/pexels-photo-399161.jpeg);
background-size: 1500px;
}
#container{
max-width: 100%;
background-color: green;
color: white;
text-align: center;
font-size: 40px;
padding: 20px;
margin-bottom: 10px;
}
#form{
background-color: green;
color: black;
max-width: 200px;
border-radius: 9px;
padding: 20px;
padding-right: 45px;
padding-left: 45px;
position: relative;
left: 565px;
top: 120px;
}
#submitbutton{
border: solid #7292DB;
background-color: #4E92DB;
color: white;
text-align: center;
border-radius: 140px;
padding: 5px;
margin-left: 40px;
width: 50%;
cursor: pointer;
}
#submitbutton:hover{
border: solid #48BEDB;
background-color: #48E2DB;
color: white;
text-align: center;
border-radius: 140px;
padding: 5px;
margin-left: 40px;
width: 50%;
}
#icon{
width: 100px;
height: 100px;
position: absolute;
top: -80px;
left: 100px;
}
.textbox{
background-color: white;
border: none;
border-bottom: solid #FF1150;
padding: 4px;
margin: 4px;
}