-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay#.css
60 lines (51 loc) · 864 Bytes
/
display#.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
.container {
text-align: center;
margin-bottom: 20px;
}
body {
background-image: url("\Website1\images\background1.jpeg");
background-color: #cccccc;
}
.btn {
background-color: #337ab7;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.tbl {
margin: 0 auto;
width: 80%;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
tr:hover {
background-color: #e9e9e9;
}
button {
color: white;
background-color: green;
width: 90px;
height: 50px;
border-radius: 8px;
cursor: pointer;
border: none;
font-size: 100%;
margin-left: 10px;
}
a.text-light {
color: #fff;
text-decoration: none;
}