-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
124 lines (112 loc) · 2.02 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
h1 {
margin-left: 10%;
font-size: 5rem;
color: white;
}
form {
margin: 0 auto;
width: 50%;
padding: 20px;
background-color: aliceblue;
border-radius: 5px;
}
body{
background-color: #0067c7;
color: black;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo{
height: 100px;
width: 100px;
background: #aaf;
}
.line{
display: flex;
align-items: center;
justify-content: center;
height: 50%;
width: 80%;
margin-bottom: 3.5%;
}
h2{
text-align: center;
color: white;}
label {
display: block;
margin-bottom: 5px;
}
input[type="date"],
select,
input[type="number"],
textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 10px;
resize: vertical;
}
.button {
position: relative;
width: 150px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
border: 1px solid #34974d;
background-color: #3aa856;
margin-left: 80%;
margin-top: 5%;
}
.button, .button__icon, .button__text {
transition: all 0.3s;
}
.button .button__text {
transform: translateX(30px);
color: #fff;
font-weight: 600;
}
.button .button__icon {
position: absolute;
transform: translateX(109px);
height: 100%;
width: 39px;
background-color: #34974d;
display: flex;
align-items: center;
justify-content: center;
}
.esxsux{
text-align: center;
}
.button .svg {
width: 30px;
stroke: #fff;
}
.button:hover {
background: #34974d;
}
.button:hover .button__text {
color: transparent;
}
.button:hover .button__icon {
width: 148px;
transform: translateX(0);
}
.button:active .button__icon {
background-color: #2e8644;
}
.button:active {
border: 1px solid #2e8644;
}
#message {
margin: 20px auto;
width: 50%;
padding: 20px;
background-color: #e6ffe6;
border: 1px solid #00b300;
border-radius: 5px;
text-align: center;
display: none;
}