-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
78 lines (72 loc) · 1.28 KB
/
payment.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
* {
box-sizing: border-box;
}
body {
font-family: "Courier New", Courier, monospace;
margin: 15px 30px;
font-size: 17px;
padding: 8px;
background: linear-gradient(to right, grey, white);
}
.whole {
background: transparent;
padding: 10px;
border: 3px solid black;
border-radius: 5px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
width: 100%;
padding: 12px;
border: 2px solid #000;
border-radius: 5px;
}
input[type="radio"] {
padding: 10%;
}
h1,
h2 {
font-family: "Courier New", Courier, monospace;
color: #000;
font-weight: bold;
text-align: center;
padding: 10px;
}
h1 {
font-size: 58px;
text-decoration: underline;
}
p {
padding: 10px;
font-size: 24px;
font-weight: bold;
}
input[type="submit"] {
align-self: center;
border: 2px solid white;
background-color: black;
padding: 15px 30px;
border-radius: 20px;
text-decoration: none;
text-transform: uppercase;
color: white;
font-weight: bold;
font-size: 20px;
cursor: pointer;
font-family: "Courier New", Courier, monospace;
}
input[type="submit"]:hover {
background: #f4f4f4;
border-color: black;
color: black;
}
.flex {
display: flex;
flex-direction: column;
align-content: center;
}