-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
62 lines (52 loc) · 1.01 KB
/
form.css
File metadata and controls
62 lines (52 loc) · 1.01 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
*{
margin: 0px;
padding: 0px;
}
body{
background: linear-gradient(rgb(241, 208, 193),rgb(206, 207, 127));
font-family: sans-serif;
}
.maindiv{
height: 100vh;
font-size: 20px;
color: yellow;
}
.formdiv{
margin: 180px 650px;
border: 3px solid green;
width: 550px;
color: grey;
box-shadow: 5px 8px 9px;
border-radius: 20px;
}
.innerdiv1{
text-align: center;
color: black;
background: chartreuse;
height: 60px;
padding-top: 20px;
font-family: sans-serif;
border-radius: 20px 20px 0px 0px;
}
.innerdiv2{
padding: 30px 50px 50px ;
background: whitesmoke;
border-radius: 0px 0px 20px 20px ;
}
.formdiv input{
width: 400px;
height: 30px;
border: 0px;
text-align: center;
font-size: medium;
font-style: italic;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.formdiv input:focus {
outline: 0px;
border:1px solid #777;
}