forked from SeeTurtle-team/WebServerPrograming_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.css
More file actions
95 lines (85 loc) · 1.86 KB
/
payment.css
File metadata and controls
95 lines (85 loc) · 1.86 KB
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
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
* {margin: 0; padding: 0; box-sizing: border-box;}
body{
font-family:'Electrolize', sans-serif;
display:flex;
justify-content: center;
align-items: center;
height: 100vh;
background: url("https://ifh.cc/g/SrMJhQ.jpg") no-repeat center;
background-size: cover;
}
body::before{
content:"";
position: absolute; z-index: 1;
top: 0; right: 0; bottom: 0; left: 0;
background-color: rgba(0,0,0,.7);
}
.login-form{position: relative; z-index: 2;}
.int-area{
width: 400px; position: relative;
margin-top: 20px;}
#id{
padding-top: 20px;
font-size: 15px; color:#fff;
text-align:center;
}
#cost, #info{
padding-top: 20px;
font-size: 20px; color:#fff;
}
#confirm{
padding-top: 20px;
font-size: 20px; color:#fff;
text-align: center;
}
.int-area:first-child {margin-top: 0;}
.int-area input{
width: 60%;
padding: 20px 10px 10px;
background-color: transparent;
border:none;
border-bottom: 1px solid #999;
font-size: 18px; color:#fff;
outline: none;
}
.int-area select{
background: transparent;
color: #fff;
font-size: 15px;
}
#selectOption{
padding: 5px;
background-color: black;
}
.btn-area {margin-top:10px;}
.btn-area button{
width: 60%; height: 40px;
background: #166cea;
color: #fff;
font-size: 18px;
border: none;
border-radius: 25px;
cursor: pointer;
margin-left:10%;
}
.btn-area1 {margin-top:25px;}
.btn-area1 button{
width: 45%; height: 40px;
background: #166cea;
color: #fff;
font-size: 20px;
border: none;
border-radius: 25px;
cursor: pointer;
}
.bar_logo{
margin-top:40px;
text-align:center;
}
.bar_logo a{
font-size: 32px; color: #fff;
text-align:center;
margin-bottom: 60px;
text-decoration: none;
}