forked from BCSDLab-Edu/FrontEnd_2025-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (58 loc) · 1.1 KB
/
style.css
File metadata and controls
69 lines (58 loc) · 1.1 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
body {
width: 80vw;
margin: 0 auto;
}
p {
font-size: 2.5vw;
font-weight: 700;
margin-top: 0;
margin-bottom: 2vw;
}
.title {
font-size: 10vw;
font-weight: 700;
text-align: center;
}
input {
padding: 2vw;
width: 75vw;
font-size: 3vw;
}
.filter_btn {
display: flex;
margin-bottom: 2vw;
justify-content: center;
}
.region-btn.selected {
background-color: black;
color: white;
}
.region-btn {
padding: 1vw;
margin: 1.5vw;
font-size: 2.5vw;
border-radius: 100vw;
border: 1px solid #000000;
}
.result_card {
display: flex;
margin-bottom: 2vw;
box-shadow: 0 1vw 10vw rgba(0,0,0,0.1);
background-color: white;
border: solid 1px #000000;
}
.result_item img {
padding-top: 1vw;
width: 50vw;
}
.result_item p {
font-size: 3vw;
font-weight: 700;
text-align: center;
}
.result_item_detail {
display: none;
padding: 2vw;
font-size: 2.5vw;
text-align: start;
}