-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
232 lines (197 loc) · 5.93 KB
/
index.html
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
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html>
<head>
<title>나의 프로젝트!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=Black+And+White+Picture&family=Gugi&display=swap');
/*
font-family: 'Black And White Picture', sans-serif;
font-family: 'Gugi', sans-serif;
*/
html,
body,
h1,
h2 {
margin: 0;
padding: 0;
}
html,
body {
overflow-x: hidden;
}
body {
background: url(./imgs/worksbg.jpg) no-repeat fixed center/cover;
}
/* 초기화 */
ul {
margin: 0;
padding: 0;
list-style: none;
}
a {
color: #222;
text-decoration: none;
}
.wrap {
width: 1200px;
max-width: 85%;
background-color: rgba(255, 255, 255, 0.7);
margin: 0 auto;
margin-top: 50px;
margin-bottom: 50px;
border-radius: 15px;
padding: 15px;
white-space: nowrap;
}
.tit {
text-align: center;
}
.tit img {
max-width: 80%;
/* 이미지 크기의 80%보다 작아질때 최대 80%크기유지!
이 사이즈 보다 크면 원래 이미지 사이즈를 유지함! */
}
/* 프로젝트 박스 */
.pbx {
display: flex;
/* 자식 블록요소를 옆으로 흐르게함! */
}
.pbx>div {
position: relative;
flex: 1;
/* 부모가 flex인 자식을 등분할시 설정값은 1 */
padding: 10px;
}
.pbx h2 {
font-family: 'Gugi', sans-serif;
color: #fff;
font-weight: normal;
text-shadow: 2px 2px 2px #000;
font-size: 3rem;
text-align: center;
}
.pbx ul {
padding-top: 50px;
}
.pbx ul li {
padding-left: 5rem;
}
.pbx>div:first-child::after {
content: '';
position: absolute;
width: 1px;
height: 70%;
top: 20%;
right: 10%;
border-right: 4px dotted rgb(204, 133, 0);
}
.pbx a {
font-family: 'Black And White Picture', sans-serif;
font-size: 2rem;
line-height: 2;
}
.pbx a:hover {
color: rgb(251, 123, 48);
text-decoration: overline;
}
/* 미디어쿼리 - 1000px이하 */
@media screen and (max-width:1000px) {
.pbx {
flex-direction: column;
/* 레이아웃 진행방향 세로! */
text-align: center;
}
.pbx>div:first-child::after {
width: 60%;
height: 1px;
top: auto;
bottom: 0;
right: 20%;
border-right: none;
border-bottom: 4px dotted rgb(204, 133, 0);
}
.pbx>div:last-child {
margin-top: 50px;
}
.pbx ul li {
padding-left: 0;
}
.pbx a {
font-size: 7vmin;
}
.pbx h2 {
font-size: 8vmin;
}
}
/* 1000px이하 */
</style>
</head>
<body>
<div class="wrap">
<h1 class="tit">
<img src="imgs/mylogo_14.png" alt="아카이브로고">
</h1>
<div class="pbx">
<!-- 공통프로젝트 -->
<div>
<h2>공통프로젝트</h2>
<ul>
<li>
<a href="001.HTML학습/01.Info_PJ/info.html" target="_blank">
기본전달사항
</a>
</li>
<li>
<a href="999.portfolios/" target="_blank">
포폴관리페이지
</a>
</li>
<li>
<a href="001.HTML학습/02.Drama_PJ/drama1.html" target="_blank">
드라마 테이블
</a>
</li>
<li>
<a href="001.HTML학습/04.Robot_PJ/avengers.html" target="_blank">
어벤저스
</a>
</li>
<li>
<a href="001.HTML학습/03.DKB_PJ/" target="_blank">
도깨비 PJ
</a>
</li>
<li>
<a href="001.HTML학습/07.CGV_PJ/003.site/intro.html" target="_blank">
CGV PJ
</a>
</li>
</ul>
</div>
<!-- 개인프로젝트 -->
<div>
<h2>개인프로젝트</h2>
<ul>
<li>
<a href="001.HTML학습/01.Info_PJ/info.html" target="_blank">
기본전달사항
</a>
</li>
<li>
<a href="999.portfolios/" target="_blank">
포폴관리페이지
</a>
</li>
<li>
<a href="001.HTML학습/03.DKB_PJ/" target="_blank">
도깨비 PJ
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>