-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteampage.html
More file actions
129 lines (110 loc) · 6.62 KB
/
Copy pathteampage.html
File metadata and controls
129 lines (110 loc) · 6.62 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
<!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>
.inner {
display: flex;
flex-direction: column;
justify-content: baseline;
align-items: center;
}
.topBox {
display: flex;
flex-direction: row;
justify-content: baseline;
align-items: center;
}
</style>
<link rel='stylesheet' type='text/css' href='teampage.css'>
<link rel='stylesheet' type='text/css' href='calendar.css'>
<script type = "text/javascript" src='calendar.js'></script>
</head>
<body>
<div class="inner">
<h1 style="margin-right:1000px; margin-bottom: 30px; margin-top:30px;">팀명입니다</h1>
<div class="topBox"style = "margin-bottom: 100px">
<div class="calendarBox" style="margin-left: 100px">
<div class = "left" style = "width : 600px;">
<div class="calendar" style = "margin : 0 ;text-align: center; justify-content: center">
<div class="header">
<div class="year-month" id = "year-month"></div>
<div class="nav">
<button class="nav-btn go-prev" onclick="prevMonth()"><</button>
<button class="nav-btn go-today" onclick="goToday()">Today</button>
<button class="nav-btn go-next" onclick="nextMonth()">></button>
</div>
</div>
<div class="main">
<div class="days">
<div class="day">일</div>
<div class="day">월</div>
<div class="day">화</div>
<div class="day">수</div>
<div class="day">목</div>
<div class="day">금</div>
<div class="day">토</div>
</div>
<div class="dates" id = "dates"></div>
</div>
</div>
<script type = "text/javascript" src='calendar.js'></script>
</div>
</div>
<div class style="width: 150px;"></div>
<div class="detailSchedule">
<div class = "right" style = "width : 497px; margin-bottom: 30px;">
<h2 style="margin-bottom:30px;">세부 일정
<button class = "addSchedule" style="margin-left:auto; font-size:20px; color:white; background-color: #A0CD63; border-radius: 20px; margin-top:20px; border:none; width:150px; height:40px; cursor:pointer;">일정 추가</button>
</h2>
<div class = "detailSchedule" style="flex-direction: row">
<div class="detail1" style="
height: 68px;background-image: url(img/detailSchedule.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">우리 대체 언제 만나 ?</p>
</div>
<div class="detail2" style="
height: 68px;background-image: url(img/detailSchedule2.png);margin-bottom: 30px">
<p style="font-size: 30px; text-align: center">언제만나 지금만나</p>
</div>
<div class="detail3" style="
height: 68px;background-image: url(img/detailSchedule.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">우리 대체 언제 만나 ?</p>
</div>
<div class="detail4" style="
height: 68px;background-image: url(img/detailSchedule2.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">우리 대체 언제 만나 ?</p>
</div>
</div>
</div>
</div>
</div>
<div class="bottomBox">
<div class = "minutes" style="justify-content: center">
<div class = "dummy" style="display :flex;flex-direction: row">
<div class="minutesdummy1" style="
width:251px;height: 63px;background-image: url(img/minutesleft.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">date</p>
</div>
<div class="minutesdummy2" style="
width:800px;height: 63px;background-image: url(img/minutesright.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">title</p>
</div>
</div>
<div class = "dummy" style="display:flex;flex-direction: row">
<div class="minutesdummy1" style="
width:251px;height: 63px;background-image: url(img/minutesleft.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">date</p>
</div>
<div class="minutesdummy2" style="
width:800px;height: 63px;background-image: url(img/minutesright.png);margin-bottom: 30px">
<p style="font-size: 30px;text-align: center">title</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>