forked from jijiseong/fe-newsstand
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (72 loc) · 3 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css" />
<title>News Stand</title>
</head>
<body>
<div class="container">
<div class="main-header">
<header class="title" onClick="window.location.reload()">
<img src="./asset/icons/Symbol.svg" class="news-logo" />
<h1 class="display-bold24 main-title">뉴스스탠드</h1>
</header>
<time class="today display-medium16">2023. 02. 10. 금요일</time>
</div>
<section class="news-bar">
<div class="news">
<div class="wrap-rolling-news"></div>
</div>
<div class="news">
<div class="wrap-rolling-news"></div>
</div>
</section>
<nav class="tab-and-viewer">
<div class="tabs">
<span class="all-press-btn selected-bold16">전체 언론사</span>
<span class="sub-press-btn available-medium16">내가 구독한 언론사</span>
</div>
<div class="viewer">
<button id="list-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path
d="M19 5V19H5V5H19ZM20.1 3H3.9C3.4 3 3 3.4 3 3.9V20.1C3 20.5 3.4 21 3.9 21H20.1C20.5 21 21 20.5 21 20.1V3.9C21 3.4 20.5 3 20.1 3ZM11 7H17V9H11V7ZM11 11H17V13H11V11ZM11 15H17V17H11V15ZM7 7H9V9H7V7ZM7 11H9V13H7V11ZM7 15H9V17H7V15Z"
fill="#879298"
/>
</svg>
</button>
<button id="grid-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M3 11V3H11V11H3ZM3 21V13H11V21H3ZM13 11V3H21V11H13ZM13 21V13H21V21H13ZM5 9H9V5H5V9ZM15 9H19V5H15V9ZM15 19H19V15H15V19ZM5 19H9V15H5V19Z" fill="#4362D0" />
</svg>
</button>
</div>
</nav>
<button class="left-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="42" viewBox="0 0 26 42" fill="none">
<path d="M25 1L1 21L25 41" stroke="#6E8091" />
</svg>
</button>
<button class="right-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="42" viewBox="0 0 26 42" fill="none">
<path d="M1 41L25 21L1 1" stroke="#6E8091" />
</svg>
</button>
<main class="grid"></main>
</div>
<div class="theme-toggle theme-toggle-js">
<span class="moon"></span>
<span class="sun"></span>
<small class="sun__ray"></small>
<small class="sun__ray"></small>
<small class="sun__ray"></small>
<small class="sun__ray"></small>
<small class="sun__ray"></small>
<small class="sun__ray"></small>
</div>
<script type="module" src="main.js"></script>
</body>
</html>