-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.css
More file actions
128 lines (121 loc) · 2.33 KB
/
courses.css
File metadata and controls
128 lines (121 loc) · 2.33 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.contain {
padding: 0;
margin: 0;
background-color: #ffffff;
position: relative;
}
.nav{
display: flex;
padding: 10px;
margin-top: 10px;
justify-content:space-between;
}
.nav-item-left{
display: flex;
list-style-type: none;
justify-content: space-between;
}
.nav-item-right{
display: flex;
list-style-type: none;
justify-content: space-between;
}
.nav-link {
text-decoration: none;
padding: 5px;
color: black;
font-family: 'Poppins', sans-serif;
font-size: .9rem;
font-weight: 500;
}
.nav-link-all {
text-decoration: none;
padding: 5px;
color: black;
font-family: 'Poppins', sans-serif;
font-size: .9rem;
font-weight: 500;
}
.nav-link-registered {
text-decoration: none;
padding: 5px;
color: black;
font-family: 'Poppins', sans-serif;
font-size: .9rem;
font-weight: 500;
}
.active{
color : #E83A59;
text-decoration: underline;
}
.nav-link:hover{
color : #E83A59;
text-decoration: underline dashed;
}
.card {
box-shadow: -10px 6px 5px 0px rgba(176,164,176,1) !important;
transition: all .3s ease-in-out !important;
}
.card:hover {
box-shadow: -3px 18px 20px 0px rgba(99,89,99,1) !important;
}
.heading {
text-align: center;
padding: 40px;
font-size: 2rem;
font-family: 'Poppins', sans-serif;
font-weight: 900;
}
.section-nav-ul{
display: flex;
list-style: none;
margin-left: auto;
margin-right: auto;
margin-bottom: 2px !important;
}
.button{
color: #ffffff !important;
background-color: #E83A59 !important;
padding: 5px 10px;
border-radius: 5px;
border: none;
}
.button > a {
text-decoration: none;
color: white;
}
.button > a:hover{
color: white;
}
.card-container{
display: flex;
justify-content: space-evenly;
flex-grow: 4;
flex-wrap: wrap;
flex: 1 0 auto;
font-family: 'Poppins', sans-serif;
}
.card-container > div{
margin: 10px;
}
.card-img-top{
width: 250px;
height: 250px;
}
.hide{
display: none;
}
.tab-all{
border: none;
background-color: white;
}
.tab-registered{
border: none;
background-color: white;
}
.image {
position: absolute;
top: 20%;
right: 10%;
}