-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprof_dashboard.css
More file actions
161 lines (134 loc) · 2.88 KB
/
Copy pathprof_dashboard.css
File metadata and controls
161 lines (134 loc) · 2.88 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
text-align: center;
background-color: #191c2f;
color: white;
padding: 20px;
}
header h1 {
margin: 0;
}
header .subtitle {
font-size: 16px;
margin-top: 5px;
}
main {
padding: 20px;
}
/* Create Project Section */
.create-project-section {
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.create-project-section h2 {
margin-top: 0;
}
.create-project-section form {
display: flex;
flex-direction: column;
gap: 15px;
}
.create-project-section label {
font-weight: bold;
}
.create-project-section input,
.create-project-section textarea,
.create-project-section button {
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
}
.create-project-section button {
background-color: #46e589b0;
color: white;
cursor: pointer;
border: none;
transition: background-color 0.3s;
}
.create-project-section button:hover {
background-color: #3733a3;
}
/* Projects Section */
.projects-section {
margin-top: 20px;
}
.projects-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.project-card {
background: white;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.project-card h3 {
margin: 0 0 10px;
}
.project-card p {
margin: 5px 0;
}
/* Applications Section */
.applications-section {
margin-top: 20px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.applications-section h2 {
margin-top: 0;
}
.applications-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.application-card {
padding: 15px;
border-radius: 8px;
background-color: #f9f9f9;
border: 1px solid #ddd;
}
.application-card p {
margin: 5px 0;
}
.manage-buttons {
display: flex;
gap: 10px;
margin-top: 10px;
}
.manage-buttons button {
padding: 8px 12px;
font-size: 14px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.manage-buttons .accept-btn {
background-color: #28a745;
color: white;
}
.manage-buttons .accept-btn:hover {
background-color: #218838;
}
.manage-buttons .decline-btn {
background-color: #dc3545;
color: white;
}
.manage-buttons .decline-btn:hover {
background-color:#c82333;
}