-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentc.css
123 lines (94 loc) · 1.84 KB
/
paymentc.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
body{
background-color: #eee;
}
.container{
height: 100vh;
}
.card{
border:none;
}
.form-control {
border-bottom: 2px solid #eee !important;
border: none;
font-weight: 600
}
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: #8bbafe;
outline: 0;
box-shadow: none;
border-radius: 0px;
border-bottom: 2px solid blue !important;
}
.inputbox {
position: relative;
margin-bottom: 20px;
width: 100%
}
.inputbox span {
position: absolute;
top: 7px;
left: 11px;
transition: 0.5s
}
.inputbox i {
position: absolute;
top: 13px;
right: 8px;
transition: 0.5s;
color: #3F51B5
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0
}
.inputbox input:focus~span {
transform: translateX(-0px) translateY(-15px);
font-size: 12px
}
.inputbox input:valid~span {
transform: translateX(-0px) translateY(-15px);
font-size: 12px
}
.card-blue{
background-color: #492bc4;
}
.hightlight{
background-color: #5737d9;
padding: 10px;
border-radius: 10px;
margin-top: 15px;
font-size: 14px;
}
.yellow{
color: #fdcc49;
}
.decoration{
text-decoration: none;
font-size: 14px;
}
.btn-success {
color: #fff;
background-color: #492bc4;
border-color:#492bc4;
}
.btn-success:hover {
color: #fff;
background-color:#492bc4;
border-color: #492bc4;
}
.decoration:hover{
text-decoration: none;
color: #fdcc49;
}
.demo{
background-color: springgreen;
border-radius: 7px;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid springgreen;
}