Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed svg width in menu button for small screens, and fixed desc for sft #1

Merged
merged 1 commit into from May 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions css/style.css
Expand Up @@ -40,6 +40,9 @@ svg {
width: 18px;
color: #000;
}
.nav-holder svg {
width: 100%;
}
#info h6 {
font-size: 28px;
}
Expand Down
4 changes: 2 additions & 2 deletions includes/_sitelist.inc.php
Expand Up @@ -63,15 +63,15 @@
$siteList["shirtmeuptees"] = array(
"url" => "https://www.shirtmeuptees.com/",
"title" => "SHIRTMEUPTEES",
"description" => "Shirt Me Up Web Store",
"description" => "Drupal E-commerce Web Store",
"mywork" => "I built this drupal 7 site to make use of drupal commerce. I’ve customized a lot of things on this site, including a custom module that outputs data via XML to shipstation. It contains CSV upload functionality in order to fill in all the variants of each commerce item. It also contains an image generator that can generate images on demand (via PHP), as well as a new free-form text tool that lets you put any text you want on your product. The front-end template makes use of Bootstrap, JS, Jquery, and CSS Grid on the product page. I have this site running behind Cloudflare, to protect my server, provide good SSL (https), and provide DDOS protection.",
"skills" => array("HTML", "CSS", "CSS Grid", "JS", "JQuery", "Bootstrap", "Responsive", "MySQL", "PHP", "Drupal", "Drupal Commerce", "ShipStation", "CloudFlare")
);

$siteList["stayfrostees"] = array(
"url" => "https://www.stayfrostees.com/",
"title" => "STAYFROSTEES",
"description" => "Shirt Me Up Web Store",
"description" => "Drupal E-commerce Web Store",
"mywork" => "I built this drupal 7 site to make use of drupal commerce. I’ve customized a lot of things on this site, including a custom module that outputs data via XML to shipstation. It contains CSV upload functionality in order to fill in all the variants of each commerce item. The front-end template makes use of bootstrap, JS, and Jquery. I have this site running behind Cloudflare, to protect my server, provide good SSL (https), and provide DDOS protection.",
"skills" => array("HTML", "CSS", "JS", "JQuery", "Bootstrap", "Responsive", "MySQL", "PHP", "Drupal", "Drupal Commerce", "ShipStation", "CloudFlare")
);
Expand Down