-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdash_2.css
More file actions
60 lines (51 loc) · 925 Bytes
/
dash_2.css
File metadata and controls
60 lines (51 loc) · 925 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
.dashboard {
display: flex;
flex-direction: row;
height: 100vh;
}
.navbar {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
.dashboard-content {
display: flex;
flex-direction: column;
flex-grow: 1;
background-color: #f0f0f0;
padding: 1rem;
}
.welcome-message {
margin-bottom: 2rem;
}
.dashboard-buttons button {
margin: 0.5rem;
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
}
.course-details {
flex-grow: 1;
margin-left: 1rem; /* Add margin for separation */
padding: 1rem;
background-color: #fff;
}
.courses-section {
display: flex;
justify-content: space-around;
background-color: #fff;
padding: 2rem;
}
.course-catalogue,
.course-enrolled,
.course-enroll,
.courses-disenrol {
display: none;
}
/* Additional styling for specific components goes here */