-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.css
More file actions
84 lines (84 loc) · 1.46 KB
/
forms.css
File metadata and controls
84 lines (84 loc) · 1.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* forms.html */
.formnav ul{
display: flex;
flex-direction: column;
justify-content: space-around;
list-style: none;
font-weight: 200;
}
.formnav ul li{
margin-top: 20px;
}
.formnav ul li a:link, .formnav ul li a:visited{
text-decoration: none;
color: Black;
}
.formnav ul li a:hover{
font-weight: 1000;
}
/* contact css */
form{
border-radius: 5px;
}
.input label, .input input, .input select{
width: 200px;
padding: 5px;
margin: 5px;
}
.input input, .input select, input textarea{
display: inline;
}
.submit input{
padding: 5px;
margin: 10px;
background-color: #9da1a6;
border: none;
font-size: large;
}
.fname input{
margin-left: 100px;
}
.lname input{
margin-left: 104px;
}
.email input{
margin-left: 148px;
}
.phone input{
margin-left: 144px;
}
.pcontact select{
margin-left: 37px;
}
.message textarea{
margin-left: 96px;
}
/* fun form css */
.formcontent{
margin-top: 5px;
float: left;
margin-left: 5%;
width: 500px;
}
form{
border-radius: 5px;
}
.input label, .input input, .input select{
width: 200px;
padding: 5px;
margin: 5px;
}
.input input, .input select, input textarea{
display: inline;
}
.submit input{
padding: 5px;
margin: 10px;
background-color: #9da1a6;
border: none;
font-size: large;
}
.text{
display: flex;
flex-direction: row;
}