Schrödinger's Website

Size: px
Start display at page:

Download "Schrödinger's Website"

Transcription

1 Schrödinger's Website or: How we built websites of indeterminate design for Adobe Portfolio a talk by Jackie Balzer (@jackiebackwards)

2

3 Web Development Life Cycle

4

5

6

7

8 Adobe Portfolio

9

10

11

12

13

14

15

16

17

18

19

20 Challenges Customizations viewed in the editor must be 100% representative of the final product (WYSIWYG) Every Thing* must be user-customizable * minus the specifics of the responsive layout Responsive styles must look good for infinitepossible customizations

21 Tenets DRY Reusable Human written Responsive layout should retain the spirit of the user s customizations

22 WYSIWYG Challenges: Markup The markup you see for your site inside the editor should be the same markup you see on your final published website

23

24 WYSIWYG Challenges: CSS The styles you see for your site inside the editor should be the result of the same CSS you see on your final published website

25 1 "header": { 2 "align": "center", 3 "color": "#222", 4 "font": { 5 "family": "ftnk", 6 "size": 30, 7 "lineheight": 30 8 }, 9 "fontstyle": { 10 "bold": "700", 11 "italic": "normal", 12 "underline": null, 13 "strikethrough": null, 14 "uppercase": "uppercase" 15 }, 16 "padding": { 17 "bottom": 0, 18 "left": 0, 19 "right": 0, 20 "top": 0 21 } 22 }

