-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (114 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
141 lines (114 loc) · 2.8 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
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<head>
<meta property="og:title" content="Kanuyu"/>
<meta property="og:image" content="favicon.png">
<meta charset="utf-8">
<meta name="theme-color" content="#fabd2r1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>kanuyu</title>
<script src="https://kit.fontawesome.com/694c62599b.js" crossorigin="anonymous"></script>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navigation-bar">
<img draggable=false src="logo.svg" width="75" height="50"/>
<ul>
<li><a href="https://kanuyu.github.io/" draggable=false>Home</a></li>
</ul>
</div>
<div class="social-bar">
<a href="http://iloveloli.art"/>Powered by Lolinet ⚡</a>
<span>
<a href="https://www.youtube.com/@closecuppy" draggable=false><i class="fa-brands fa-youtube"></i></a>
<a href="https://discord.gg/qFcnVsM6Sa"draggable=false><i class="fa-brands fa-discord"></i></a>
<a href="https://github.com/kanuyu" draggable=false><i class="fa-brands fa-github"></i></a>
</span>
</div>
<br>
</body>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@450&display=swap');
:root {
--red: #cc241d;
--green: #98971a;
--yellow: #d79921;
--blue: #458588;
--purple: #b16286;
--aqua: #689d6a;
--gray: #a89984;
--bg0_h: #1d2021;
--bg0: #282828;
--bg1: #3c3836;
--bg2: #504945;
--bg3: #665c54;
--bg4: #7c6f64;
--fg0: #fbf1c7;
--fg1: #ebdbb2;
--fg2: #d5c4a1;
--fg3: #bdae93;
--fg4: #a89984;
}
.navigation-bar {
background-color: var(--bg0_h);
justify-content: space-between;
display: flex;
z-index: 999;
top: 0;
}
.navigation-bar ul li {
display: inline-block;
list-style: none;
margin: 0 20px;
}
.navigation-bar ul li a {
text-decoration: none;
}
.social-bar {
background-color: var(--bg0);
position: fixed;
z-index: 999;
width: 100%;
height: 4%;
bottom: 0;
}
.social-bar a {
text-decoration: none;
position: relative;
left: 0.8%;
top: 20%;
}
.social-bar span {
position: absolute;
right: 0.7%;
top: 25%;
}
.social-bar span i {
margin: 0 2px;
}
/* --------------------------------- */
* {
color: var(--fg0);
font-family: 'Montserrat', sans-serif;
}
::-moz-selection {
color: null;
background: null;
}
::selection {
color: null;
background: null;
}
input {
background-color: var(--bg1);
box-shadow: none;
border: 0;
}
body {
background-color: var(--bg0);
margin: 0;
}
</style>
<script>
</script>
</html>