-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer.css
65 lines (57 loc) · 1.02 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
*{
margin: 0;
padding: 0;
}
table {
width: 80%;
margin: 0 auto;
position: absolute;
font-size: 20px;
border: 1px black;
top: 28%;
left: 10.8%;
border-collapse: collapse;
}
h1 {
width: 90%;
color: #fff;
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
font-size: 50px;
font-family: 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
}
td {
background-color: #fff;
border: 2px ;
opacity: 0.6;
}
th,td {
font-weight: bold;
border: 1px;
padding: 10px;
text-align: center;
border-bottom: 1px solid #ddd;
}
tr:hover {
background-color:#f5f5f5;
color: black;
}
th {
background-color: white;
}
td {
font-weight: lighter;
}
button {
border: none;
background: #00FFFF;
border-radius: 15px;
width: 150px;
font-size: 90%;
transition-duration: 0.4s;
cursor: pointer;
}