-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (44 loc) · 668 Bytes
/
style.css
File metadata and controls
48 lines (44 loc) · 668 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
* {
margin: 0px;
padding: 0px;
}
.episode {
border: 1px solid red;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 10px;
}
.episode h2 {
height: 55px;
text-align: center;
}
.episode img {
max-width: 100%;
}
.link {
margin-top: auto;
}
select {
width: 130px;
}
#sort {
margin: 50px 10px 40px;
padding-bottom: 20px;
display: flex;
flex-direction: row;
align-items: center;
gap: 30px;
border-bottom: 2px solid black;
}
#root {
margin: 0px 10px 20px;
display: grid;
grid-template-columns: repeat(auto-fill, 300px);
gap: 20px;
}
#backBtn {
position: absolute;
top: 100px;
}