Update
This commit is contained in:
parent
9f9e033df2
commit
258ad34669
6 changed files with 705 additions and 414 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||||
<script src="./scripts/mobileScroll.js"></script>
|
<script src="./scripts/mobileScroll.js"></script>
|
||||||
|
|
@ -21,7 +22,7 @@
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<span id="to_fragments">
|
<span id="to_fragments">
|
||||||
<a href="./fragment.html">
|
<a href="./fragments.html">
|
||||||
FRAGMENTS
|
FRAGMENTS
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi -->
|
<!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi -->
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||||
<script src="./scripts/mobileScroll.js"></script>
|
<script src="./scripts/mobileScroll.js"></script>
|
||||||
|
|
@ -22,7 +24,7 @@
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<span id="to_fragments">
|
<span id="to_fragments">
|
||||||
<a href="./fragment.html">
|
<a href="./fragments.html">
|
||||||
FRAGMENTS
|
FRAGMENTS
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -3,6 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi -->
|
<!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi -->
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
<link rel="stylesheet" type="text/css" href="./style/common.css" />
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||||
<script src="./scripts/mobileScroll.js"></script>
|
<script src="./scripts/mobileScroll.js"></script>
|
||||||
|
|
@ -32,7 +34,7 @@
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<span id="to_fragments">
|
<span id="to_fragments">
|
||||||
<a href="./fragment.html">
|
<a href="./fragments.html">
|
||||||
FRAGMENTS
|
FRAGMENTS
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
435
src/original.svg
435
src/original.svg
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 105 KiB |
|
|
@ -21,6 +21,33 @@
|
||||||
/***** common *****/
|
/***** common *****/
|
||||||
* { margin: 0; font-family: Arial, Helvetica, sans-serif; word-break: keep-all;}
|
* { margin: 0; font-family: Arial, Helvetica, sans-serif; word-break: keep-all;}
|
||||||
a, a:hover, a:visited {color:black;}
|
a, a:hover, a:visited {color:black;}
|
||||||
|
.label {
|
||||||
|
font-size: 24px;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.menu {
|
||||||
|
font-size: 18px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.menu:hover {
|
||||||
|
/* 밑줄 효과 */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.body_text {
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 22.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover text, a:focus text, a:active text { animation-duration: 1s; animation-name: rainbowLink; animation-iteration-count: infinite; }
|
||||||
|
@keyframes rainbowLink {0% {fill: #ff2a2a;} 15% {fill: #ff7a2a;} 30% {fill: #ffc52a; }45% {fill: #43ff2a; }60% {fill: #2a89ff; }75% {fill: #202082; }90% {fill: #6b2aff; } 100% {fill: #e82aff; }}
|
||||||
|
|
||||||
/***** mobile *****/
|
/***** mobile *****/
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue