-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject2.css
68 lines (67 loc) · 1.39 KB
/
Project2.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
h1 {
text-align: center;
}
body {
background-color: #a9d7d1;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
p {
text-align: center;
}
table {
border-collapse: collapse;
flex-direction: column;
align-items: stretch;
}
td {
padding: 10px;
vertical-align: top;
}
li {
list-style: none;
}
.input-field {
height: 28px;
width: 250px;
padding-left: 10px;
}
.select-field {
height: 28px;
width: 250px;
}
.theForm {
background-color: white;
padding: 20px 15px 20px 15px;
margin-left: 100px;
margin-right: 100px;
line-height: 2;
border-radius: 10px;
color: #333;
}
.submit {
text-align: center;
}
.space {
text-align: right;
}
.center {
padding-left: 100px;
}
.btn {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 6;
-moz-border-radius: 6;
border-radius: 6px;
font-family: Arial;
color: #ffffff;
margin-left: 300px;
margin-top: 20px;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}