-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dee_Payment.css
118 lines (113 loc) · 2.29 KB
/
Dee_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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
}
body{
/* width: 95%; */
margin: auto;
height: 100vh;
/* display: flex; */
justify-content: center;
align-items: center;
/* background-color: rgb(161, 202, 202); */
}
/* conatiner part */
.dee_container{
width: 750px;
height: 500px;
/* border: 3px solid rgb(14, 0, 0) ; */
margin:30px auto;
border-radius: 10px;
background-color:skyblue;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; display: flex;
flex-direction: column;
padding:40px ;
color: white;
justify-content: space-around;
}
#dee_furnilogo{
/* border: 2px solid red; */
width: 100%;
}
#dee_furnilogo img{
width: 21% ;
/* height: 50px; */
}
.dee_container img{
width: 100px;
}
.dee_container h1{
text-align: center;
}
.dee_first_row{
display: flex;
/* justify-content: space-between; */
}
.dee_owner{
width: 100%;
margin-right: 40px;
}
.dee_input_field{
border: 1px solid blue;
}
.dee_input_field input{
width: 100%;
border: none;
outline: none;
padding: 10px;
}
.dee_slections{
display: flex;
justify-content: space-between;
align-items: center;
}
.dee_data select{
padding: 10px 20px;
border: none;
background-color: black;
color: white;
}
button{
background-color: yellow;
color: black;
text-align: center;
text-transform: uppercase;
text-decoration: dotted;
padding: 10px;
font-size: 18px;
font-weight: bold;
transition: .7s;
border: none;
}
button:hover{
animation: animate 1s linear infinite;
}
@keyframes animate {
100%{
filter: hue-rotate(270deg);
}
}
/* margins */
#deecardh3{
padding-bottom: 5px;
}
#deecardhExpire3{
padding-top: 10px;
}
#dee_PaymentStatus{
color: black;
}
#gatePaymentid{
/* background-color: black; */
background-image:linear-gradient(black,skyblue) ;
border-radius: 50px;
color: white;
}
#gatePaymentid h1{
/* background-color: black; */
color: white;
}