-
Notifications
You must be signed in to change notification settings - Fork 0
/
customers.css
47 lines (41 loc) · 924 Bytes
/
customers.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
body {
background-image: url('./images/customers.png');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
#all-cust{
text-align: center;
border-collapse: collapse;
width: 70%;
margin: 30px auto;
color: #d8d8d8;
}
#all-cust th, #all-cust td {
padding: 20px 10px;
background-color: #000000dd;
border-radius: 0px;
border: 2px solid #c1c0c0;
font-size: 18.5px;
}
#all-cust th {
color: #fff;
background-color: #000000;
text-transform: uppercase;
}
#all-cust h1{
font-size: 25px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: 400;
}
#all-cust a {
font-size: 18.5px;
color: #d8d8d8;
text-shadow: 4px 2px 4px #000000c3;
text-decoration: none;
border: none;
cursor: pointer;
}
#all-cust a:hover{
color: #94ef14;
}