-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer.css
128 lines (103 loc) · 2.22 KB
/
customer.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
125
126
127
128
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
body {
font-family: "Montserrat", sans-serif;
background-color: #e2ee92;
font-size: 2rem;
display: block;
margin: 0.8rem;
}
/* content */
.my-info {
padding: 4rem 3rem;
margin: 1rem;
background: linear-gradient(to right bottom, rgb(232, 204, 255), rgb(162, 107, 202));
}
.btn-info {
font-size: 1.8rem;
background-color: #681bd5!important;
color: white!important;
margin-top: 1.5rem;
margin-left: 0.5rem;
padding: 0.75rem;
transition: all 0.3s;
}
.btn-info:hover {
background-color: white!important;
color: #681bd5!important;
}
/* pop-up */
.modal-header button ,.modal-body span , input::placeholder , .modal-footer button {
font-size: 1.8rem;
}
#enterName , #enterAmount {
font-size: 1.8rem;
}
.modal-content .modal-footer .btn {
margin: 0.2rem;
}
.modal-footer button {
background-color: #681bd5!important;
color: white!important;
}
.modal-footer button:hover {
background-color: white!important;
color: #681bd5!important;
}
.modal-header h2 {
color: #681bd5!important;
}
.form-control {
background-image: linear-gradient(0deg,#681bd5 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
}
/* customers */
.container {
max-width: 100rem;
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
padding-right: 1rem;
}
.container h1 {
color: #681bd5;
font-size: 3rem;
margin-top: 3.5rem;
margin-left: 26.8rem;
}
.table-header,.table-row {
border-radius: 0.3rem;
padding: 2.5rem 3rem;
display: flex;
justify-content: space-between;
margin-bottom: 2.5rem;
}
.table-header {
background-color: #681bd5;
color: whitesmoke;
font-size: 1.4rem;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.table-row {
background-color: #ffffff;
box-shadow: 0.1rem 0.1rem 0.9rem 0.1rem rgba(0,0,0,0.1);
}
.col-1 {
flex-basis: 10%;
}
.col-2 {
flex-basis: 25%;
}
.col-3 {
flex-basis: 25%;
}
.col-4 {
flex-basis: 25%;
}
.col-5 {
flex-basis: 25%;
}
.button {
display: inline-block;
text-decoration: none;
color: #510cd0;
}