-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleFormNew.css
More file actions
39 lines (39 loc) · 808 Bytes
/
styleFormNew.css
File metadata and controls
39 lines (39 loc) · 808 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
div.main-content {
width: 50%;
margin: 0 auto;
background-image: linear-gradient(-225deg, #77FFD2 0%, #6297DB 48%, #1EECFF 100%);
height: auto;
text-align: center;
padding-right: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-top: 15px;
}
.main-content label{
float: left;
margin-bottom: 2px;
}
.main-content form input{
padding: 5px;
width: 100%;
position: relative;
display: block;
height: 50%;
margin-bottom: 10px;
border: none;
border-radius: 3px;
}
button{
display: inline-block;
border-width: 0;
border-style: solid;
background: transparent;
cursor: pointer;
}
button#submit{
background-color: rgb(78, 41, 212);
color:white;
}
button#submit:hover{
background-color:rgb(105, 95, 140);
}