forked from BCSDLab-Edu/FrontEnd_2025-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
103 lines (89 loc) · 1.47 KB
/
App.css
File metadata and controls
103 lines (89 loc) · 1.47 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
body {
text-align: center;
padding-top: 5vw;
padding-bottom: 10vw;
background-color: #000000;
}
h1 {
margin-bottom: 10vw;
font-size: 8vw;
color: #ffffff;
}
#movie_list {
display: flex;
flex-wrap: wrap;
gap: 2vw;
justify-content: center;
}
.movie {
width: 30vw;
background-color: #ffffff;
padding-bottom: 2.5vw;
}
.movie img {
width: 100%;
}
#p_text{
display: column;
justify-content: center;
}
.movie p {
display: flex;
justify-content: center;
margin: 0;
font-size: 2.5vw;
color: #000000;
}
#title {
font-size: 3vw;
font-weight: 700;
color: #000000;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #000000;
display: flex;
justify-content: center;
align-items: flex-start;
overflow-y: auto;
z-index: 1000;
padding: 5vw 0;
}
.modal.hidden {
display: none;
}
.modal-content {
width: 80vw;
color: #fff;
padding: 5vw;
position: relative;
text-align: left;
margin-bottom: 10vw;
}
.modal-content img {
width: 50vw;
margin: 0 auto 2vw auto;
display: block;
}
.modal-content #title {
font-size: 5vw;
font-weight: 700;
color: #ffffff;
margin-bottom: 2vw;
}
.modal-content p {
font-size: 3vw;
color: #ffffff;
margin-bottom: 2vw;
}
.close {
position: absolute;
top: 2vw;
right: 5vw;
font-size: 10vw;
color: #ffffff;
}