-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (109 loc) · 2.67 KB
/
styles.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: black;
}
h1 {
text-align: center;
}
nav {
margin-bottom: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: red;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
p {
text-align: center;
}
button {
width: 100%;
padding: 10px;
background-color: #dc3545; /* Red color */
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:not(.back-button):hover {
background-color: #c82333; /* Darker red on hover */
}
.processing-fee {
margin-top: 20px;
text-align: center;
color: #dc3545; /* Red color to match the button */
font-weight: bold;
}
.back-button {
background-color: transparent;
border: none;
color: #007bff; /* Blue color for the link */
font-size: 16px;
cursor: pointer;
margin-bottom: 20px; /* Space below the button */
text-align: left; /* Align text to the left */
}
.back-button:hover {
text-decoration: underline; /* Underline on hover */
}
/* Add styles for input fields to center and organize them */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
width: 100%; /* Full width */
padding: 10px; /* Padding for better spacing */
margin: 10px 0; /* Margin for spacing between fields */
border: 1px solid #ccc; /* Light border */
border-radius: 4px; /* Rounded corners */
box-sizing: border-box; /* Include padding and border in element's total width and height */
}
.form-container {
display: flex; /* Use flexbox for alignment */
flex-direction: column; /* Stack items vertically */
align-items: center; /* Center items horizontally */
margin: auto; /* Center the container */
max-width: 600px; /* Limit the width */
}
/* Add media queries for better responsiveness on smaller screens */
@media (max-width: 600px) {
.container {
padding: 10px; /* Reduce padding on smaller screens */
}
nav ul li {
display: block; /* Stack navigation items vertically */
margin: 10px 0; /* Add margin for spacing */
}
h1 {
font-size: 1.5em; /* Adjust heading size */
}
p {
font-size: 1em; /* Adjust paragraph size */
}
button {
padding: 15px; /* Increase button padding for easier tapping */
}
}