-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.css
More file actions
132 lines (114 loc) · 2.23 KB
/
Copy pathresources.css
File metadata and controls
132 lines (114 loc) · 2.23 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
:root {
--primary: #0b5ed7;
--secondary: #f5f7fb;
--text-dark: #1f2937;
--text-light: #6b7280;
--border: #e5e7eb;
--radius: 10px;
}
body {
font-family: "Segoe UI", Roboto, sans-serif;
background: var(--secondary);
margin: 0;
color: var(--text-dark);
}
.page-wrapper {
padding: 30px;
}
.page-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
}
.card {
background: #fff;
border-radius: var(--radius);
padding: 25px;
box-shadow: 0 4px 14px rgba(0,0,0,.05);
margin-bottom: 25px;
}
.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 6px;
display: block;
}
.form-group input,
.form-group select {
width: 100%;
padding: 10px;
border-radius: 8px;
border: 1px solid var(--border);
font-size: 14px;
}
.form-group input[type="file"] {
padding: 8px;
}
.btn-primary {
background: var(--primary);
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.btn-primary:hover {
background: #084298;
}
.resource-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 20px;
}
.resource-card {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 15px;
background: #fff;
}
.resource-card h4 {
font-size: 16px;
margin: 0 0 8px;
}
.resource-meta {
font-size: 13px;
color: var(--text-light);
margin-bottom: 10px;
}
.resource-actions a {
display: inline-block;
margin-top: 8px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
color: var(--primary);
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
border: 1px solid #ccc;
}
th, td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}