-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathApp.css
More file actions
124 lines (106 loc) · 1.93 KB
/
App.css
File metadata and controls
124 lines (106 loc) · 1.93 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
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap");
.App {
text-align: center;
font-family: "Roboto";
letter-spacing: 0.1rem;
}
.container {
display: flex;
flex-direction: row;
margin: 5% auto;
width: 635px;
height: 430px;
background: white;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
}
.item {
width: 50%;
position: relative;
}
.item-image {
height: 430px;
width: 100%;
object-fit: cover;
}
.overlay-effect {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0.2;
background-color: #303030;
overflow: hidden;
z-index: 1;
}
.item-details {
position: absolute;
bottom: 0;
margin-bottom: 5px;
margin-left: 20px;
color: #84a17d;
text-align: left;
}
.item-details__title {
font-size: 22px;
}
.item-details__amount {
font-weight: bolder;
}
.checkout {
background: #84a17d; /* fallback for old browsers */
display: flex;
flex-direction: column;
justify-content: center;
height: 430px;
width: 50%;
}
.checkout-form {
padding: 20px 20px;
}
.checkout-field {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.checkout-field label {
text-align: left;
color: #e0eafc;
font-size: 10px;
margin-bottom: 5px;
text-transform: uppercase;
letter-spacing: 0.1rem;
}
.checkout-field input {
background-color: transparent;
border: 1px solid #cecece;
border-radius: 5px;
color: #e0eafc;
height: 35px;
padding-left: 10px;
}
.checkout-field input:focus {
background-color: transparent;
outline: none;
}
.paystack-button {
cursor: pointer;
text-align: center;
font-size: 10px;
letter-spacing: 0.1rem;
text-transform: uppercase;
background-color: #bfbfbf;
font-weight: bold;
color: #e0eafc;
border: none;
border-radius: 5px;
width: 100%;
height: 45px;
margin-top: 40px;
}
.paystack-button:hover {
background-color: #dadada;
}
.paystack-button:focus {
outline: none;
}