Created
May 15, 2018 01:52
-
-
Save jordanhudgens/57b2a1716fbe120fbe2c1cc0ceccfa8f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<meta charset='UTF-8'> | |
<title>CSS Grid</title> | |
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet"> | |
<link href="styles.css" rel="stylesheet"> | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="content-wrapper"> | |
<h2>Branding Guidelines Updated</h2> | |
<p>Welcome to the DailySmarty branding guidelines! We’re happy that you see the worth of our product and understand the | |
value in promoting it correctly.</p> | |
<p>The folowing guides have been provided to assist you in maintaining the integrity and intedended useage of our logo | |
and branding in your marketing materials. Keeping with these guidelines will reinforce both your and our professionalism | |
and legitimacy in the eyes of the audience.</p> | |
<p>Thank you again for your interest and relationship with DailySmarty. Please see the guidelines outlined below (logo | |
assets can be downloaded below):</p> | |
<div id="app"> | |
<h2>{{ greeting('Tiffany') }}</h2> | |
<div> | |
<div> | |
<button @click="showImgOptions">Show Options</button> | |
</div> | |
<img src="images/logo-with-margin.png" :width="imgWidth" :height="imgHeight"> | |
</div> | |
<div> | |
<div> | |
<button @click="altShowImgOptions">Alt Show Options</button> | |
</div> | |
<img v-if="smallImg" src="images/logo-with-margin.png" width="150" height="150"> | |
<img v-else-if="medImg" src="images/logo-with-margin.png" width="250" height="250"> | |
<img v-else-if="lgImg" src="images/logo-with-margin.png" width="350" height="350"> | |
</div> | |
<div> | |
<h2>Instagram</h2> | |
<div> | |
<a :href="igProfileUrl">Instagram Profile</a> | |
</div> | |
<div> | |
<a :href="igProfileUrl" @click.prevent="showIgDetails">Instagram Details</a> | |
</div> | |
</div> | |
<div> | |
<h2>Math Section</h2> | |
<input type="text" @keyup="square"> | |
<div>{{ squaredResult }}</div> | |
</div> | |
<div> | |
<h2>Hot Keys</h2> | |
<button @click.shift="hotKey">You clicked a button with shift</button> | |
</div> | |
</div> | |
<div class="style-details"> | |
<div class="style-details-text"> | |
<h3>Primary Logo</h3> | |
<div>White Space = 1/4 logo width</div> | |
<div>White logo on primary blue</div> | |
<h3>Primary Color</h3> | |
<div>#0079FF</div> | |
<div>RGB 0, 121, 255</div> | |
<h3>Name</h3> | |
<div>Capitalize “D” and “S”</div> | |
<div>No space between the words</div> | |
</div> | |
<div class="style-details-logo"> | |
<img src="images/logo-with-margin.png" alt=""> | |
</div> | |
</div> | |
<div class="dos_donts_wrapper"> | |
<div class="dos_donts_list"> | |
<div class="dos_donts_heading blue_text"> | |
Logo Do's | |
</div> | |
<ul> | |
<li>Provide adequate white space surrounding the logo.</li> | |
<li>Icon must always be white</li> | |
<li>Keep a large size so the icon doesn’t get obscured.</li> | |
<li>Place logo on white or light background colors</li> | |
</ul> | |
</div> | |
<div class="dos_donts_list"> | |
<div class="dos_donts_heading red_text"> | |
Logo Dont's | |
</div> | |
<ul> | |
<li>Strech or scale the logo non-uniformely</li> | |
<li>Crop or partially cover the logo with other objects</li> | |
<li>Alter the logo or wordmark color to anything other than our primary color</li> | |
</ul> | |
</div> | |
<div class="donts_images"> | |
<div class="dont_image_box"> | |
<img src="images/dont_stretch.png" alt=""> | |
<div>Stretch</div> | |
</div> | |
<div class="dont_image_box"> | |
<img src="images/dont_crop.png" alt=""> | |
<div>Crop</div> | |
</div> | |
<div class="dont_image_box"> | |
<img src="images/dont_color.png" alt=""> | |
<div>Color</div> | |
</div> | |
</div> | |
</div> | |
<div class="alternate_options_wrapper"> | |
<h3>Alternate Options</h3> | |
<ul> | |
<li>The circular badge can be used separately from the wordmark.</li> | |
<li>The icon may be extracted from the logo and applied separately - but it must remain white and have a background | |
of our primary blue color.</li> | |
<li>The wordmark may be used separately from the circular badge.</li> | |
<li>Logo Do’s and Do Not’s above still apply.</li> | |
</ul> | |
<div id="logoList" class="alternate_options_images"> | |
<img v-for="logo in logos" :src="logo.imgSource" :class="logo.className"> | |
</div> | |
<div class="alternate_options_images"> | |
<img class="image_logos" src="images/ds_circle_logo.png" alt=""> | |
<img class="image_logos" src="images/ds_square_logo.png" alt=""> | |
<img class="text_logos" src="images/ds_icon_text_logo.png" alt=""> | |
<img class="text_logos" src="images/ds_text_logo.png" alt=""> | |
</div> | |
</div> | |
<div class="additional_branding_details"> | |
<h3>Asset Download</h3> | |
<p> | |
<a href="#">Download .zip file.</a> | |
</p> | |
<h3>Usage</h3> | |
<p> | |
Please remember to adhere to the above guidlines when referencing and using our logos. If you are unsure of the correct protocol | |
for a particular usecase, feel free to ask us at the following email: [email protected]. | |
</p> | |
</div> | |
</div> | |
</div> | |
<script src="app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment