-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer-page.css
75 lines (71 loc) · 1.41 KB
/
footer-page.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
.footer-page{
background-color: #564c42;
background-size: contain;
color: #fff;
}
hr {
width: 30%;
border: 1px solid #fff;
margin: 10px 20% 10px 0;
}
.footer-heads{
font-weight: 800;
font-size: 20px;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.row {
display: flex;
}
.column {
margin: 20px;
text-align: left;
flex: 1;
padding: 10px;
box-sizing: border-box;
}
.footer-page p{
font-size: 15px;
margin-top: 30px;
}
.book-table {
display: inline-block;
padding: 20px;
margin: 20px;
border: 1px solid #ddd;
width: 250px;
}
.book-table label {
display: block;
margin-bottom: 10px;
}
.book-table input[type="text"],
.book-table input[type="number"],
.book-table input[type="time"],
.book-table input[type="date"],
.book-table select,
.book-table input[type="submit"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
box-sizing: border-box;
}
.book-table input[type="submit"] {
background-color: transparent;
color: white;
border: 1px solid #eae0d3;
cursor: pointer;
width: 100%;
padding: 10px 20px;
transition: background-color 0.3s;
}
.book-table input[type="submit"]:hover {
background-color: #eae0d3;
}
.footer{
background-color: #333;
color: white;
text-align: center;
padding: 10px;
bottom: 0;
width: 100%;
}