Skip to content

Commit 12cc883

Browse files
committed
aaaaaaaaa
1 parent ca93e71 commit 12cc883

File tree

3 files changed

+56
-2
lines changed

3 files changed

+56
-2
lines changed

projects/index.html

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
1-
<h1>Under construction!</h1>
2-
<p>You shouldn't be here. Go along now.</p>
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>conis projects on the web</title>
7+
<!-- Reuse the stylesheet because i am lazy -->
8+
<link rel="stylesheet" href="../res/css/styles.css">
9+
</head>
10+
<body>
11+
<div class="navbar">
12+
<a href="../index.html">Home</a>
13+
<a href="projects/index.html">Projects</a>
14+
</div>
15+
16+
<div class="grid">
17+
<div class="panel">
18+
<img src="../res/cat.jpg" alt="Profile Picture" class="profile-pic">
19+
<h1>scratch2-online</h1>
20+
<p>Ruffle-hosted version of Scratch 2.</p>
21+
<div class="contact-links">
22+
<a href="scratch2/index.html">Start scratching!</a>
23+
</div>
24+
</div>
25+
<div class="panel">
26+
<h1>Under construction</h1>
27+
<p>Under construction</p>
28+
</div>
29+
</div>
30+
</body>
31+
</html>

res/cat.jpg

14.6 KB
Loading

res/css/styles.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,28 @@ p {
8585
background: #d4cfc4;
8686
box-shadow: inset 2px 2px 4px #aaa;
8787
}
88+
89+
/* dirty hack to support iOS 6 safari and old browsers */
90+
91+
.grid {
92+
font-size: 0;
93+
text-align: center;
94+
}
95+
96+
.grid > div {
97+
display: inline-block;
98+
vertical-align: top;
99+
width: 48%;
100+
margin: 1% 1% 1% 0;
101+
font-size: 16px;
102+
box-sizing: border-box;
103+
}
104+
105+
@media (max-width: 600px) {
106+
.grid > div {
107+
width: 100%;
108+
margin-right: 0;
109+
}
110+
}
111+
112+

0 commit comments

Comments
 (0)