-
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.
Add mobile support and replace images with emojis
- Used @media to resize text on smaller screens - Replaced blog images with emojis - Redesigned blog page so that all posts are shown - Removed unused CSS classes
- Loading branch information
1 parent
e1f8de5
commit 9563683
Showing
28 changed files
with
508 additions
and
478 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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
--- | ||
title: "Some Business Stuff" | ||
title: "🗂️ Some Business Stuff" | ||
tag: "KameKurosu" | ||
--- | ||
|
||
{:class="blogHorizontalImage"} | ||
<figcaption class="blogImageSourceCaption"><a href="https://unsplash.com/photos/SBK40fdKbAg"><u>Image Source</u></a></figcaption> | ||
|
||
After finishing my mock-ups, I decided to take a break and focus on more business-related tasks. <!--more-->The first was getting an apple developer account, so that I could use Apple’s cloud database service for my users' level completion data, and so I could eventually publish the app to the App Store. In order to do this, I needed an e-mail. I thought about using my personal e-mail for a bit, but then thought a better decision might be to create a new e-mail specifically for these types of projects. | ||
|
||
I decided to create a Google Business e-mail with the name [email protected]. I chose to name this business (if you can even call it a business) Kamesama Apps, a play on words, as Kamisama means God or spirit in Japan, but changing Kami to Kame switches it to something that sounds more like “Sacred Turtle”, haha. | ||
|
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
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
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
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
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
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
.blogName { | ||
margin-top: 20px; | ||
margin-bottom: 0px; | ||
font-size: 24px; | ||
} | ||
|
||
.blogTitle { | ||
margin-top: 60px; | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
font-size: 40px | ||
font-size: 20px | ||
} | ||
|
||
.blogImageSourceCaption { | ||
margin-top: -10px; | ||
text-align: center; | ||
font-size: 12px; | ||
.blogDate { | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
font-size: 14px; | ||
} | ||
|
||
.blogExcerpt { | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
} | ||
|
||
.blogImageCaption { | ||
text-align: center; | ||
font-size: 18px; | ||
font-style: italic; | ||
} | ||
|
||
.faded { | ||
opacity: 0.6; | ||
} |
Oops, something went wrong.