-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
andrew.tran
committed
Mar 27, 2019
0 parents
commit f797efa
Showing
8 changed files
with
255 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="true"?> | ||
<FileZilla3> | ||
<Servers> | ||
<Server> | ||
<Host>ftp.andt.io</Host> | ||
<Port>21</Port> | ||
<Protocol>0</Protocol> | ||
<Type>0</Type> | ||
<User>tranandrewa</User> | ||
<Logontype>2</Logontype> | ||
<TimezoneOffset>0</TimezoneOffset> | ||
<PasvMode>MODE_DEFAULT</PasvMode> | ||
<MaximumMultipleConnections>0</MaximumMultipleConnections> | ||
<EncodingType>Auto</EncodingType> | ||
<BypassProxy>0</BypassProxy> | ||
<Name>ftp.andt.io</Name> | ||
<Comments/> | ||
<LocalDir/> | ||
<RemoteDir/> | ||
<SyncBrowsing>0</SyncBrowsing> | ||
ftp.andt.io | ||
</Server> | ||
</Servers> | ||
</FileZilla3> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<html> | ||
|
||
<head> | ||
<title> andt.io </title> | ||
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet"> | ||
<link rel="stylesheet" href="styles.css"> | ||
|
||
<script src="index.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="header box"> | ||
<div class="header-text"> | ||
<h1> andt.io </h1> | ||
<h2> andrew tran </h2> | ||
</div> | ||
</div> | ||
|
||
<div class="projects box"> | ||
<div class="flex-area"> | ||
|
||
<div class="column left"> | ||
<div class="item"> | ||
<img src="watermelons.png" /> | ||
<div class="hidden"> | ||
<div class="hidden-text"> | ||
<h3>growing watermelons</h3> | ||
<p> puzzle game released on the playstore and itch </p> | ||
<a target="_blank" rel="noopener noreferrer" href="https://patran.itch.io/growing-watermelons">link</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<p> project </p> | ||
</div> | ||
</div> | ||
|
||
<div class="column middle"> | ||
<div class="item"> | ||
<img src="traveller.png" /> | ||
<div class="hidden"> | ||
<div class="hidden-text"> | ||
<h3>traveller ep</h3> | ||
<p> music ep recorded in montreal canada </p> | ||
<a target="_blank" rel="noopener noreferrer" href="https://soundcloud.com/patransaint/sets/traveller">link</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<p> project </p> | ||
</div> | ||
</div> | ||
|
||
<div class="column right"> | ||
<div class="item"> | ||
<img src="accessiblemobilemenu.png" /> | ||
x <div class="hidden"> | ||
<div class="hidden-text"> | ||
<h3> accessible mobile menu </h3> | ||
<p> senior design project at McGill, a web based restaurant menu for low vision users </p> | ||
<a target="_blank" rel="noopener noreferrer" href="https://docs.google.com/presentation/d/1jzRaRKnO8u0yAchgR9PwLsR6g4kBgpOunLuJS5Cfgj4/edit?usp=sharing">overview</a> | ||
<a target="_blank" rel="noopener noreferrer" href="https://github.com/ATranimal/AccessibleMobileMenu">repo</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="crossbrained.png" /> | ||
<div class="hidden"> | ||
<div class="hidden-text"> | ||
<h3> cross-brained </h3> | ||
<p> unity project experimenting with alternative control methods </p> | ||
<a target="_blank" rel="noopener noreferrer" href="https://patran.itch.io/cross-brained">link</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
body { | ||
background-color: #f0f7da; | ||
font-family: 'Space Mono', monospace; | ||
} | ||
|
||
img { | ||
width: 100%; | ||
display: block; | ||
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ | ||
filter: grayscale(100%); | ||
} | ||
|
||
.box { | ||
border: 50px solid #f0f7da; | ||
border-left: 300px solid #f0f7da; | ||
border-right: 300px solid #f0f7da; | ||
|
||
background-color: #c9df8a; | ||
text-align: center; | ||
transition: 0.5s ease; | ||
} | ||
|
||
.header { | ||
height: 200px; | ||
|
||
color: #36802d; | ||
} | ||
|
||
.header-text { | ||
padding-top: 25px; | ||
} | ||
|
||
.projects { | ||
padding-top: 50px; | ||
padding-bottom: 50px; | ||
padding-left: 50px; | ||
padding-right: 50px; | ||
} | ||
|
||
.flex-area { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
background-color: #77ab59; | ||
padding: 20px; | ||
} | ||
|
||
.column { | ||
flex: 50%; | ||
} | ||
|
||
.item { | ||
margin: 5px; | ||
position: relative; | ||
background-color: #c9df8a; | ||
} | ||
|
||
.hidden { | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
height: 100%; | ||
width: 100%; | ||
opacity: 0; | ||
transition: .3s ease; | ||
background-color: #000000; | ||
} | ||
|
||
.hidden-text { | ||
color: #77ab59; | ||
font-size: 16px; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
} | ||
|
||
.hidden-text h3 { | ||
font-size: 20px; | ||
} | ||
|
||
.hidden-text a { | ||
color: #f0f7da; | ||
} | ||
.item:hover .hidden { | ||
opacity: 0.75; | ||
} | ||
|
||
.item:active .hidden { | ||
opacity: 0.75; | ||
} | ||
|
||
.left {flex-basis:100%;} | ||
.middle {flex:1; flex-basis:100%;} | ||
.right {flex-basis:100%;} | ||
|
||
|
||
@media(max-width: 1600px) { | ||
.box { | ||
border-left: 200px solid #f0f7da; | ||
border-right: 200px solid #f0f7da; | ||
} | ||
} | ||
|
||
@media(max-width: 1400px) { | ||
.box { | ||
border-left: 150px solid #f0f7da; | ||
border-right: 150px solid #f0f7da; | ||
} | ||
} | ||
|
||
@media(max-width: 1200px) { | ||
.box { | ||
border-left: 100px solid #f0f7da; | ||
border-right: 100px solid #f0f7da; | ||
} | ||
} | ||
|
||
@media(max-width: 1100px) { | ||
.flex-area { | ||
flex-wrap: wrap; | ||
transition: 0.5 ease; | ||
} | ||
.left, .middle { | ||
flex-basis: 200px; | ||
} | ||
.right { | ||
flex-basis: 1; | ||
order: 1; | ||
} | ||
} | ||
|
||
@media(max-width: 850px) { | ||
.box { | ||
border-left: 50px solid #f0f7da; | ||
border-right: 50px solid #f0f7da; | ||
} | ||
.left{ | ||
flex-basis: 200px; | ||
} | ||
.right, .middle { | ||
flex-basis: 1; | ||
order: 1; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.