26 1 $header: ( 2 align: center, 3 color: #222, 4 font: ( 5 family: ftnk, 6 size: 30, 7 lineheight: 30 8 ), 9 fontstyle: ( 10 bold: 700, 11 italic: normal, 12 underline: null, 13 strikethrough: null, 14 uppercase: uppercase 15 ), 16 padding: ( 17 bottom: 0, 18 left: 0, 19 right: 0, 20 top: 0 21 ) 22 );

27 1.header { 2 text-align: map-get($header, align); 3 color: map-get($header, color); 4 font-family: map-get($header, font?); // does not traverse 5 }

28 map-me($map, $keys) { 2 $key in $keys { 4 map-has-key($map, $key) { 6 $map: map-get($map, $key); 7 } { 'key "#{$key}" is missing from map'; 10 } } // each key in keys 13 $map; } map-me

29 1.header { 2 color: map-me($header, color); 3 font-family: map-me($header, font family); 4 font-size: map-me($header, font size); 5 font-style: map-me($header, fontstyle italic); 6 font-weight: map-me($header, fontstyle bold); 7 text-align: map-me($header, align); 8 text-decoration: map-me($header, fontstyle underline) map-me($header, fontstyle strikethrough); 9 line-height: map-me($header, font lineheight); 10 text-transform: map-me($header, fontstyle uppercase); 11 padding-top: map-me($header, padding top); 12 padding-bottom: map-me($header, padding bottom); 13 padding-left: map-me($header, padding left); 14 padding-right: map-me($header, padding right); 15 }

30 1.header { 2 color: #222; 3 font-family: ftnk; 4 font-size: 30px; 5 font-style: normal; 6 font-weight: bold; 7 text-align: center; 8 text-decoration: underline; 9 line-height: 30px; 10 text-transform: uppercase; 11 padding-top: 0; 12 padding-bottom: 0; 13 padding-left: 0; 14 padding-right: 0; 15 }

31

32

33

34 1.grid-item:nth-child(var(--number-columns)n+1) { 2 clear: left; 3 }

35 1.grid-item:nth-child(#{map-me($grid, per-row)}n+1) { 2 clear: left; 3 }

36 1.top-arrow { 2 background: rgba(map-me($arrow, color), map-me($arrow, opacity)); 3 }

37

38 Responsive Development Many responsive adjustments can be phrased in the form of if then Easily modeled using control logic in Sass

39 Responsive Challenges: Layout Responsive navigation behind a menu

40 1 // Template default variables 2 $small-breakpoint: 0 540px!global; 3 $medium-breakpoint: 0 768px!global;

41 breakpoint($medium-breakpoint) { 2 3 nav { 4 display: none; 5 } 6 7.hamburger { 8 display: block; 9 } }

42

43 responsive-nav { 2 3 nav { 4 display: none; 5 } 6 7.hamburger { 8 display: block; 9 } }

44 1 $theme-features: ( 2 top-header: true, 3 cover-meta-overlay: true, 4 small-responsive-nav-menu: true 5 );

45 1 $menu-breakpoint: $medium-breakpoint; map-get($theme-features, small-responsive-nav-menu) == true { 3 $menu-breakpoint: $small-breakpoint; 4 } 5 breakpoint($menu-breakpoint) { repsonsive-nav; 8 }

46 Responsive Challenges: Layout Responsive navigation behind a menu Number of columns for grid layouts

47 breakpoint($medium-breakpoint) { 2 map-me($gallery, columns) > 3 { 4 5 // css for two-column layout 6 7 } 8 9 } // $medium-breakpoint 10 breakpoint($small-breakpoint) { 12 map-me($gallery, columns) > 1 { // css for 1-column layout } } // $small-breakpoint

48 Responsive Challenges: Layout Responsive navigation behind a menu Number of columns for grid layouts Smaller images should load on smaller screens

49 1 <picture> 2 <source srcset="{{images.full}}" media="{{breakpoints.full}}"> 3 <source srcset="{{images.medium}}" media="{{breakpoints.medium}}"> 4 <source srcset="{{images.small}}" media="{{breakpoints.small}}"> 5 <img src="{{images.medium}}"> 6 </picture> 1 { 2 "images": { 3 "full": "//path/to/fullsize", 4 "medium": "//path/to/medium-size", 5 "small": "//path/to/small-size" 6 }, 7 "breakpoints": { 8 "full": "min-width: 769px", 9 "medium": "max-width: 768px", 10 "small": "max-width: 540px" 11 } 12 }

50

51

52 Responsive Challenges: Vertical Rhythm Spacing scales down on smaller devices Font sizes scale accordingly on smaller devices Blocks of information often rely on relative font sizes (lock up)

53

54 Establish rules Widths, horizontal margins should always be measured in % Font sizes should never go below 14 px Bigger numbers should decrease more drastically than smaller numbers

55 2016 Project Date font-size: 18px line-height: 18px Project Title Project Title font-size: 60px line-height: 64px Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis Project Description font-size: 22px line-height: 28px nostrud exerci tati... Custom Field Creative Direction, UX Design, Web Design Additional Fields font-size: 14px line-height: 18px

56 2016 Project Title Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tati... Custom Field Creative Direction, UX Design, Web Design

57 2016 Project Title Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tati... Custom Field Creative Direction, UX Design, Web Design

58

59 within-range($item, $min, $max) { 2 $floor: 10; 3 $ceil: 100; round(((($max - $min)*($item - $floor))/($ceil - $floor))+$min); 5 }

60 breakpoint($medium-breakpoint) { 2 3.project-title { 4 font-size: within-range(map-me($logo, font-size), 14px, 60px); 5 } 6 7 } 8 breakpoint($small-breakpoint) { project-title { 12 font-size: within-range(map-me($logo, font-size), 14px, 45px); 13 } }

61 THE FUTURE Optimize scaling formula Optimize output to reduce duplicate values Intelligent breakpoint detection One CSS generator to rule them all

62 Ned Bread Thanks! Adobe Portfolio: myportfolio.com

Schrödinger's Website. a talk by Jackie Balzer

Schrödinger's Website. a talk by Jackie Balzer Schrödinger's Website a talk by Jackie Balzer (@jackiebackwards) https://en.wikipedia.org/wiki/file:schrodinger_cat_in_box.jpg Web Development Life Cycle Adobe Portfolio Challenges Customizations

More information

SUMMARY OF DESIGN CHOICES

SUMMARY OF DESIGN CHOICES SUMMARY OF DESIGN CHOICES Company Name The name is a Hawaiian word that means to go, move. As a new start up application development company, the name fit as Tech designs applications for people on the

More information

TITLE EXAMPLE. Sub - title

TITLE EXAMPLE. Sub - title TITLE EXAMPLE Sub - title SUMMARY 1 TOPIC Relevant text 2 TOPIC Relevant text 3 TOPIC Relevant text 4 TOPIC Relevant text TIMELINE Euismod tincidunt ut laoreet dolore magna aliquam erat volutpat Title

More information

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model Unit 20 - Client Side Customisation of Web Pages Week 2 Lesson 4 The Box Model So far Looked at what CSS is Looked at why we will use it Used CSS In-line Embedded (internal style-sheet) External

More information

WCU ATHLETICS LOGOS & USAGE WESTERN CAROLINA UNIVERSITY ATHLETIC LOGO GUIDELINES PAGE 1

WCU ATHLETICS LOGOS & USAGE WESTERN CAROLINA UNIVERSITY ATHLETIC LOGO GUIDELINES PAGE 1 WCU ATHLETICS LOGOS & USAGE PAGE 1 WCU ATHLETICS LOGOS The WCU Athletic Style Guide provides the official guidelines for use of the Western Carolina University athletics logos on collateral, signage, merchandise

More information

q u e s t i o n s? contact or

q u e s t i o n s? contact or Chocolate Grail offers gourmet and artisanal chocolatiers different advertising options listed below. Two options are free: the basic listing and reviews. listings home page features quick pick fix reviews

More information

Updates to Phone Contact

Updates to Phone Contact Introduction and Table of Contents Updates to Phone Contact Updated PHONE CONTACT Information as it appears in VIEW and EDIT modes: Page 2 Current View and Edit Modes Page 3 NEW View and Edit Modes Page

More information

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model Unit 20 - Client Side Customisation of Web Pages Week 2 Lesson 4 The Box Model Last Time Looked at what CSS is Looked at why we will use it Used CSS In-line Embedded (internal style-sheet) External

More information

SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE

SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE 4175 Route 71 Oswego, IL 60543 (630) 636-3080 WWW.SD308.ORG SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE Table of contents Letter from the Superintendent of Schools...4

More information

What is the box model?

What is the box model? CSS BOX MODEL What is the box model? The CSS box model describes the rectangular boxes that are created for every element in the document tree. The box model components Source: Kindly provided by Hicks

More information

A STEP-BY-STEP GUIDE TO EVENT BRANDING

A STEP-BY-STEP GUIDE TO EVENT BRANDING A STEP-BY-STEP GUIDE TO EVENT BRANDING WELCOME! Lupus Research Alliance Event Branding Guide 2 We're so happy that you've decided to host an event to support the Lupus Research Alliance. This guide will

More information

Creating and Implementing Decision Templates

Creating and Implementing Decision Templates Creating and Implementing Decision Templates A checklist for The Preparation, Citation and Distribution of Canadian Decisions (Canadian Citation Committee, 2009) This checklist is intended to assist court

More information

February Pandera Labs Brand Guide

February Pandera Labs Brand Guide February 2017 Pandera Labs Brand Guide This brand style guide establishes the essence of who we are, what we stand for, and expresses our personality. The guide provides you with the tools you will need

More information

Corporate Brand Standards

Corporate Brand Standards Corporate Brand Standards Welcome to the new brand standards guideline for the Altegra Health logo mark and brand. This new dynamic brand will help convey the messaging of Altegra Health while increasing

More information

ALLASSO CORPORATE IDENTITY USER GUIDLINES

ALLASSO CORPORATE IDENTITY USER GUIDLINES ALLASSO CORPORATE IDENTITY USER GUIDLINES Your Partner in Network Security ALLASSO CORPORATE IDENTITY Your Partner in Network Security Already a success in the short time we've been around, our goal is

More information

2005 WebGUI Users Conference

2005 WebGUI Users Conference Cascading Style Sheets 2005 WebGUI Users Conference Style Sheet Types 3 Options Inline Embedded Linked Inline Use an inline style sheet to modify a single element one time in a page.

More information

Summary Lauren Light. Mobile development for a stable company.

Summary Lauren Light. Mobile development for a stable company. Summary Lauren Light Mobillo is positioned to be a leader in the global technology industrywith clean lines, sharp yet inviting colors and sleek typography. The look is modern without feeling trendy or

More information

Masthead. Masthead Subhead. Heading 1 spans two columns as a standard. What s Inside. Issue style Year Month Newsletter Website URL

Masthead. Masthead Subhead. Heading 1 spans two columns as a standard. What s Inside. Issue style Year Month Newsletter Website URL Masthead Masthead Subhead Issue style Year Month Newsletter Website URL. See last page for tips on inserting images. What s Inside TOC List Bullet. This text is set in a floating text box anchored in the

More information

Reputation X Content Development and Promotion Checklist

Reputation X Content Development and Promotion Checklist Reputation X Content Development and Promotion Checklist reputation x look better online 2.7 million blog posts are published every day. How do we cut through the noise? Why does some content achieve higher

More information

TYPOGRAPHY. Thoughtful use of typography allows a brand to evoke emotion and convey the tone of the brand.

TYPOGRAPHY. Thoughtful use of typography allows a brand to evoke emotion and convey the tone of the brand. TYPOGRAPHY TYPOGRAPHY Typography can strongly affect how people react to a design and other communications. Consistent use of a chosen typeface can be just as important as the use of color or images in

More information

MichPA Content Guide. Table of Contents. Website Section Overview. Global Banner & Navigation. Content Area Client editable

MichPA Content Guide. Table of Contents. Website Section Overview. Global Banner & Navigation. Content Area Client editable Table of Contents Website Section Overview MichPA Content Guide Website Section Overview...1 FAQ...2 Content Area Styles...3 Client-side Right Navigation Styles...4 Font Index...5 Color Index...5 Rotating

More information

Logo style guide March 2017

Logo style guide March 2017 Barbershop Toolbox Logo style guide March 2017 Barbershop / Logo Barbershop logo The BARBERSHOP logo consists of a traditional barbershop pole symbol in magenta/black, mustache and the word mark. These

More information

SECRET DESIGNS DESIGNED BRAND GUIDELINE

SECRET DESIGNS DESIGNED BRAND GUIDELINE DESIGNED BRAND 2018 GUIDELINE TABLE OF CONTENT 01 COMPANY INRODUCTION PAGE 04 02 OUR LOGO DESIGN PAGE 06 03 THE COLOR SYSTEM PAGE 10 04 TYPOGRAPHY PAGE 12 05 LOGO VIOLATION PAGE 14 06 LOGO USAGE PAGE

More information

Brand Standards Manual. Copyright March 2007

Brand Standards Manual. Copyright March 2007 Brand Standards Manual Copyright March 2007 Primary Logo Primary Logo Full Color - Positive Primary logo is to be used when ever possible. Primary background color is white. Plum PMS 5185 Metallic Grey

More information

RuSSEll sutter. Proposal / Navigational Chart / Wireframes. Joseph Palmer Prof: Erikk Ross IMD September 2017

RuSSEll sutter. Proposal / Navigational Chart / Wireframes. Joseph Palmer Prof: Erikk Ross IMD September 2017 RuSSEll sutter Proposal / Navigational Chart / Wireframes Joseph Palmer Prof: Erikk Ross IMD 331 5 September 2017 Proposal The Brand Russell Sutter is a collection of unique items for the modern lifestyle.

More information

Barbershop / Contents. Logo 3. Color palette 8. Typography 9. Example of use 10

Barbershop / Contents. Logo 3. Color palette 8. Typography 9. Example of use 10 Barbershop / Contents This is an interactive contentpage. Clicking on the listed items will redirect to the relevant page in this document. Logo 3 Color palette 8 Typography 9 Example of use 10 2 Barbershop

More information

Username. Password. Forgot your password? Sign in. Register as new user

Username. Password. Forgot your password? Sign in. Register as new user Username Password Forgot your password? Sign in Register as new user Registration Email Password Mobile phone Verify your account via SMS otherwise leave blank to verify via email. Terms & Conditions Lorem

More information

norwich university style guide

norwich university style guide norwich university style guide 06.22.05 table of contents i. logo Introduction Primary logo: Full-color application One-color applications Reverse applications: Two-color One-color With tagline With departmental

More information

University of Waterloo E-Thesis Template for LATEX

University of Waterloo E-Thesis Template for LATEX University of Waterloo E-Thesis Template for LATEX by Pat Neugraad A thesis presented to the University of Waterloo in fulfillment of the thesis requirement for the degree of Master of Science in Zoology

More information

IDENTITY STANDARDS MANUAL

IDENTITY STANDARDS MANUAL IDENTITY STANDARDS MANUAL Table of Contents (Click to Select Section) 1.1 How To Use This Manual BASIC STANDARDS FOR THE SIGNATURE 2.1 The Logo Mark 2.2 The Signatures 2.3 Coloration 2.4 Color Reproduction

More information

Cisco Learning Partner Logo Guidelines

Cisco Learning Partner Logo Guidelines Cisco Learning Partners Cisco Learning Partner Logo Guidelines 2012 Cisco Systems, Inc. All rights reserved. Guidelines As one of the world s most valuable brands, Cisco has strong recognition in the minds

More information

II. COLOR PALETTE Primary p. 18 Secondary p. 18. III. TYPOGRAPHY Primary typography p. 19 Secondary typography p. 20 Default typography p.

II. COLOR PALETTE Primary p. 18 Secondary p. 18. III. TYPOGRAPHY Primary typography p. 19 Secondary typography p. 20 Default typography p. STYLE GUIDE 2016 TABLE OF CONTENTS I. LOGO Introduction p. 3 Primary logo: Full-color application p. 4 One-color applications p. 5 Reverse applications: p. 6 Two-color p. 6 One-color p. 7 With tagline

More information

Contents. Contact, 19. About our brand, 3 Key elements, 4. Design elements,13

Contents. Contact, 19. About our brand, 3 Key elements, 4. Design elements,13 The following identity and brand guideline for Bermondsey Pubs has been created to help you present the brand and all the elements that make up the company s visual identity in a consistent and recognizable

More information

Cisco Solution Partner Program Logo Guidelines

Cisco Solution Partner Program Logo Guidelines Cisco Solution Partner Program Logo Guidelines 2014 Cisco Systems, Inc. All rights reserved. Cisco Solution Partner Program Logo Guidelines As one of the world s most valuable brands, Cisco has strong

More information

Certified for IBM Software. Mark and Title Guidelines

Certified for IBM Software. Mark and Title Guidelines IBM Software Mark and Title Guidelines Overview 3 Why the IBM... Marks? 3 What Are the Marks and Titles? 3 What Do the Marks Mean? 3 Using Your Mark 4 When and Where Can I Use the Marks? 4 Using Your Title

More information

FINAL PROJECT VISUAL IDENTITY SYSTEM ARCHITECH Aliyah Northington

FINAL PROJECT VISUAL IDENTITY SYSTEM ARCHITECH Aliyah Northington FINAL PROJECT VISUAL IDENTITY SYSTEM Aliyah Northington DRAFT LOGO DESIGNS ARC ITECH 2 FINAL LOGO DESIGNS 3 BUSINESS CARD DESIGN Jane Villanueva CEO of Stuff 221 Golden Gate Blvd San Francisco, CA 94102

More information

Heading1 (h1) looks like this

Heading1 (h1) looks like this New Typography styles for your YouMedia Joomla Template! TThis is a Magazine Style Drop Cap. To display Drop Cap us first Letter Goes Here Olypian quarrels et gorilla congolium

More information

Brand Guidelines. April acplus.com

Brand Guidelines. April acplus.com Brand Guidelines April 2018 The purpose of this style guide is to explain the brand style and ensure consistent application of the visual elements across all communications, both online and offline. 02

More information

Word Mark Style Guide

Word Mark Style Guide Word Mark Style Guide 01/23/07 Introduction The creation of Pitt Business gives a clear visual identity to the Joseph M. Katz Graduate School of Business, the College of Business Administration, the Institute

More information

1 Basic elements. Corporate identity manual

1 Basic elements. Corporate identity manual 1 Basic elements Corporate identity manual 1 Basic elements Contents 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.15 The Woqod mark Protecting the Woqod mark Standard use sizes Colour variations

More information

Interreg Europe Graphic Book

Interreg Europe Graphic Book 1 Interreg Europe Graphic Book Contents Branding 1 Typography 8 Colour palette 10 Use of the origami 11 Sharing solutions for better regional policies Four Topics 14 Project identity 15 Stationery 20 Templates

More information

Visualization Concepts

Visualization Concepts Microsoft Surface: Visualization Concepts Version 1.0 Created by Date Created April 5, 2009 Table of Contents Posts of the Last Days pp. 3, 9 Post: Touching p.4 Post: Scaling p.5 Time Panel: Open p.6 TIme

More information

CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014

CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014 CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014 Document Intro 3 ways to create a registry: from Product Detail from Registry Landing Page

More information

MISSION/VISION/VALUES

MISSION/VISION/VALUES BRAND GUIDELINES TABLE OF CONTENTS Why Brand Matters...2 Mission Statement...4 Color Palette...6 Typography...8 Logo Usage...10 Letterhead... 12 Powerpoint... 14 Closing...15 WHY BRAND MATTERS Brand is

More information

Corporate Identity. If you need information about anything in the Corporate Identity Manual, contact City Marketing.

Corporate Identity. If you need information about anything in the Corporate Identity Manual, contact City Marketing. Corporate Identity Our Corporate Identity is our face to the world. It is a statement of our personality representing how we perceive ourselves and how we want others to perceive us. It is important we

More information

Logo Guidelines. Interim guide April 2010 LAUNCH

Logo Guidelines. Interim guide April 2010 LAUNCH Logo Guidelines Interim guide April 2010 LAUNCH Welcome page 2 of 11 The establishment of the UK Space Agency has elevated the UK s profile as a major player in the world s space industry. Clear and consistent

More information

I D E N T I T Y S TA N D A R D S M A N U A L

I D E N T I T Y S TA N D A R D S M A N U A L I D E N T I TY STA N DA R D S M A N UA L Rev 8.08 Table of Contents 1.1 How To Use This Manual 1.2 Web Resources Available to Faculty and Staff Basic Standards for the Signature 2.1 The Robert Morris University

More information

Developing a Cloud Computing Based Approach for Forensic Analysis using OCR

Developing a Cloud Computing Based Approach for Forensic Analysis using OCR Developing a Cloud Computing Based Approach for Forensic Analysis using OCR Matthias Trojahn, Volkswagen AG, Germany Lei Pan, Deakin University, School of IT, Australia Fabian Schmidt, ISC Gebhardt, Germany

More information

Microsoft. Windows for Small Business Sitemap & Wireframes Version 1.1. March 27, 2009

Microsoft. Windows for Small Business Sitemap & Wireframes Version 1.1. March 27, 2009 Microsoft Sitemap & Wireframes Version. March 7, 009 » Sitemap & Wireframes» Sitemap VERSION. Please note that all labels are temporary. Home 0.0 Home Right Rail: (call to action) Better than ever (why

More information

Aclara Corporate Identity. Standards & Design Guidelines

Aclara Corporate Identity. Standards & Design Guidelines Aclara Corporate Identity Standards & Design Guidelines Introduction Aclara has brought together the leading metering and data management companies of ESCO Technologies each well known and well established

More information

Cisco Derivative Work Process Automation Program. Samita Bhandary Information Architect

Cisco Derivative Work Process Automation Program. Samita Bhandary Information Architect Learning @ Cisco Derivative Work Process Automation Program Samita Bhandary Information Architect Introduction and Problem Description of current manual Derivative Works Program The Worldwide Learning

More information

01 MAY 2018 v1.0 QARAGANDY REGION VISUAL IDENTITY GUIDELINES

01 MAY 2018 v1.0 QARAGANDY REGION VISUAL IDENTITY GUIDELINES 01 MAY 2018 v1.0 VISUAL IDENTITY GUIDELINES Section 1 Concept 03 INDEX SECTION 1 CONCEPT Concept SECTION 2 CONSTRUCTION Logo Construction Main logo & Branches Monochrome Version Main logo & minimum size

More information

Common Brand Program. December 31, 2006 Taiji Brand Group

Common Brand Program. December 31, 2006 Taiji Brand Group Common Brand Program December 31, 2006 Taiji Brand Group visual identity Logo Guidelines Layout and Specifications The Community Futures logo is a combination of the leaf symbol and the logo type. The

More information

World University Championships

World University Championships Visual identity guidelines World University s Championnats du Monde Universitaires Introduction This document sets out the rules for the implementation of the new corporate identity system of the World

More information

JetScan ifx. i100 Currency Scanner. Faster Processing, Lower Operating Costs

JetScan ifx. i100 Currency Scanner. Faster Processing, Lower Operating Costs JetScan ifx i100 Currency Scanner Faster Processing, Lower Operating Costs The Next-Generation JetScan Boost Productivity: 20% Faster with Fewer Rejects The JetScan ifx scanner allows users to take their

More information

logo colour typography identity elements

logo colour typography identity elements logo colour typography identity elements LOGO LOGO VARIETIES The Cognasense logo consists of mostly typographic elements with a icon cleavery constructedin the g. The g icon is made up of three circles:

More information

EasySiteWizard Professional 8 User Guide

EasySiteWizard Professional 8 User Guide EasySiteWizard Professional 8 User Guide Table of Contents Introduction... 4 Navigation... 5 Main Menu... 5 Alternative Navigation... 5 How to Create a New Site... 6 Create a new site... 6 Choose design...

More information

Graphic Identity Guidelines

Graphic Identity Guidelines Graphic Identity Guidelines Table of Contents Introduction Wordmark 1 Safety Area 2 Color 3 Primary Typography 4 Secondary Typography 5 Misuse of the Logo 6 Applications Official Seal 8 Letterhead 9 Typing

More information

NABORS INDUSTRIES LTD. Corporate Identity Standards

NABORS INDUSTRIES LTD. Corporate Identity Standards NABORS INDUSTRIES LTD. Corporate Identity Standards UPDATED JUNE 2012 At, we recognize the importance of a strong and consistent brand. Our branding strategy and its uniform application help to ensure

More information

The computer screen and text. Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel.

The computer screen and text. Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel. The computer screen and text Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel. The computer screen and text OpenType and TrueType fonts

More information

Brand identity design. Professional logo design + Branding guidelines + Stationery Designed by JAVIER

Brand identity design. Professional logo design + Branding guidelines + Stationery Designed by JAVIER Brand identity design Professional logo design + Branding guidelines + Stationery Designed by JAVIER Logo conceptualization Concept Shape Typography Color After reading the information provided After some

More information

by Spild af Tid Version 1, july 2013

by Spild af Tid Version 1, july 2013 Europeana Creative Designguide by Spild af Tid Version 1, july 201 design guidelines for Europeana Creative july 201 1 content 2 ABOUT THE DESIGN Europeana creative logo 4 logo use 5 logo colors 6 the

More information

The Title Goes Here with Each Initial Letter Capitalized (Use the Microsoft Word template style: Paper Title)

The Title Goes Here with Each Initial Letter Capitalized (Use the Microsoft Word template style: Paper Title) The Title Goes Here with Each Initial Letter Capitalized (Use the Microsoft Word template style: Paper Title) Author s Name 1, a) 2, 3, b) and Author s Name (Use the Microsoft Word template style: Paper

More information

UNICEF USA Brand Guidelines

UNICEF USA Brand Guidelines Brand Guidelines VERSION 1.0 March 2017 Contents 7 MASTER BRAND LOGO 28 TYPOGRAPHY 9 Versions 29 Fonts 10 Colors and Backgrounds 33 Using Type 11 Size and Clear Space 34 Type Style Examples 12 Don ts 13

More information

Gestures: ingsa GESTURES

Gestures: ingsa GESTURES GESTURES FORWARD AND BACKWARD SWIPE RIGHT TO GO TO THE NEXT SCREEN OR SWIPE LEFT TO GO TO THE PREVIOUS SCREEN IN THE STORY FLOW SELECT TAP WITH 1 FINGER TO NAVIGATE THOROUGH AN INTERACTIVE ITEM (SCENES)

More information

HOMEPAGE nikewomen.com

HOMEPAGE nikewomen.com Sitemap / Spring 005 HEADER register my account catalog store locator ping cart product search HOMEPAGE.com.com/pulse WORKOUT Rockstar Workout intro: dance is about YOU and making your body feel good.

More information

Personal brand identity desigend by JAVIER

Personal brand identity desigend by JAVIER Personal brand identity desigend by JAVIER Logo conceptualization Concept Shape the Z is the base, if you observe I ve placed Color The concept was designed using the The use of the AZ is a great idea,

More information

<head> <meta http-equiv= Content-Type content= text/html; charset=utf-8 /> <title>caprese Salad</title> </head>

<head> <meta http-equiv= Content-Type content= text/html; charset=utf-8 /> <title>caprese Salad</title> </head> HTML basics HTML source code HTML page in browser (without CSS styles) HTML describes the structure of pages. The pieces that make up that structure are called HTML elements. Most elements are defined

More information

UVic Senior s Program: Microsoft Word

UVic Senior s Program: Microsoft Word UVic Senior s Program: Microsoft Word Created by Robert Lee for UVic Senior s Program website: https://www.uvic.ca/engineering/computerscience/community/index.php Opening Microsoft Word: Launch it from

More information

HOW MODULAR TEMPLATES CUT DESIGN + BUILD TIME IN HALF

HOW MODULAR  TEMPLATES CUT  DESIGN + BUILD TIME IN HALF HOW MODULAR EMAIL TEMPLATES CUT EMAIL DESIGN + BUILD TIME IN HALF WHO Ferguson Enterprises is the largest U.S. distributor of plumbing supplies, PVF, waterworks and fire and fabrication products. It is

More information

Digital File Preparation and Submittal Guidelines

Digital File Preparation and Submittal Guidelines Digital File Preparation and Submittal Guidelines O U T D O O R S I G N AG E A N D F R A M E S... O U TS I D E O F O R D I N A RY At Pannier Graphics, we want to provide you with outdoor graphics that

More information

view cart Expanded view 2 items in your cart 18 LCD TV MODEL NUMBER $1, LCD TV MODEL NUMBER $1, Subtotal: $3,199.

view cart Expanded view 2 items in your cart 18 LCD TV MODEL NUMBER $1, LCD TV MODEL NUMBER $1, Subtotal: $3,199. cameras & camcorders phones & fax computers appliances building personal care accessories special offers gift ideas > appliances appliances items in your cart 0 Expanded view vacuums Stet clita sea takimata

More information

The MyMacys.net Dual Image Slider

The MyMacys.net Dual Image Slider The MyMacys.net Dual Image Slider WIREFRAMES AND MOCKUPS Nick Zedlar, UX Designer, Enterprise Portal Team March, 2013 CURRENT DESIGN Features Image onsectetuer adipiscing elit, sed diam nonummy nibh euismod

More information

DESIGN GUIDELINES. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand.

DESIGN GUIDELINES. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand. LOGO PLACEMENT On white content slides the logo should appear in full colour on the bottom left of the screen

More information

IDM 221. Web Design I. IDM 221: Web Authoring I 1

IDM 221. Web Design I. IDM 221: Web Authoring I 1 IDM 221 Web Design I IDM 221: Web Authoring I 1 Week 7 IDM 221: Web Authoring I 2 Page Layout Part 1 IDM 221: Web Authoring I 3 Part 1 because part 2 is coming next term (RWD, Flexbox, Grids) Posi%on An

More information

This is an H1 Header. This is an H2 Header. This is an H3 Header

This is an H1 Header. This is an H2 Header. This is an H3 Header is a key element in web design. This templates delivers you sophisticated typography and various stylings. The style guide gives you an overview about all possible HTML tag stylings provided by the template.

More information

Brand Identity Standards

Brand Identity Standards Brand Identity Standards VERSION 1.0 JUNE 2008 This manual explains the approved usage of the Paradise Valley Community College brand identity. Since the brand identity is the cornerstone of all communication

More information

Chuck Chugumlung. Designer, Art Director, Creative Director - phone

Chuck Chugumlung. Designer, Art Director, Creative Director  - phone Chuck Chugumlung Designer, Art Director, Creative Director email- annexxstudio@gmail.com phone- 323-215-7580 Portfolio: pg 3-2d/3d Motion Graphics pg 15 - Interactive Design pg 29 - Web Design pg 36 -

More information

BOOTSTRAP GRID SYSTEM

BOOTSTRAP GRID SYSTEM BOOTSTRAP GRID SYSTEM http://www.tutorialspoint.com/bootstrap/bootstrap_grid_system.htm Copyright tutorialspoint.com In this chapter we shall discuss the Bootstrap Grid System. What is a Grid? As put by

More information

Demo User Interface and Graphic Guidelines

Demo User Interface and Graphic Guidelines Demo User Interface and Graphic Guidelines Typography & Colours Titillium Regular Titillium Semibold Titillium Bold The font used in Qt Demos is the company font Titillium. Fonts weights used: regular,

More information

Technical Document Authoring and

Technical Document Authoring and 2015 Aras 1 Technical Document Authoring and Management in PLM Kevin Richard 2015 Aras 2 Agenda Business Justification (Challenges/Goals) Technical Documents Features Demo Wrap up and questions 2015 Aras

More information

Content Sections QUOTE ACCORDION IMAGE SLIDER WITH THUMBNAILS PHOTO GALLERY. Lehigh2018 Theme. Web & Mobile Services

Content Sections QUOTE ACCORDION IMAGE SLIDER WITH THUMBNAILS PHOTO GALLERY. Lehigh2018 Theme. Web & Mobile Services Page 1 QUOTE - Quote Text * - Source We re committed to giving students the very best of what Lehigh has to offer. Patrick V. Farrell, Provost for Academic Affairs Displays a quote within a grey box listing

More information

UNIVERSITY OF ST. THOMAS

UNIVERSITY OF ST. THOMAS UNIVERSITY OF ST. THOMAS / ' LOGIN CALENDAR LIBRARY BOOKS ATHLfllCS MAP CHEMISTRY AND BIOCHEMISTRY 713-525-3500 admfsslons@stthom.edu Everybody's looking for great chemistry, that mysterious spark that

More information

BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND

BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND OUR LOGO There are three variants of the Army Cadets logo (each available in two versions plain or with a dark background and reversed out text). Army

More information

KNOWLEDGE CENTER SERVICE. Customization Guide

KNOWLEDGE CENTER SERVICE. Customization Guide KNOWLEDGE CENTER SERVICE Customization Guide TABLE OF CONTENTS PAGE Homepage Overview 1 Homepage Customization Options 1. Header 3 2. Engagement Tools 5 3. Search Box 8 4. Search Results 13 5. Footer 20

More information

EasySiteWizard Professional 8 User Guide

EasySiteWizard Professional 8 User Guide EasySiteWizard Professional 8 User Guide Contents 1. INTRODUCTION... 3 2. NAVIGATION... 4 3. MAIN MENU... 4 4. ALTERNATIVE NAVIGATION... 5 5. HOW TO CREATE A NEW SITE... 5 6. LANDING PAGE... 6 6.1 STEP

More information

BRAND IDENTITY GUIDELINES

BRAND IDENTITY GUIDELINES BRAND IDENTITY GUIDELINES 1 SKOLL FOUNDATION 03 BRANDING POSITIONING 04 SIGNATURE AND CLEAR ZONE 05 ACCEPTABLE USAGE 06 INCORRECT USAGE 07 LOGO COLOR PALETTE 08 LOGOTYPE USAGE WITH IMAGERY 10 SYMBOL USAGE

More information

Connected TV Applications for TiVo. Project Jigsaw. Design Draft. 26 Feb 2013

Connected TV Applications for TiVo. Project Jigsaw. Design Draft. 26 Feb 2013 Connected TV Applications for TiVo Project Jigsaw Design Draft 26 Feb 2013 UI Design Connected TV application for TiVo Project Jigsaw 2 Overview LAUNCH POINT The goal of Project Jigsaw is to create a library

More information

welcome to explorator. search term

welcome to explorator. search term welcome to explorator. search term EXPLORE table of contents this is the specifics under the big category 2 table of contents 2 research 16 the product literature review introduction precedent features

More information

BRAND GUIDELINES All rights reserved.

BRAND GUIDELINES All rights reserved. BRAND GUIDELINES 2017. All rights reserved. LOGO :: INTRODUCTION The Live Purple Logo Mark the most recognizable visual brand element differentiates itself from similar cause based fundraisers. The mark

More information

G2E Web Banners: 200 x 100 Signature. 160 x 160 Social Media. 125 x 125 web button

G2E Web Banners: 200 x 100  Signature. 160 x 160 Social Media. 125 x 125 web button G2E Web Banners: 200 x 100 Email Signature 160 x 160 Social Media We will generate a special coded link just for you. After you submit your order, you will receive an email (see sample below) with your

More information

The POGIL Project Publication Guidelines

The POGIL Project Publication Guidelines 1 The POGIL Project Publication Guidelines Publication Submission Checklist 2 IN ORDER TO be published, you are required to review each item below before submitting your documents to The POGIL Project.

More information

Creating our identity brand guidelines

Creating our identity brand guidelines Creating our identity brand guidelines on behalf of CREATING OUR IDENTITY INTRODUCTION Our identity is the visual representation of our brand and it communicates not only what we do, but also what we believe

More information

First Diploma Unit 10 Client Side Web. Week 4 -The CSS Box model

First Diploma Unit 10 Client Side Web. Week 4 -The CSS Box model First Diploma Unit 10 Client Side Web Week 4 -The CSS Box model Last Session CSS Basics Fonts Real world site This Session CSS box model Concept of identity -id The CSS box model represents every element

More information

Doing more with Views. Creating an inline menu

Doing more with Views. Creating an inline menu Doing more with Views Creating an inline menu About Me Caryl Westerberg Web Producer Stanford Web Services Views topics we ll cover Contextual Filters Relationships Global: View result counter Global:

More information

Map Me To ZERO Waste. Putthisak Panomsarnnarin. Thammasat University.

Map Me To ZERO Waste. Putthisak Panomsarnnarin. Thammasat University. Map Me To ZERO Waste Putthisak Panomsarnnarin Thammasat University. Chemical Substance Identified Problems Leftover Improper Waste Disposal & Collection Solution Difficulties in Accessing to Waste Management

More information

I D E N T I TY STA N DA R D S M A N UA L Rev 10.13

I D E N T I TY STA N DA R D S M A N UA L Rev 10.13 I D E N T I TY STA N DA R D S M A N UA L 3150-81-13 Rev 10.13 Table of Contents 1.1 How To Use This Manual 1.2 Web Resources Available to Faculty and Staff Basic Standards for the Signature 2.1 The Robert

More information

Additional catalogs display. Customize text size and colors.

Additional catalogs display. Customize text size and colors. Collapsible Skin The collapsible skin option displays the catalogs and categories in a collapsible format enabling enhanced navigation on Qnet. Categories can be expanded to view all of the sub categories

More information

Monochrome Cartridge Reliability Comparison Study 2016

Monochrome Cartridge Reliability Comparison Study 2016 Test Report Monochrome Cartridge Reliability Comparison Study 2016 HP LaserJet Toner Cartridges vs. Xerox Brand in EMEA The spencerlab DIGITAL COLOR LABORATORY has conducted a cartridge reliability comparison

More information

Presentation title placeholder, can be two lines Presentation subtitle placeholder. Date placeholder

Presentation title placeholder, can be two lines Presentation subtitle placeholder. Date placeholder Presentation title placeholder, can be two lines Presentation subtitle placeholder Date placeholder Presentation title placeholder Presentation title one line only Presentation subtitle placeholder Date

More information