-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathstyle.css
221 lines (195 loc) · 3.55 KB
/
style.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
* {
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
font-family: 'Questrial', "微軟正黑體", sans-serif;
}
body {
border-top: 6px solid #555;
border-bottom: 6px solid #555;
}
.container {
padding: 30px 0px;
text-align: center;
}
.head {
margin: auto;
margin-bottom: 30px;
max-width: 1200px;
}
.head__btn {
display: inline-block;
overflow: hidden;
margin: 5px 15px;
padding: 10px 0px;
width: 160px;
outline: 0;
background-color: #333333;
color: #fafafa;
vertical-align: middle;
text-decoration: none;
cursor: pointer;
user-select: none;
}
.head__title {
padding: 10px 30px;
background-color: #f7df1e;
font-size: 60px;
font-family: 'Montserrat';
}
.head__info {
display: inline-block;
margin: 10px 15px 0px 15px;
}
.head__desc {
margin: 10px auto;
max-width: 80%;
letter-spacing: 2px;
font-weight: 300;
font-size: 18px;
line-height: 1.6;
}
.courseList {
margin: 0;
padding: 0;
}
.courseList li {
display: inline-block;
margin: 20px;
list-style-type: none;
}
.course {
position: relative;
display: inline-block;
width: 400px;
background-color: #fafafa;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
text-align: center;
transition: 0.5s;
transition: 0.3s;
transform: scale(1);
}
.course:hover {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
transform: scale(1);
}
.course:hover .course__ribbon {
width: 0;
}
.course:hover .course__ribbon::before {
left: 10px;
}
.course:hover .course__ribbon::after {
left: 10px;
}
.course:hover .course__no {
opacity: 0;
}
.course__title,
.course__desc {
margin: 2px 0px;
padding: 5px 10px;
background-color: #fafafa;
text-align: left;
font-size: 15px;
}
.course__btn {
display: inline-block;
overflow: hidden;
margin: 10px 5px;
padding: 10px 0px;
width: 120px;
outline: 0;
background-color: #333;
color: #fafafa;
vertical-align: middle;
text-decoration: none;
font-size: 14px;
cursor: pointer;
user-select: none;
}
.course__ribbon {
position: absolute;
top: 0px;
left: -10px;
width: 25%;
height: 36px;
background-color: #f7df1e;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
color: #333;
text-align: center;
transition: 0.5s;
}
.course__ribbon::before {
position: absolute;
left: 0px;
z-index: -1;
width: 10px;
height: 100%;
background-color: #b79e11;
content: "";
transition: 0.2s;
transition-delay: 0.5s;
}
.course__ribbon::after {
position: absolute;
top: 100%;
left: 0px;
z-index: -1;
width: 20px;
height: 9px;
background-color: #b79e11;
content: "";
transition: 0.2s;
transform: rotate(45deg);
}
.course__no {
position: absolute;
top: 50%;
left: 50%;
display: inline-block;
background-color: #f7df1e;
color: #333;
font-weight: 600;
font-size: 20px;
transition: 0.3s;
transform: translate(-50%, -50%);
}
.course__image {
position: relative;
cursor: pointer;
user-select: none;
}
.course__image img {
max-width: 100%;
}
.course__loading {
position: absolute;
top: 50%;
left: 50%;
display: none;
width: 100px;
height: 100px;
border: 5px solid #fafafa;
border-bottom: 5px solid transparent;
border-radius: 100%;
background-color: transparent;
animation: 1.5s linear infinite rotate;
}
@keyframes rotate {
from {
transform: translate(-50%, -50%) rotate(0deg);
}
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@media screen and (max-width: 500px) {
.container {
width: 100%;
}
.course {
width: 100%;
}
}