-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_payment_form.css
59 lines (59 loc) · 1.11 KB
/
style_payment_form.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
*{
box-sizing: border-box;
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: medium;
margin: 100px;
}
main{
background-color: white;
text-align: center;
}
header h1{
font-size: 25px;
font-weight: bold;
color:white;
text-align: center;
}
header{
background-color: brown;
padding: 20px;
}
header h4{
font-size: 10px;
color: white;
text-align: right;
}
section:nth-child(even){
background-color: blanchedalmond;
}
section{
min-height: 50vh;
}
form{
background-color: blanchedalmond;
}
form h2{
color: brown;
text-align: center;
font-size: 20px;
font-weight: bold;
}
.button {
border: none;
color: red;
background-color: whitesmoke;
padding: 20px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.button1:hover{
color: white;
background-color:red;
}