-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (36 loc) · 873 Bytes
/
Copy pathstyle.css
File metadata and controls
36 lines (36 loc) · 873 Bytes
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
/* Basic styling for body and container */
body {
background-color: #f8f9fa;
padding-top: 40px;
padding-bottom: 80px; /* Extra space at the bottom for the fixed footer */
}
.container {
max-width: 800px;
}
/* Styling for the joke display area */
.joke-display {
background: #ffffff;
border: 1px solid #dee2e6;
padding: 20px;
border-radius: 5px;
}
/* Margin for rating buttons */
.rating-buttons button {
margin-right: 10px;
}
/* Styling for the ranking section table */
.ranking-table {
margin-top: 30px;
}
/* Fixed footer styling */
footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #343a40;
color: #ffffff;
text-align: center;
padding: 10px 0;
font-size: 0.9rem;
}