-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.css
60 lines (59 loc) · 1.07 KB
/
checkout.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
.checkout{
margin: auto;
margin-top: 80px;
margin-bottom: 50px;
width: 50%;
border: 3px solid green;
padding: 10px;
background: white;
}
input[type ="submit"]{
border:0;
background: red;
display: block;
text-align: center;
border: 2px solid white;
padding: 10px 20px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
margin-left: 33.5%;
}
input[type = "submit"]:hover{
background: #2ecc71;
}
.value{
text-align: center;
font-family: Georgia, serif;
line-height: 1.6;
}
.checkout1{
margin: auto;
margin-top: 10px;
width: 50%;
border: 3px solid green;
padding: 10px;
background: white;
}
.cashon{
margin: auto;
margin-top: 2px;
width: 50%;
border: 3px solid red;
padding: 10px;
background: white;
text-align: center;
font-family: Georgia, serif;
}
.cashout{
margin: auto;
margin-top: 10px;
width: 50%;
border: 3px solid red;
padding: 10px;
background: white;
text-align: center;
font-family: Georgia, serif;
}