-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (97 loc) · 1.62 KB
/
Copy pathstyles.css
File metadata and controls
115 lines (97 loc) · 1.62 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
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f5f5f7;
}
.navbar {
display: flex;
justify-content: space-between;
padding: 12px 20px;
background: #222;
color: #fff;
}
.navbar a {
color: #fff;
margin-left: 10px;
text-decoration: none;
}
.container {
max-width: 900px;
margin: 20px auto;
background: #fff;
padding: 20px 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
h1, h2 {
margin-top: 0;
}
.form-card {
display: flex;
flex-direction: column;
gap: 10px;
}
input {
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
}
.btn {
display: inline-block;
padding: 8px 14px;
border-radius: 4px;
border: none;
background: #007bff;
color: white;
cursor: pointer;
text-decoration: none;
}
.btn.secondary {
background: #6c757d;
}
.btn.small {
padding: 5px 10px;
font-size: 0.85rem;
}
.btn:hover {
opacity: 0.9;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
th, td {
padding: 8px 10px;
border-bottom: 1px solid #ddd;
text-align: left;
}
.tag {
display: inline-block;
padding: 4px 8px;
border-radius: 12px;
background: #28a745;
color: white;
font-size: 0.8rem;
}
.flash-messages {
margin-bottom: 10px;
}
.flash {
padding: 8px 10px;
border-radius: 4px;
margin-bottom: 5px;
font-size: 0.9rem;
}
.flash.error {
background: #f8d7da;
color: #721c24;
}
.flash.success {
background: #d4edda;
color: #155724;
}
.flash.info {
background: #cce5ff;
color: #004085;
}