-
Notifications
You must be signed in to change notification settings - Fork 10
/
admin-dashboard.css
114 lines (93 loc) · 1.87 KB
/
admin-dashboard.css
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.dashboard-wrap > nav {
max-width: 200px;
display: flex;
flex-direction: column;
justify-content: space-around;
position: fixed;
height: 100%;
z-index: 1;
}
.dashboard-wrap > nav > ul > li > .dashboard-icon {
display: flex;
justify-content: center;
align-items: center;
}
.dashboard-wrap > nav > ul > li > ul > li > a {
display: flex;
justify-content: center;
align-items: center;
}
.dashboard-wrap > nav > button {
border: none;
background: #004699;
width: 80%;
padding: 5px;
border-radius: 5px;
color: #F9FAFC;
}
.dashboard-content {
margin: 0 auto;
margin-left: 217px;
}
nav.top-nav {
display: flex;
justify-content: space-between;
}
.courses {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
grid-gap: 5rem;
}
.courses > .card {
border-radius: 6.5px;
}
.courses > .card .card-buttons {
display: flex;
justify-content: space-between;
}
.courses > .card .card-buttons > button {
width: 47%;
}
.courses > .card .card-buttons > button {
display: flex;
justify-content: space-between;
align-items: center;
}
.courses > .card .card-buttons > .btn-delete {
border: 1.4px solid #0050AF;
color: #0050AF;
}
.courses > .card .card-buttons > .btn-delete:hover {
background-color: #0050AF;
color: #fff;
}
.courses > .card .card-buttons > .btn-edit {
background-color: #0050AF;
border: none;
}
.add-new-course {
border: 2px dashed #0050AF;
}
.add-new-course > div > button {
border: none;
background: none;
}
/*** UTILITIES ***/
.text-white {
color: #F9FAFC;
}
.text-yellow {
color: #FFC100;
}
.text-blue {
color: #1F59BB
}
.active {
background: #004699;
height: 100%;
padding: 15px 0;
width: 100%
}