Skip to content

Commit

Permalink
Sycinue-rdc Version 5.0 (J1103.5000)
Browse files Browse the repository at this point in the history
Version P-5.0 (RDC build J1103.5000)

- Simplified Landing Page
- Archive Library Migrated
- Cleaned Repository
  • Loading branch information
sycinue-rdc committed May 31, 2023
1 parent fe78a3b commit ec85e3d
Show file tree
Hide file tree
Showing 9 changed files with 583 additions and 0 deletions.
11 changes: 11 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<html lang="en">
<head>
<meta http-equiv="refresh" content="5; url = https://sycinue-rdc.github.io/archive">
<title>redirecting</title>
</head>
<body>
<p>this site has been moved to <a href="https://sycinue-rdc.github.io/">https://sycinue-rdc.github.io/</a></p>
<p>please wait a moment...</p>

</body>
</html>
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 サンチェス ユニシス

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Binary file added assets/fonts/Electrolize-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/XspaceRegular.ttf
Binary file not shown.
Binary file added assets/imgs/arc-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
210 changes: 210 additions & 0 deletions assets/style/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,210 @@
*, *::before, *::after {
scroll-behavior: smooth;
list-style-type: none;
text-decoration: none;
padding: 0;
margin: 0;
}

@font-face {
font-family: x-space;
src: url(../fonts/XspaceRegular.ttf);
}
@font-face {
font-family: electrolize;
src: url(../fonts/Electrolize-Regular.ttf);
}
body {
background-color: #0d1117;
}
body h1 {
text-align: center;
color: #46b6ff;
cursor: pointer;
transition: color ease 1s;
-webkit-transition: color ease 1s;
-moz-transition: color ease 1s;
-ms-transition: color ease 1s;
-o-transition: color ease 1s;
text-transform: uppercase;
}
body h1:hover {
color: #0044cd;
}
body h2 {
color: #137ade;
}
body p {
color: rgba(255, 255, 255, 0.5);
}
body a {
color: #7ee787;
transition: color ease 1s;
-webkit-transition: color ease 1s;
-moz-transition: color ease 1s;
-ms-transition: color ease 1s;
-o-transition: color ease 1s;
}
body a:hover {
color: #549a5a;
}
body #projects p {
color: rgb(185, 183, 183);
}
body span {
color: white;
cursor: pointer;
transition: color ease 1s;
-webkit-transition: color ease 1s;
-moz-transition: color ease 1s;
-ms-transition: color ease 1s;
-o-transition: color ease 1s;
}
body span:hover {
color: #7ee787;
}

#top-bar .container {
background-color: rgba(255, 255, 255, 0.1);
padding: 10px 50px;
display: flex;
flex-direction: row;
align-content: center;
align-items: center;
justify-content: space-between;
}
#top-bar .container .logo {
font-family: x-space;
font-size: 30px;
}
#top-bar .container img {
display: none;
}
#top-bar .container ul {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#top-bar .container ul li {
margin: 0 5px 0 5px;
}

#hero {
height: calc(100vh - 55px);
display: flex;
flex-wrap: nowrap;
justify-content: center;
text-align: center;
}
#hero .container {
margin-top: 30vh;
margin-left: 5em;
margin-right: 5em;
line-height: 2.5em;
}
#hero .container img {
height: 200px;
width: 200px;
border: 1em solid;
border-color: rgba(134, 134, 134, 0.1);
border-radius: 50%;
pointer-events: none;
}

#projects {
font-family: electrolize;
text-align: center;
background-color: rgba(189, 211, 230, 0.1);
}
#projects .container {
padding: 50px 0;
}
#projects .container ul {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
}
#projects .container ul li {
background-color: rgba(255, 255, 255, 0.1);
margin: 10px;
padding: 25px 50px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
transition: background-color ease 0.5s;
-webkit-transition: background-color ease 0.5s;
-moz-transition: background-color ease 0.5s;
-ms-transition: background-color ease 0.5s;
-o-transition: background-color ease 0.5s;
}
#projects .container ul li:hover {
background-color: rgba(255, 255, 255, 0.2);
}

#about {
font-family: electrolize;
margin: 50px 0;
}
#about .container {
padding: 0 5%;
}
#about .container p {
margin-top: 25px;
}

#contact {
font-family: electrolize;
background-color: rgba(0, 0, 0, 0.3);
}
#contact .container {
display: flex;
flex-direction: row;
flex: 50%;
justify-content: space-evenly;
padding: 20px 0;
}
#contact .container ul {
padding: 20px 20px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}

#footer {
font-family: electrolize;
text-align: center;
background-color: black;
display: block;
width: 100%;
}
#footer p {
font-size: smaller;
}

@media (max-width: 720px) {
#top-bar .container {
background-color: rgba(255, 255, 255, 0.1);
padding: 10px 50px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
}
#top-bar .container .logo {
font-family: x-space;
font-size: 30px;
}
#top-bar .container ul {
display: none;
}
#hero {
height: calc(100vh - 55px);
}
}/*# sourceMappingURL=style.css.map */
1 change: 1 addition & 0 deletions assets/style/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ec85e3d

Please sign in to comment.