-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (71 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (71 loc) · 1.85 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
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
}
.container {
text-align: center;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 100%;
}
.info-button {
margin-top: 10px;
padding: 10px 15px;
font-size: 14px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.info-button:hover {
background-color: #0056b3;
}
.info-section {
margin-top: 20px;
text-align: left;
padding: 15px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
}
.info-section a {
color: #007bff;
text-decoration: none;
}
.info-section a:hover {
text-decoration: underline;
}
.footer {
margin-top: 20px;
font-size: 14px;
color: #555;
text-align: center;
}.footer {
position: absolute;
bottom: 0; /* Position the footer at the very bottom of the page */
left: 0;
width: 100%; /* Make the footer span the entire width */
text-align: center; /* Center the content inside the footer */
font-size: 14px;
color: #555;
background-color: #f4f4f4; /* Optional: Matches the body background color */
padding: 10px 0; /* Add some padding for better spacing */
box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle top shadow */
}
.footer a {
color: #007bff;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}