-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsty.css
148 lines (117 loc) · 2.18 KB
/
sty.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
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
/*course-inner*/
#course-inner{
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 8vw;
}
#course-inner h3{
color: #29303B
}
#course-inner p{
color: #64626e;
}
#course-inner hr{
height: 1px;
background: rgba(236,226, 229, 0.5);
margin-top: 40px;
}
#course-inner .overview{
width: 70%;
}
#course-inner .overview .course-img{
width: 100%;
height: 60vh;
object-fit: cover;
border-radius: 12px;
margin-bottom: 20px;
}
#course-inner .overview .course-head{
display: flex;
align-items: flex-start;
justify-content: space-between;
}
#course-inner .overview .course-head .c-name{
width: 70
}
#course-inner .overview .course-head .c-name h2{
color:#29303B;
}
#course-inner .overview .course-head .c-name .star{
margin: 6px 0;
}
#course-inner .overview .course-head .c-name .star i{
color: #FDC93B;
font-size: 0.9rem;
}
#course-inner .overview .course-head .c-name p{
font-size: 15px;
}
#course-inner .overview .course-head span{
padding: 16px 22px;
border-radius: 5px;
color: #5838fc;
font-size: 24px;
font-weight: 700;
background-color: rgba(88, 56, 252, 0.1);
}
#course-inner .learn p{
font-size: 15px;
padding-bottom: 15px;
color: black;
}
#course-inner .learn p i{
color: #654ce4;
font-weight: 700;
margin-right: 20px;
}
#course-inner .tutor{
display: flex;
}
#course-inner .tutor img{
width: 70px;
height: 70x;
border-radius: 50%;
margin-right: 20px;
}
#course-inner .tutor h5{
font-size: 15px;
color:#29303B;
}
#course-inner .enroll{
width: 300px;
padding: 0 30px 30px 30px;
border-radius: 11px;
box-shadow: 0px 20px 40px 0 rgb(15 7 77 / 20%);
}
#course-inner .enroll h3{
padding-bottom: 10px;
}
#course-inner .enroll p{
font-size: 15px;
color: #64626e
margin: 15px 0;
padding-bottom: 20px;
}
#course-inner .enroll p i{
color: #654ce4;
margin-right: 18px;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
}
#course-inner .enroll .enroll-btn{
padding: 25px 0 20px 0;
margin: auto;
text-align: center;
}
#course-inner .enroll .enroll-btn a{
text-decoration: none;
font-size: .8rem;
padding: 13px 45px;
border-radius: 5px;
font-weight: 600;
color: #ffff;
background: rgb(50, 50, 136);
}