-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.css
98 lines (94 loc) · 1.67 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
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
#head{
display: flex;
width: 100%;
-webkit-box-shadow: 0 4px 6px -6px #222;
-moz-box-shadow: 0 4px 6px -6px #222;
box-shadow: 0 4px 6px -6px #222;
}
#head>img{
padding: 30px;
margin: auto;
width:220px;
}
#container{
width:60%;
margin: auto;
}
#container>div>img{
width:7%;
}
#container>div{
display:flex;
gap: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 17.5px;
}
#container>form{
margin-top: 10px;
}
#acc,#first,#last{
width:340px;
height:30px;
margin-top: 20px;
font-size: 17px;
border-radius: 5px;
}
#cvv,#year,#month{
width:162px;
height:30px;
margin-top: 20px;
font-size: 17px;
border-radius: 5px;
}
#submit{
width:100px;
height:35px;
border-radius: 20px;
margin-top: 20px;
padding:8px;
font-size: 17px;
text-align: center;
}
#submit:hover{
background-color: black;
color: white;
cursor: pointer;
}
#container>p:nth-child(1){
font-family: georgia, times, serif;
font-size: 32px;
font-weight: 400;
line-height: 32px;
}
#container>p:nth-child(3){
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
font-weight: 700;
line-height: 24px;
}
#enter{
width: 200px;
margin-left:250px;
margin-top: 20px;
}
#enter>form>input{
width:162px;
height:30px;
margin-top: 20px;
font-size: 17px;
border-radius: 5px;
}
#enter>form>#order{
width:202px;
height:40px;
margin-top: 20px;
font-size: 17px;
border-radius: 25px;
}
#enter>form>#order:hover{
background-color: black;
color: white;
cursor: pointer;
}