-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (110 loc) · 4.21 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
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
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-209142772-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-209142772-2');
</script>
<title> Home | Suclerious </title>
<link rel="shortcut icon" type="image/x-icon" href="https://suclerious.me/assets/logos/logok.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:site_name" content="Suclerious">
<meta property="og:url" content="https://suclerious.me">
<meta property="og:title" content="Suclerious">
<meta name="description" content="Suclerious Homepage.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://suclerious.me/assets/logos/logok.png" />
<meta name="theme-color" content="#6200ff">
<!--<link rel="stylesheet" href="https://suclerious.me/theme.css"> -->
<link rel="stylesheet" href="./theme.css">
<style>
.TitleHeader {
color: #A9A9A9;
font-size: 24px;
text-align: center;
margin-top: 1%;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #A9A9A9;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 100vh) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
<script>
function toggleNav() {
var sidenav = document.getElementById("mySidenav"),
main = document.getElementById("main");
//var change = document.getElementById("oben");
//change.innerHTML = change.innerHTML == "Close" ? 'Open' : 'Close';
sidenav.style.width = sidenav.style.width == "250px" ? '0' : '250px';
main.style.marginLeft = main.style.marginLeft === "250px" ? '0' : '250px';
}
function myFunction(x) {
x.classList.toggle("change");
}
</script>
</head>
<body style="max-width: 100%; max-height: 100%;">
<section style="height: 90%;">
<div class="topnavlogo">
<a href="https://suclerious.me" tag="TopRightLogo"><img src="https://suclerious.me/assets/logos/logok_128x128.png" alt="Logo" align="left" style="width:75px;height:75px; padding-left: 16px; padding-top: 12px;"/></a>
</div>
<div class="topnav">
<span style="cursor:pointer;" id="oben" onclick="toggleNav();" style="width: 300px;">☰ Menu </span>
</div>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="toggleNav();">×</a>
<a href="https://suclerious.me/beats/">Beats</a>
<a href="https://suclerious.me/contact">Contact</a>
</div>
<div style="background-image: url('https://suclerious.me/assets/logos/logok.png'); width: 250px; height:253px; margin: auto; margin-top: 10vw;"></div>
<div class="TitleHeader">
<h1>Suclerious</h1>
<p>Coming soon</p>
<hr noshade width="250px" color="A9A9A9">
</div>
</section>
<footer class="footer" style="background-color: #1e2021; width: 100%; margin: auto;">
<div class="Logos">
<ul class="icons" style="list-style-type: none; margin: auto;">
<li><a href="https://github.com/DaytonWallace"><img src="src/assets/logos/github-mark.png" class="GitHubLogo" alt="GitHubLogo" style="max-width: 3vw; height: auto; margin-left: 45vw;"></a></li>
<li><a href="https://www.beatstars.com/suclerious"><img src="src/assets/logos/SYMBOL - DARK.png" class="BeatStarsLogo" style="max-width: 2vw; height: auto; margin-left: 2.5vw; display: inline-block;"/></a></li>
</ul>
</div>
<ul class="copyright" style="list-style-type: none; text-align: center; margin-left: -1vw;">
<li style="color: #A9A9A9">© Suclerious. All rights reserved.</li>
</ul>
</footer>
</body>