-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (122 loc) · 3.78 KB
/
index.html
File metadata and controls
132 lines (122 loc) · 3.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>About Me</title>
<meta
name="description"
content="Part portfolio, part personal archive."
/>
<link rel="canonical" href="https://about.micr.dev/" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://about.micr.dev/" />
<meta property="og:title" content="About Me" />
<meta
property="og:description"
content="Part portfolio, part personal archive."
/>
<meta name="theme-color" content="#ffffff" />
<link rel="icon" type="image/png" href="favicon.png" />
<!-- Preload your custom font -->
<link
rel="preload"
href="fonts/DecimaMono.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<!-- Your stylesheet -->
<link rel="stylesheet" href="style.css" />
<style>
.mobile-blocker {
display: none;
}
@media (max-width: 768px) {
.mobile-blocker {
display: flex;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: white;
color: black;
font-family: "Comic Sans MS", cursive, sans-serif;
font-size: 20px;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
z-index: 999999;
max-width: 100%;
box-sizing: border-box;
word-wrap: break-word;
overflow-wrap: break-word;
}
.page-rotate,
.container {
display: none !important;
}
}
</style>
</head>
<body class="is-loading">
<div class="mobile-blocker">
soz id rather kms than make my websites responsive on mobile<br /><br />
come back on desktop ^_^
</div>
<div class="page-rotate">
<div class="container">
<div class="left-column" id="content" aria-live="polite">
<div class="skeleton-block skeleton-intro" aria-hidden="true">
<div class="skeleton-line skeleton-line-wide"></div>
<div class="skeleton-line skeleton-line-short"></div>
<div class="skeleton-line"></div>
<div class="skeleton-line"></div>
<div class="skeleton-line skeleton-line-wide"></div>
</div>
<div class="skeleton-block" aria-hidden="true">
<div class="skeleton-label"></div>
<div class="skeleton-line"></div>
<div class="skeleton-line"></div>
<div class="skeleton-line skeleton-line-short"></div>
</div>
<div class="skeleton-block" aria-hidden="true">
<div class="skeleton-label"></div>
<div class="skeleton-grid">
<div class="skeleton-tile"></div>
<div class="skeleton-tile"></div>
<div class="skeleton-tile"></div>
<div class="skeleton-tile"></div>
<div class="skeleton-tile"></div>
<div class="skeleton-tile"></div>
</div>
</div>
</div>
<div class="right-fixed">
<div class="hero-wrap">
<div class="hero-skeleton" aria-hidden="true"></div>
<img
src="images/right-image.png"
alt=""
aria-hidden="true"
class="hero-img"
/>
<a
href="https://quarzite.micr.dev/"
target="_blank"
rel="noopener noreferrer"
class="masked-link"
aria-label="Quarzite"
></a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>