-
Notifications
You must be signed in to change notification settings - Fork 0
/
colour.css
64 lines (56 loc) · 1.36 KB
/
colour.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: rgb(240, 240, 240);
background-image: url('construction.png.png'); /* Dummy PNG image link */
background-repeat: no-repeat;
background-size: cover;
}
header {
background: linear-gradient(45deg, rgb(190 68 35) 0%, rgb(80 23 255) 100%);
padding: 20px;
text-align: center;
color: white;
}
h1 {
margin: 0;
}
.container {
width: 80%;
margin: 20px auto;
background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent to blend with background */
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.rate-section, .payment-section {
margin-bottom: 20px;
}
.rate-section input, .payment-section input {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid rgb(200, 200, 200);
}
.btn {
background-color: rgb(0, 128, 255);
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 4px;
}
.btn:hover {
background-color: rgb(0, 100, 200);
}
footer {
text-align: center;
padding: 10px;
background: linear-gradient(45deg, rgb(190 68 35) 0%, rgb(80 23 255) 100%);
color: white;
position: absolute;
bottom: 0;
width: 100%;
}