-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (86 loc) · 1.29 KB
/
style.css
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
* {
padding:0;
margin:0;
}
body {
background-color:#adccff;
}
#wrapper {
width:940px;
margin:20px auto;
font-family:Arial, Helvetica, Times New Roman;
}
form {
max-width:580px;
}
div#form_output {
background:white;
margin:20px;
padding:40px 0 40px 20%;
border:1px solid black;
font-size:1.2em;
}
span {
color:red;
margin:10px;
}
fieldset {
padding:10px;
border:1px solid black;
background-color:#dddddd;
}
label {
display:block;
margin-bottom:5px;
}
select {
width: 75%;
padding: 6px 20px;
border: none;
border-radius: 4px;
}
input[type=text], input[type=email], input[type=tel] {
height:20px;
width:75%;
margin-bottom:10px;
}
input[type=submit]:hover {
background-color: #4dc160;
color:#ffe36b;
}
form ul {
margin-bottom:10px;
}
form li {
list-style-type:none;
margin-left:10px;
margin-bottom:4px;
}
legend, input[type=submit] {
font-size:1.4em;
padding:8px;
border:1px solid black;
background-color:#ffe36b;
border-radius:10px;
}
input[type=submit] {
border:2px solid black;
margin:10px 40% 10px;
height:60px;
width:100px;
}
header {
padding-bottom:30px;
border-bottom:5px solid black;
background-color:black;
}
header h1 {
font-size:3em;
padding:20px 0 0 50px;
color:white;
}
main {
float:left;
width:580px;
margin-bottom:20px;
}