-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.18 KB
/
style.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
body {
text-align: left;
margin-left: 350px;
margin-top: 50px;
margin-right: 200px;
background-color: rgb(241, 241, 235);
}
h1 {
font-size: 40px;
margin-top: 50px
}
p {
font-size: 17px;
}
.sidenav {
height: 100%;
width: 300px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgb(28, 27, 46);
overflow-x: hidden;
font-size: 25px;
}
.sidenav a {
color: white;
padding: 50.5px;
text-decoration: none;
display: block;
}
.sidenav a:hover {
background-color: rgb(194, 13, 88);
color: rgb(255, 255, 255);
}
.sidenav a:active {
background-color: rgb(92, 4, 40);
color: rgb(255, 255, 255);
}
#customers {
border-collapse: collapse;
width: 100%;
margin-top:30px;
margin-bottom:100px;
}
#customers td, #customers th {
border: 0px solid rgb(241, 241, 241);
padding: 8px;
}
#customers tr:nth-child(even){background-color: #e4e4e4;}
#customers tr:hover {background-color: rgb(194, 13, 88);
color: white;}
#customers th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: rgb(28, 27, 46);
color: white;
}
hr.solid {
border-top: 8px solid rgb(194, 13, 88);
}