-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (142 loc) · 3.46 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Gerasimof.</title>
<style>
@font-face {
font-family: "Gilroy";
src: local("Gilroy Light"), local("Gilroy-Light"),
url("Gilroylight.woff2") format("woff2"),
url("Gilroylight.woff") format("woff"),
url("Gilroylight.ttf") format("truetype");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Gilroy";
src: local("Gilroy ExtraBold"), local("Gilroy-ExtraBold"),
url("Gilroyextrabold.woff2") format("woff2"),
url("Gilroyextrabold.woff") format("woff"),
url("Gilroyextrabold.ttf") format("truetype");
font-weight: 800;
font-style: normal;
}
body {
font-family: Gilroy, Arial, Helvetica, sans-serif;
font-weight: 300;
background: #fafafa;
color: #5b5b5b;
}
h1 {
font-size: 5em;
margin: auto;
font-weight: 900;
}
h2 {
font-size: 2em;
font-weight: 300;
margin: auto;
}
.hero {
min-width: 100%;
}
.HELLO {
width: 100%;
margin: auto;
text-align: center;
margin-top: 30vh;
}
a {
background: blue;
color: white;
border: none;
border-radius: 50vh;
padding: 10px 15px;
transition: 0.2s ease-in-out;
text-decoration: none;
margin-top: 20px;
display: inline-block;
box-shadow: 0px 7px 14px rgba(0, 0, 255, 0.5);
}
a:hover {
box-shadow: none;
}
.signature {
padding-top: 50px;
text-align: right;
font-weight: 300;
margin-left: auto;
}
.love {
color: red;
font-size: 1em;
}
.line {
display: inline-block;
width: 20em;
}
.padding {
padding: 20px;
}
.myGit {
box-shadow: 0 7px 50px 0 rgba(187, 187, 187, 0.2);
border-radius: 17px;
margin-top: 30px;
max-width: 900px;
margin: 50px auto;
padding: 20px;
}
</style>
</head>
<body>
<div class="container">
<section class="hero">
<div class="HELLO">
<span style=""><h1 class="logo">Gerasimof.</h1></span>
<hr class="line" />
<span><h2>design | code | AR | VR</h2></span>
<a href="https://t.me/igerodot">send message</a>
</div>
</section>
<section class="myGit" href="github.con/gerodot">
<!-- Include the library. -->
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"></script>
<!-- Optionally, include the theme (if you don't want to struggle to write the CSS) -->
<link
rel="stylesheet"
href="https://unpkg.com/github-calendar@latest/dist/github-calendar-responsive.css"
/>
<style>
.calendar,
.contrib-column {
border: none;
}
</style>
<!-- Prepare a container for your calendar. -->
<div class="calendar">
<!-- Loading stuff -->
Loading the data just for you.
</div>
<script>
// GitHubCalendar(".calendar", "gerodot");
// or enable responsive functionality:
GitHubCalendar(".calendar", "gerodot", { responsive: true });
// Use a proxy
// GitHubCalendar(".calendar", "gerodot", {
// proxy(username) {
// return fetch(`https://your-proxy.com/github?user=${username}`);
// },
// }).then((r) => r.text());
</script>
</section>
<section class="signature">
<p class="">Crafted with <span class="love">♥︎</span> in SPb </p>
</section>
</div>
<!--<div class="design"></div>
<div class="code"></div>
<div class="vr"></div>
<div class="ar"></div>-->
</body>
</html>