-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTheProcessOfProjectMaking.html
More file actions
153 lines (140 loc) · 3.9 KB
/
TheProcessOfProjectMaking.html
File metadata and controls
153 lines (140 loc) · 3.9 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
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: rgb(164, 170, 206);
}
.wrap {
width: 1200px;
margin-top: 50px;
}
.wrap::after {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 10px;
z-index: -999;
height: 100%;
background-color: rgb(111, 80, 139);
transform: translateX(-50%);
}
.box {
position: relative;
width: 100%;
height: 150px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.left, .right {
position: relative;
width: 50%;
height: 140px;
border-radius: 20px;
text-align: center;
color: rgb(90, 90, 90);
font-size: 28px;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent; /* 設為透明 */
}
.box:nth-child(even) .left {
background-color: rgba(255, 255, 255, .4);
}
.box:nth-child(odd) .right {
background-color: rgba(255, 255, 255, .4);
}
.center {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.center>span {
width: 280px;
border-radius: 50px;
text-align: center;
font: 900 35px 'Arial', sans-serif;
line-height: 30px;
background-color: #976bc0;
color: #fff;
padding: 20px;
display: inline-block;
}
</style>
</head>
<body>
<div class="wrap">
<div class="box">
<div class="left"></div>
<div class="center"><span>
2023/11/27 Week 1
</span></div>
<div class="right">
...毫無頭緒...<br>
...有點想法...<br>
...想法混亂...<br>
</div>
</div>
<div class="box">
<div class="left">
網頁主題、分頁內容構思<br>
Lab課嘗試實作
</div>
<div class="center"><span>
2023/12/04 Week 2
</span></div>
<div class="right"></div>
</div>
<div class="box">
<div class="left"></div>
<div class="center"><span>
2023/12/11 Week 3
</span></div>
<div class="right">
G_G...砍掉重練...<br>
Q_Q...重新構思...<br>
X_X...嘗試實作...<br>
</div>
</div>
<div class="box">
<div class="left">
主題確定<br>
產出中<br>
測試 + 修理bug<br>
</div>
<div class="center"><span>
2023/12/18 Week 4
</span></div>
<div class="right"></div>
</div>
<div class="box">
<div class="left"></div>
<div class="center"><span>
2023/12/25 Week 5
</span></div>
<div class="right">
最後測試<br>
小專發表
</div>
</div>
</div>
</body>
</html>