-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsv.css
More file actions
102 lines (79 loc) · 1.41 KB
/
csv.css
File metadata and controls
102 lines (79 loc) · 1.41 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
97
98
99
100
101
102
/* styles.css */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #821212;
}
.container {
text-align: center;
}
form {
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
border: 1px solid #3efce0;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #121212;
}
body, h1, a {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Navbar Container */
.navbar {
background-color: #3c0101;
color: white;
padding: 10px 20px;
display: inline-block;
align-items: center;
justify-content: space-between;
}
.navbar-container {
display: inline-block;
align-items: center;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
/* Logo */
.logo img {
height: 40px;
width: auto;
}
/* Title */
.title {
flex-grow: 1;
text-align: flex;
font-size: 1.5em;
}
/* Nav Links */
.nav-links {
display: inline-block;
gap: 10px;
}
.btn {
text-decoration: none;
color: white;
background-color: #007BFF;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
}
.btn:hover {
background-color: #f76f6f;
}