-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathusing_api_practice.py.py
More file actions
150 lines (128 loc) · 2.27 KB
/
using_api_practice.py.py
File metadata and controls
150 lines (128 loc) · 2.27 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
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
* {
margin: 0; // 여백설정
padding: 0;
}
header { // 해더 스타일
height: 50px;
position: relative; // 상대적 위치설정
top: 0;
opacity: 0.8; // 투명도
backdrop-filter: blur(30px); // 흐리게
background-color: blue;
padding-left: 32px;
padding-right: 32px;
display: flex; // 좌우정렬
justify-content: space-between;
align-items: center;
color: black;
}
header > a {
color: wheat;
}
a {
text-decoration: none; // 밑줄 x
}
ul {
list-style-type: none; //
padding: 0;
}
li {
display: inline-block;
margin-left: 16px;
font-size: 18px;
font-weight: bold;
}
.info {
height: 15vh;
}
.itemDiv {
height: 140px;
width: 200px;
margin: 10px;
position: relative;
display: inline-block;
border: 1px solid burlywood;
font-size: 15px;
text-align: center;
border-radius: 5px;
cursor: pointer;
}
.itemDiv:hover {
box-shadow: 1px 1px 3px 1px skyblue;
}
.itemDiv:hover > .listTitle {
text-decoration: underline;
}
.imgwrap {
position: relative;
width: 100%;
height: 100px;
}
img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
}
.listTitle {
margin: 0 auto;
width: 120px;
height: auto;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-top: 8px;
}
.listwrap {
width: 905px;
margin: 0 auto;
}
.infowrapper > .dummy {
display: inline-block;
height: 15vh;
}
.infowrapper {
text-align: center;
margin-top: 30px;
}
.infoNumber {
text-align: center;
}
.search {
margin-top: 5vh;
}
.body {
background-image: url("../image/bg1.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.btnBack {
width: 50px;
height: 50px;
background-color: red;
cursor: pointer;
}
.btnBack:hover {
background-color: #fff;
}
.btnlist {
display: flex;
justify-content: center;
}
.pgbtn {
text-align: center;
font-size: 24px;
/*display*/
position: relative;
margin-left: 5px;
margin-right: 5px;
width: 35px;
height: 35px;
line-height: 35px;
display: inline-block;
cursor: pointer;
}
.pgbtn:hover {
transform: translateY(-2px);
}