-
Notifications
You must be signed in to change notification settings - Fork 0
/
abridged.html
145 lines (137 loc) · 3.39 KB
/
abridged.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
<html>
<head>
<meta charset="UTF-8">
<title>COOL WEBPAGE || CAN'T BE CLOSED SO DON'T BOTHER TRYING ||</title>
<style>
a:link {
color: rgb(0, 0, 0);
background-color: white;
text-decoration: none;
}
.content {
padding: 10px;
display: flex;
}
body {
background-color: #ffffff;
color: black;
font-family: 'Times New Roman', serif;
overflow: hidden;
height: 100%;
}
a:visited {
color: black;
background-color: white;
text-decoration: line-through solid currentcolor;
}
a:hover {
color: black;
background-color: white;
text-decoration: underline;
filter: drop-shadow(5px 2px 8px #ffffff);
}
a:active {
color: rgb(0, 0, 0);
background-color: white;
text-decoration: underline;
}
.window {
position: fixed;
width: 95%;
background-color: #fff;
z-index: 1;
background-color: white;
border-radius: 10px;
border: 3px solid black;
padding: 2px;
text-align: left;
}
.subwindow {
position: relative;
width: 40%;
background-color: #fff;
background-color: white;
}
.subwindowright {
position: relative;
padding-left: 5px;
border-left: 1px solid #000000;
flex: 1;
background-color: #fff;
z-index: 1;
background-color: white;
}
h1 {
font-size: 24px;
margin: 0 0 10px;
}
h2 {
font-size: 22px;
margin: 0 0 10px;
padding: 2px;
padding-right: 100px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
font-size: 18px;
margin-bottom: 10px;
padding: 0px;
}
p {
font-size: 18px;
margin-bottom: 10px;
padding: 0px;
}
.title-bar {
height: 30px;
background-color: #ffffff;
border-bottom: 1px solid #000000;
cursor: move;
box-sizing: border-box;
padding: 0 1px;
text-align: left
}
.title {
display: inline-block;
font-weight: bold;
padding: 5px;
font-size: 18px;
}
</style>
</head>
<body>
<div class="window">
<div class="title-bar">
<span class="title">◱ index.abridged</span>
</div>
<div class="content">
<div class="subwindow">
<h2>ℹ about</h2>
<p>My name is Wendy Zhulkovsky <br> This is an abridged version of my homepage for phone viewing.<br> The pages it loads are probably not optimized for mobile.</p>
</div>
<div class ="divider">
</div>
<div class="subwindowright">
<h2>🗀projects</h2>
<h3> ⮑keyboards</h3>
<ul>
<li><a href="https://pelmeniboiler.github.io/sunshine.html"> ➮sunshine_000.html</a></li>
<li> ➮coming_soon.placeholder</li>
<li> ➮coming_soon.placeholder</li>
<li> ➮coming_soon.placeholder</li>
</ul>
<h3> ⮑other</h3>
<ul>
<li> ➮coming_soon.placeholder</li>
<li> ➮coming_soon.placeholder</li>
<li> ➮coming_soon.placeholder</li>
</ul>
</div>
</div>
</div>
</body>
</html>