-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.css
More file actions
96 lines (83 loc) · 1.34 KB
/
Copy pathlist.css
File metadata and controls
96 lines (83 loc) · 1.34 KB
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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
.header {
overflow: hidden;
background-color: white;
padding: 1px 1px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a:hover {
background-color: white;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
.header-right {
float: none;
}
}
h1 {
position: relative;
text-align: center;
}
.header a:hover {
background-color: #ddd;
color: black;
}
/*Body Section Styling*/
.button
{
background-color: dodgerblue;
border-radius: 4px;
font-size: 18px;
color: white
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px;
}
.centre{
position: relative;
align-content: center;
}
.footer
{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color:rgb(255,69,0,0.85);
color: white;
text-align: center;
padding: adding:10px;
font-size:10px;
}