CLASSES are a way to select custom elements without using a tag name

Size: px
Start display at page:

Download "CLASSES are a way to select custom elements without using a tag name"

Transcription

1 CSS (Part II)

2 Using Classes

3 CLASSES are a way to select custom elements without using a tag name

4 Adding a Class <p class="note"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </p>

5 You can add a CLASS attribute to ANY tag

6 The same CLASS may be applied to many different TAGS

7 The Box Model

8 (Almost) Everything is a Box p { } width: 500px;

9 (Almost) Everything is a Box p { } width: 50%;

10 (Almost) Everything is a Box p { width: 500px; height: 500px; }

11 Content, Padding, Border, Margin Hello! Padding Border Margin

12 Content, Padding, Border, Margin Hello! height width

13 Content, Padding, Border, Margin Hello! padding-top padding-bottom padding-left padding-right

14 Content, Padding, Border, Margin Hello! border-top border-bottom border-left border-right

15 Content, Padding, Border, Margin margin-top Hello! margin-bottom margin-left margin-right

16 Content, Padding, Border, Margin Hello! margin-top + border-top + padding-top + height + padding-bottom + border-bottom + margin-bottom margin-left + border-left + padding-left + width + padding-right + border-right + margin-right

17 Layout in CSS

18 Document Flow

19 Content is layed-out from top-to-bottom. Elements earlier in the HTML code appear closer to the top of the page.

20 There are two primary kinds of elements, INLINE and BLOCK.

21 BLOCK vs. INLINE A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish red fish Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes,! nascetur ridiculus mus. Suspendisse potenti. Duis in erat neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. blue fish

22 The way content is presented is called THE FLOW and understanding it makes layout much easier. Always start by thinking about what the browser WANTS to do and how you want to modify that behavior.!

23 Positioning

24 ABSOLUTE Positioning

25 Normal Flow A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish red fish blue fish <!doctype html> <html> <head> <title>document</title> </head> <body> <h1>a Header</h1> <p>lorem...</p> <nav> <ul> <li>one fish</li> <li>two fish</li> <li>red fish</li> <li>blue fish</li> </ul> </nav> </body> </html>

26 Normal Flow A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish red fish blue fish <!doctype html> <html> <head> <title>document</title> </head> <body> <h1>a Header</h1> <p>lorem...</p> <nav> <ul> <li>one fish</li> <li>two fish</li> <li>red fish</li> <li>blue fish</li> </ul> </nav> </body> </html>

27 Normal Flow A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish <body> <h1>a Header</h1> <p>lorem...</p> <nav> <ul> <li>one fish</li> <li>two fish</li> <li>red fish</li> <li>blue fish</li> </ul> </nav> </body> red fish blue fish

28 position: absolute; A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish red fish blue fish h1 { position: absolute; } Removes element from document flow.! This means that other elements cannot flow around them because they cannot see the absolutely positioned elements.! The width of absolutely positioned elements by default is the content width. (Normally the width of block elements is relative to the parent, but you can think of absolutely positioned elements as orphans.)

29 position: absolute; A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. one fish two fish red fish blue fish h1 { position: absolute; top: 0px; left: 0px; } Location properties let you specify where the element appears. You can use:! top bottom left right!

30 Using absolute positioning can be tricky. Elements are removed from the flow which makes it DIFFICULT-TO- IMPOSSIBLE to have elements flow around them.

31 A Simple Layout A Header one fish two fish red fish blue fish Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.

32 A Simple Layout one fish two fish red fish blue fish A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. <body> <h1>a Header</h1> <p class= content >Lorem...</p> <nav> <ul> <li>one fish</li> <li>two fish</li> <li>red fish</li> <li>blue fish</li> </ul> </nav> </body>

33 A Simple Layout one fish two fish red fish blue fish A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. <body> <h1>a Header</h1> <p class= content >Lorem...</p> <nav> <ul> <li>one fish</li> <li>two fish</li> <li>red fish</li> <li>blue fish</li> </ul> </nav> </body>

34 A Simple Layout one fish two fish red fish blue fish A Header Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.! nav { position: absolute; left: 10px; top: 60px; width: 100px; }!.content { position: absolute; left: 120px; top: 60px; width: 700px; }

35 A Simple Layout 2 A Header one fish two fish red fish blue fish Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. A Footer

36 Float

37 The float CSS property takes an element from the normal flow and places it along the left or right side of its container so text and inline elements wrap around it.

38 float: left; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium..thing { float: left; width: 200px; }

39 float: right; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium..thing { float: left; width: 200px; }

40 Normal Flow 1 2

41 Normal Flow 1 <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> 2

42 float: left;

43 float: left; 1 2 li { float: left; width: 200px; } 3 4

44 More Positioning

45 FIXED Positioning

46 The Rule p { } property: value;

47 RELATIVE Positioning

48 More Selectors

49 CSS Selectors tagname h1 p id #intro p#intro class.note p.note

50 Combining CSS Selectors space h1 a Select all <a> tags in <p> tags. comma h1, h2, h3 Select all h1, h2, and h3 tags. no-space p.note Select all <p> tags with a class of note.

TITLE - Size 16 - Bold

TITLE - Size 16 - Bold EDCE 2010-2011 - Size 12 - Normal Conceptual Design of Structures - Size 12 - Normal Instructor: A. Muttoni, R. Salvi, P. Wahlen - Assitant: T. Clément - Author: X. Name - TITLE - Size 16 - Bold Pier Luigi

More information

Project Title. A Project Report Submitted in partial fulfillment of the degree of. Master of Computer Applications

Project Title. A Project Report Submitted in partial fulfillment of the degree of. Master of Computer Applications Project Title A Project Report Submitted in partial fulfillment of the degree of Master of Computer Applications By Student Name1(xxMCMCxx) Student Name2(yyMCMCyy) School of Computer and Information Sciences

More information

TABLE OF CONTENTS. Updated 4/23/15. The Federal Laboratory Consortium for Technology Transfer FLC Style Guide 2

TABLE OF CONTENTS. Updated 4/23/15. The Federal Laboratory Consortium for Technology Transfer FLC Style Guide 2 FLC Style Guide TABLE OF CONTENTS The FLC identity must always be applied in a consistent manner and care must be taken to avoid misuse and confusion. Our logo is the cornerstone to visual consistency,

More information

The L A TEX Template for MCM Version v6.2

The L A TEX Template for MCM Version v6.2 For office use only T1 T2 T3 T4 Team Control Number 0000 Problem Chosen A 2016 MCM/ICM Summary Sheet For office use only F1 F2 F3 F4 The L A TEX Template for MCM Version v6.2 Summary Lorem ipsum dolor

More information

Brand identity guidelines

Brand identity guidelines Brand identity guidelines CONTENTS 1 LOGO 5 COLOUR 6 TYPEFACE 8 SIGNAGE These guidelines are to help you understand the PACIFIC ALUMINIUM visual brand. The following pages demonstrate how the PACIFIC ALUMINIUM

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

STYLE GUIDE L I B ER A L DE M O C R A T S VISUAL IDE NTITY. Style guide Liberal Democrats - Page 1

STYLE GUIDE L I B ER A L DE M O C R A T S VISUAL IDE NTITY. Style guide Liberal Democrats - Page 1 STYLE GUIDE L I B ER A L DE M O C R A T S VISUAL IDE NTITY Style guide Liberal Democrats - Page 1 V.1.2 - Liberal Democrats styleguide - 2017 - By Simone van Beek and Michael Wilkinson Style guide Liberal

More information

Style guide LIBERAL DEMOCRATS VISUAL IDENTITY. Style guide Liberal Democrats - Page 1

Style guide LIBERAL DEMOCRATS VISUAL IDENTITY. Style guide Liberal Democrats - Page 1 Style guide LIBERAL DEMOCRATS VISUAL IDENTITY Style guide Liberal Democrats - Page 1 DEMAND BETTER V.1 - Liberal Democrats styleguide - September 2018 - Demand Better Style guide Liberal Democrats - Page

More information

BOOTSTRAP AFFIX PLUGIN

BOOTSTRAP AFFIX PLUGIN BOOTSTRAP AFFIX PLUGIN http://www.tutorialspoint.com/bootstrap/bootstrap_affix_plugin.htm Copyright tutorialspoint.com The affix plugin allows a to become affixed to a location on the page. You can

More information

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 1 col1 col2 col3 col4 2 Poster Tutorial #1 Welcome to the poster tutorial! Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 3 We start at the very begin with an empty poster. In this tutorial,

More information

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 1 col1 col2 col3 col4 2 Poster Tutorial #1 Welcome to the poster tutorial! Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 3 We start at the very begin with an empty poster. In this tutorial,

More information

American Political Science Review (APSR) Submission Template ANONYMISED AUTHOR(S) Anonymised Institution(s) Word Count: 658

American Political Science Review (APSR) Submission Template ANONYMISED AUTHOR(S) Anonymised Institution(s) Word Count: 658 APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template Submission

More information

Pablo- Alejandro Quiñones. User Experience Portfolio

Pablo- Alejandro Quiñones. User Experience Portfolio Pablo- Alejandro Quiñones User Experience Portfolio About Me My name is Pablo I specialize in User Experience Research & User Interfaces I am passionate about User-Centered Design I believe research and

More information

Introduction to HTML

Introduction to HTML Introduction to HTML TOOLS HTML Hyper-Text Markup Language The Tag The Tag angle brackets (aka greater-than and less-than) The Tag name The Tag Lorem ipsum dolor sit amet, consectetuer

More information

An output routine for an illustrated book

An output routine for an illustrated book An output routine for an illustrated book Boris Veytsman TUG2014 School of Systems Biology & Computational Materials Science Center, MS 6A12, George Mason University, Fairfax, VA 22030 1. Introduction

More information

Paper Template for INTERSPEECH 2018

Paper Template for INTERSPEECH 2018 Paper Template for INTERSPEECH 2018 Author Name 1, Co-author Name 2 1 Author Affiliation 2 Co-author Affiliation author@university.edu, coauthor@company.com Abstract For your paper to be published in the

More information

TITLE SUBTITLE Issue # Title Subtitle. Issue Date. How to Use This Template. by [Article Author] Article Title. Page # Article Title.

TITLE SUBTITLE Issue # Title Subtitle. Issue Date. How to Use This Template. by [Article Author] Article Title. Page # Article Title. TITLE SUBTITLE Issue # Title Subtitle Issue Date TYPE TAGLINE HERE IN THIS ISSUE How to Use This Template Article Title Page # Article Title Page # TITLE SUBTITLE Issue # 2 Using Styles by Name Style HEADING

More information

FOR THOSE WHO DO. Lenovo Annual Report

FOR THOSE WHO DO. Lenovo Annual Report FOR THOSE WHO DO. Lenovo Annual Report 2014 CONTENTS 2 6 About Lenovo 4 Financial Highlights 5 Chairman & CEO Statement Performance About Lenovo Lenovo is one of the world's leading personal technology

More information

Prototyping Robotic Manipulators For SPHERES

Prototyping Robotic Manipulators For SPHERES MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF AERONAUTICS AND ASTRONAUTICS: SPACE SYSTEMS LAB Prototyping Robotic Manipulators For SPHERES Lisandro Jimenez, Edward Lopez, Duncan Miller August 12,

More information

SHEFA STORE CORPORATE DESIGN MANUAL BRAND & FUNCTION // CORPORATE DESIGN GUIDELINES. 01 : Corporate Identity. 02 : Corporate Stationery

SHEFA STORE CORPORATE DESIGN MANUAL BRAND & FUNCTION // CORPORATE DESIGN GUIDELINES. 01 : Corporate Identity. 02 : Corporate Stationery BRAND & FUNCTION // CORPORATE DESIGN GUIDELINES SHEFA STORE CORPORATE DESIGN MANUAL 01 : Corporate Identity 02 : Corporate Stationery 03 : Interactive Designs www.shefa-store.com Corporate Identity 01

More information

The everyhook package

The everyhook package The everyhook package Stephen Checkoway s@cs.jhu.edu November 26, 2014 Abstract The everyhook package takes control of the six TEX token parameters \everypar, \everymath, \everydisplay, \everyhbox, \everyvbox,

More information

DFSA - Web Site Revamp

DFSA - Web Site Revamp DFSA - Web Site Revamp Wireframe designs depicting the user experience version 3.0 0 May, 008 Developed By: Husain Hakim Director of User Experience & Design Interactive Limited husain@interactive-ltd.com

More information

The Next Big Thing Prepared for Meeting C

The Next Big Thing Prepared for Meeting C The Next Big Thing Prepared for Meeting C++ 2018 Andrei Alexandrescu, Ph.D. andrei@erdani.com November 15, 2018 1 / 48 Squeaky Wheel Gets the Grease 2 / 48 ( Those were the most cringey minutes of the

More information

Invoice Visual Design Specifications MEC

Invoice Visual Design Specifications MEC Invoice Visual Design Specifications MEC Author Dean Ashworth Version 01.02 Last Updated February 1, 2012 Page 1 Invoice Visual Design Specifications MEC Contents Note on sizes & scale... 1. Request Money....

More information

Brand Guidelines MAY 2016

Brand Guidelines MAY 2016 Brand Guidelines MAY 2016 CONTENT LOGO 1-11 COLORS 12 TYPOGRAPHY 13-14 STYLE 15-19 STATIONARY 20-30 including: BUSINESS CARD 21-22 LETTERHEAD 23 EMAIL SIGNATURE 24 CLIENT PROPOSAL & REPORT 25-26 NEWSLETTER

More information

MKA PLC Controller OVERVIEW KEY BENEFITS KEY FEATURES

MKA PLC Controller OVERVIEW KEY BENEFITS KEY FEATURES 1881 OVERVIEW The ezswitch Controller is a compact PLC for the modular. In addition to providing commonly used network and Fieldbus interfaces, the controller supports all digital, analog and speciality

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

Timon Hazell, LEED AP Senior BIM Engineer. Galen S. Hoeflinger, AIA BIM Technologist Manager

Timon Hazell, LEED AP Senior BIM Engineer. Galen S. Hoeflinger, AIA BIM Technologist Manager Timon Hazell, LEED AP Senior BIM Engineer Galen S. Hoeflinger, AIA BIM Technologist Manager Find Joy in Your Work The Human Aspect The Human Aspect Importance of Architecture Know People The Human Aspect

More information

Visual Design. Simplicity, Gestalt Principles, Organization/Structure

Visual Design. Simplicity, Gestalt Principles, Organization/Structure Visual Design Simplicity, Gestalt Principles, Organization/Structure Many examples are from Universal Principles of Design, Lidwell, Holden, and Butler Why discuss visual design? You need to present the

More information

Thesis GWU Example Dissertation. by Shankar Kulumani

Thesis GWU Example Dissertation. by Shankar Kulumani Thesis GWU Example Dissertation by Shankar Kulumani B.S. in Astronautical Engineering, May 2009, US Air Force Academy M.S. in Aeronautical and Astronautical Engineering, May 2013, Purdue University A Dissertation

More information

Creating An Effective Academic Poster. ~ A Student Petersheim Workshop

Creating An Effective Academic Poster. ~ A Student Petersheim Workshop Creating An Effective Academic Poster ~ A Student Petersheim Workshop 11 Seconds Poster Graphics and Pictures Headlines and Subheadings Poster Copy PRINCIPLES OF DESIGN BALANCE Visual balance comes

More information

Style guide. March 2017 CC BY 4.0 The Tor Project

Style guide. March 2017 CC BY 4.0 The Tor Project Style guide March 2017 CC BY 4.0 The Tor Project Introduction The visual identity of software is an integral part of its user experience. Correctly using a consistent and attractive style is important

More information

Transforming IT-speak:

Transforming IT-speak: Transforming IT-speak: How to tell your IT Story Bailey Szeto, Vice President, Connected Selling Experience-IT, Cisco ITM-1009 The importance of communication The two words information and communication

More information

VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008

VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008 VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008 Contents 1 Logo colourways and artworks: Colour combinations for use on different background

More information

ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL

ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL OVERVIEW The Midway Branding Standards is a reference tool that provides standards and guidelines for all usage of graphics in order to

More information

Example project Functional Design. Author: Marion de Groot Version

Example project Functional Design. Author: Marion de Groot Version Example project Functional esign uthor: Marion de Groot Version 1.0-18-4-2013 Table of contents 3 Introduction Requirements gathering 4 Use cases 5 Use case flow diagram 6 Users and Rights 7 Requirements

More information

Tonalidad.es 6/5/2014

Tonalidad.es 6/5/2014 Web Museo Tonalidad.es 6/5/2014 Páginas, Másters, Widgets e Interacciones 1. Pages 1.1. Page Tree Sitemap Inicio Colecciones Acerca de Contacta Page 2 1.2. Sitemap 1.2.1. User Interface Page 3 1.3. Inicio

More information

POSTER PRESENTATION GUIDELINES

POSTER PRESENTATION GUIDELINES POSTER PRESENTATION GUIDELINES This guide is designed to help you set up a professional looking poster presentation using PowerPoint software and walk you through the printing process from start to finish.

More information

The rjlpshap class. Robert J Lee July 9, 2009

The rjlpshap class. Robert J Lee July 9, 2009 The rjlpshap class Robert J Lee latex@rjlee.homelinux.org July 9, 2009 1 Introduction This package provides low-level helper macros and environments. It is intended for authors of L A TEX packages, who

More information

The pdfreview package

The pdfreview package The pdfreview package Michael Palmer v1.1 (September 22, 2017) Abstract The pdfreview package lets you add comments in the page margins of PDF files, e.g. when reviewing manuscripts or grading reports.

More information

Beginner s Guide to Baskerville

Beginner s Guide to Baskerville Beginner s Guide to Baskerville Having been an early admirer of the beauty of letters, I became insensibly desirous of contributing to the perfection of them. I formed to myself ideas of greater accuracy

More information

RHYMES WITH HAPPIER!

RHYMES WITH HAPPIER! RHYMES WITH HAPPIER! Title Subtitle Date Title Subtitle Date Title Subtitle Date Title Subtitle Date WHO AM I? First Last Body copy Quick Facts about Zapier HQ: San Francisco, CA 100% Remote 145 Employees

More information

CLASP Website Redesign Client Deliverables Spring 2007

CLASP Website Redesign Client Deliverables Spring 2007 CLASP Website Redesign Client Deliverables Spring 2007 CLIENT SURVEY Who are you? Shauna Vey, CLASP Council President Alan Winson, CLASP Council Vice President Business or organization name and location:

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

Version 1.4 March 15, Notes Bayer- Kogenate 2010 WFH Microsoft Surface Project (HKOG-39563) Information Architecture Wireframes

Version 1.4 March 15, Notes Bayer- Kogenate 2010 WFH Microsoft Surface Project (HKOG-39563) Information Architecture Wireframes Notes Author Version Comments Mick Rosolek.0 Initial Draft Mick Rosolek. First Round Edits Mick Rosolek.2 Additional Edits Mick Rosolek.3 Amendment Mick Rosolek.4 Amendment Site Map - Page of 4 0.0 Pre-Engagement

More information

Intermediate District 288. Brand Manual. Visual Identity Guide

Intermediate District 288. Brand Manual. Visual Identity Guide Intermediate District 288 Brand Manual Visual Identity Guide SWMetro District Office 792 Canterbury Road, Suite 211 Shakopee, MN 55379 (952) 567.8100 Overview The SouthWest Metro Intermediate District

More information

Let's take a look at what CSS looks like in Dreamweaver using the "Embedded" coding which is the styles are within the html code and not separate.

Let's take a look at what CSS looks like in Dreamweaver using the Embedded coding which is the styles are within the html code and not separate. Creating web pages using CSS and Dreamweaver CS3 Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation of a document written in a markup language. Its most common application

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

logo graphic will go here

logo graphic will go here I will be creating a web site that will promote my freelance graphic design and photography business. I will outline my business and display of my commercial photography, print and web design. Having a

More information

Colors. F0563A Persimmon. 3A414C Cobalt. 8090A2 Slate Shale. C4CDD6 Alloy Coal. EFF3F5 Silver. EDF3F9 Horizon.

Colors. F0563A Persimmon. 3A414C Cobalt. 8090A2 Slate Shale. C4CDD6 Alloy Coal. EFF3F5 Silver. EDF3F9 Horizon. Colors Brand Primary F0563A Persimmon 3A414C Cobalt Secondary Brand 333943 Coal 697582 Shale 8090A2 Slate C4CDD6 Alloy E1E6EB Platinum EFF3F5 Silver EDF3F9 Horizon FFFFFF White Interaction 0088A9 Ocean

More information

lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a

lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a Patrick Happel b November 24, 2018 Abstract lipsum is a L A TEX package that produces dummy text to be used in test documents or examples. The

More information

Row 1 This is data This is data

Row 1 This is data This is data mpdf TABLES CSS Styles The CSS properties for tables and cells is increased over that in html2fpdf. It includes recognition of THEAD, TFOOT and TH. See below for other facilities such as autosizing, and

More information

Row 1 This is data This is data. This is data out of p This is bold data p This is bold data out of p This is normal data after br H3 in a table

Row 1 This is data This is data. This is data out of p This is bold data p This is bold data out of p This is normal data after br H3 in a table mpdf TABLES CSS Styles The CSS properties for tables and cells is increased over that in html2fpdf. It includes recognition of THEAD, TFOOT and TH. See below for other facilities such as autosizing, and

More information

[Main Submission Title] (Font: IBM Plex Sans Bold, 36 point)

[Main Submission Title] (Font: IBM Plex Sans Bold, 36 point) [Main Submission Title] (Font: IBM Plex Sans Bold, 36 point) [Author Names] Author 1 [Anonymised for submission] 1, Author 2 [Anonymised] 2 (each author name separated by commas) and Author 3 [Anonymised]

More information

This page presents most of typographical aspects of JA Drimia. Make your readers happy with great Typography and User Experience!

This page presents most of typographical aspects of JA Drimia. Make your readers happy with great Typography and User Experience! This page presents most of typographical aspects of JA Drimia Make your readers happy with great Typography and User Experience! This is an Heading 1 Lorem tortor Curabitur urna interdum Maecenas ut felis

More information

OCTOBER 16 NEWSLETTER. Lake Mayfield Campground OR-LOW GOOD TIMES

OCTOBER 16 NEWSLETTER. Lake Mayfield Campground OR-LOW GOOD TIMES a OR-LOW GOOD TIMES OCTOBER 16 NEWSLETTER Lake Mayfield Campground by Nan O. The October camp out was a joint adventure with hosts Nor West LoWs. We arrived on Monday, October 10 th and stayed three nights.

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

Making the New Notes. Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems

Making the New Notes. Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems Making the New Notes Community Cooperation Concepts Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems Making the New Notes Community

More information

Published : License : None. INTRODUCTION 1. Nvu

Published : License : None. INTRODUCTION 1. Nvu NVU 1 Published : 2011-03-12 License : None INTRODUCTION 1. Nvu 2 1. NVU NvU is an Open Source Web editing application that allows WYSIWYG (What You See Is What You Get) editing and creation of web pages.

More information

COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS

COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS PANTONE 349 HEX 026937 RGB 2, 105, 55 CMYK 90, 33, 100, 26 PANTONE 7489 HEX 73A950

More information

Saturday January 6, pm

Saturday January 6, pm Seminar & Dance Workshop Miss Greater Reading 2017 ABIGAIL BACHMAN Saturday January 6, 2018 1-3pm Abigail Bachman is currently a student at Lock Haven University. She studies Recreational Therapy and minors

More information

TITLE. Tips for Producing a Newsletter IN THIS ISSUE

TITLE. Tips for Producing a Newsletter IN THIS ISSUE TITLE UNIT NAME DATE Advantages of a Newsletter The purpose of a newsletter is to provide specialized information to a targeted audience. Newsletters can be a great way to market yourself, and also create

More information

Word Processing Fundamentals

Word Processing Fundamentals Class Description This is an introduction to the basics of word processing with a focus on both Microsoft Word and Google Drive Documents. The focus is on formatting text and pages; copying, cutting, and

More information

Viewport, custom CSS, fonts

Viewport, custom CSS, fonts CS120 Web Development LIU 1 of 9 Viewport, custom CSS, fonts Running a web server (optional) When creating basic static web sites, it s entirely possible to test them in your browser just using a file://

More information

Breaking Out of the Box

Breaking Out of the Box 1 von 26 12.07.2007 11:37 Article Home» Client Side Coding» CSS Tutorials» Breaking Out of the Box Breaking Out of the Box By Jina Bolton May 16th 2007 Reader Rating: 9.2 One of the most commonly used

More information

Chaparral Sports Day. Basketball Ashley Guerrero(captain), Carrera, Rasuly, Hamilton Alba, Razel Alba, Bannister, Phillips, Richardson.

Chaparral Sports Day. Basketball Ashley Guerrero(captain), Carrera, Rasuly, Hamilton Alba, Razel Alba, Bannister, Phillips, Richardson. CHAPARRAL SPORTS DAY Chaparral Sports Day SPORTS DAY IN THIS ISSUE Chaparral Sports Day by Amy Guerrero October 21, 2017, the day we put on our game faces, ready to prove how competitive our unit is. Chaparral

More information

New Features in mpdf v5.7

New Features in mpdf v5.7 New Features in mpdf v5.7 Table of Contents ToC Layout and styling... 1 Table of Contents styling... 1 Text-align on decimal point... 3 Automatic ToC and Bookmarks... 4 Improved line-breaking... 4 CSS

More information

Visual language 2.0 BBC design guidelines for the web

Visual language 2.0 BBC design guidelines for the web Visual language 2.0 BBC design guidelines for the web Global Visual Language 2.0 - BBC design guidelines for the web. Lyra Xharra Loxha, Steve Gibbons. Last modified at 4:41 PM, 17 December 2008 1 Index

More information

Visual Identity Standards

Visual Identity Standards Visual Identity Standards 6.0 Stationery Information and inquiries: University Relations brand@ Visual Identity Standards 2 6.0 Stationery 6.01 Introduction 6.01 Introduction 6.02 Letterhead & envelopes

More information

Development of a News Recommender System based on Apache Flink

Development of a News Recommender System based on Apache Flink Development of a News Recommender System based on Apache Flink Alexandru Ciobanu 1 and Andreas Lommatzsch 2 1 Technische Universität Berlin Straße des 17. Juni, D-10625 Berlin, Germany alexandru.ciobanu@campus.tu-berlin.de

More information

VISUAL. Standards Guide

VISUAL. Standards Guide VISUAL Standards Guide Published: August 19, 2013 TABLE OF CONTENTS This is the approved Visual Standards Guide for Southeastern Community College. All logos and symbols in this manual are the property

More information

The colophon Package, v1.1

The colophon Package, v1.1 The colophon Package, v1.1 Donald P. Goodman III June 3, 2018 Abstract The colophon is fascinating to anyone even slightly interested in typography and document design; and yet incredibly, the best document

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

This is the Title of the Thesis

This is the Title of the Thesis This is the Title of the Thesis This is the Thesis Subtitle if Necessary The Full Name of the Author Goes Here Thesis to obtain the Master of Science Degree in Information Systems and Computer Engineering

More information

Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008

Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008 Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008 FacWeb 1 The following shows the contents of the FacWeb.txt document, with instructions for replacing certain items with your

More information

GECF Brand GuidElinEs GECF 2011

GECF Brand GuidElinEs GECF 2011 GECF Brand Guidelines GECF Brand Guidelines COntents ABOUT THIS DOCUMENT 1.0 About GECF 1.1 What we stand for 1.2 Our brand 2.0 Logo 2.1 Main logo 2.2 Logo variations 2.3 Exclusion areas 3.0 Typography

More information

Teach Yourself Microsoft Publisher Topic 2: Text Boxes

Teach Yourself Microsoft Publisher Topic 2: Text Boxes Teach Yourself Microsoft Publisher Topic 2: Text Boxes http://www.gerrykruyer.com In this second Microsoft Publisher lesson, you will look at Publisher Text Boxes and how they are different to MS Word

More information

src0-dan/mobile.html <!DOCTYPE html> Dan Armendariz Computer Science 76 Building Mobile Applications Harvard Extension School

src0-dan/mobile.html <!DOCTYPE html> Dan Armendariz Computer Science 76 Building Mobile Applications Harvard Extension School src0-dan/mobile.html 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48.

More information

Ghislain Fourny. Big Data 2. Lessons learnt from the past

Ghislain Fourny. Big Data 2. Lessons learnt from the past Ghislain Fourny Big Data 2. Lessons learnt from the past Mr. Databases: Edgar Codd Wikipedia Data Independence (Edgar Codd) Logical data model Lorem Ipsum Dolor sit amet Physical storage Consectetur Adipiscing

More information

CORPORATE IDENTITY MANUAL

CORPORATE IDENTITY MANUAL CONTENTS SECTION 01 - INTRODUCTION 01 Overview 1 0.1.1 Strategic Overview 2 0.1.2 How to use the Corporate Identity (CI) Manual 3 SECTION 02 - CORPORATE IDENTITY 02 Corporate Signature 5 02.1 Construction

More information

WRAS WIAPS BRAND GUIDELINES 2015

WRAS WIAPS BRAND GUIDELINES 2015 01 WRAS WIAPS BRAND GUIDELINES 2015 02 WRAS PRODUCT APPROVAL CERTIFICATION MARK BRAND GUIDANCE AND TERMS AND CONDITIONS OF USE WRAS LTD. CERTIFICATION MARKS, TRADEMARK AND LOGOS (APPLIES TO ALL END USERS)

More information

This page presents most of typographical aspects of JA Teline iii. Make your readers happy with great Typography and User Experience!

This page presents most of typographical aspects of JA Teline iii. Make your readers happy with great Typography and User Experience! This page presents most of typographical aspects of JA Teline iii. Make your readers happy with great Typography and User Experience! This is an Heading 1 Lorem tortor Curabitur urna interdum Maecenas

More information

Formatting Theses and Papers using Microsoft Word

Formatting Theses and Papers using Microsoft Word Formatting Theses and Papers using Microsoft Word (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop... i Workshop Objectives... i Session Prerequisites...

More information

BOWIE FARMERS MARKET. Anne Bontogon Campaign Bowie Farmers Market

BOWIE FARMERS MARKET. Anne Bontogon Campaign Bowie Farmers Market BOWIE FARMERS MARKET Anne Bontogon Campaign Bowie Farmers Market Research Competition: Bowie Farmers Market is provides fresh produce, fruit, meat and poultry in the Bowie community. Its competitors are

More information

Insights. Send the right message to the right person at the right time.

Insights. Send the right message to the right person at the right time. Insights Send the right message to the right person at the right time. StreamSend Insights Guide www.streamsend.com What is StreamSend Insights? StreamSend Insights is a powerful marketing automation platform

More information

The LATEX keyfloat Package

The LATEX keyfloat Package The LATEX keyfloat Package v0.15 2017/05/12 2016 Brian Dunn bd@bdtechconcepts.com Provides a key/value interface for generating floats. Abstract The keyfloat package provides a key/value user interface

More information

Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE

Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE Today s tasks This lesson is on the wiki: Design Exercise (for A3); corporate theme in primary design 3rd November

More information

AR0051 content/style. Michelle Bettman Henry Kiksen. Challenge the future

AR0051 content/style. Michelle Bettman Henry Kiksen. Challenge the future AR0051 content/style Michelle Bettman Henry Kiksen Challenge the future 1 AR0051: Digital Presentation Portfolio Today's Programme: A little on HTML/CSS Group-wise mind-map on Content and Style Discussion

More information

Customer Journey EIV and emsfaa. January 2018

Customer Journey EIV and emsfaa. January 2018 Customer Journey EIV and emsfaa January 2018 1 Electronic Identity Verification (EIV) 2 Step 0 After the student applies and is approved for student financial assistance funding, they receive a Notice

More information

Compassion. Action. Change.

Compassion. Action. Change. DRAFT GRAPHIC STANDARDS GUIDE Contents 3 Overview 4 Tagline 6 Imagery 7 Identity Overview 8 CalMHSA Logo 10 Logo Usage 12 CalMHSA Logo Configurations 14 Color Palette 15 Typography 19 Design Samples GRAPHIC

More information

NATURAL BUILDING TECHNOLOGIES Document: Feedback Sheet Revision: A Date: 13/07/16 Queries:

NATURAL BUILDING TECHNOLOGIES Document: Feedback Sheet Revision: A Date: 13/07/16 Queries: Document: Feedback Sheet Revision: A Date: 13/07/16 What s a wireframe? It s important that everything you need to present on the site is accounted for, and has been considered in the layout. The best

More information

MBCA Section Newsletter Required Content Guidelines

MBCA Section Newsletter Required Content Guidelines MBCA Section Newsletter The attached newsletter template, developed by the National Business Office of the Mercedes-Benz Club of America along with Mr. Stacy Rollins, Newsletter Committee Chairman, was

More information

My tags Ornare sociosqu, magna, nunc, erat duis, elit malesuada, arcu, quam ut. > View all. Recommended content

My tags Ornare sociosqu, magna, nunc, erat duis, elit malesuada, arcu, quam ut. > View all. Recommended content Notes 0.2.1 My Shortlist - My Shortlist My tags Subscriptions Account details Admin console Quick notes: - Admin console link: displays only for government users that have rights to access their country

More information

IDENTITY STANDARDS LIVINGSTONE COLLEGE DR. JIMMY R. JENKINS, SR. PRESIDENT

IDENTITY STANDARDS LIVINGSTONE COLLEGE DR. JIMMY R. JENKINS, SR. PRESIDENT IDENTITY STANDARDS DR. JIMMY R. JENKINS, SR. PRESIDENT VERSION 1.0 AUGUST 13, 2014 A MESSAGE FROM OUR PRESIDENT Greetings, Blue Bear Family! As President of Livingstone College, it is my duty to ensure

More information

9 Ways You Can Put Behavioral Automation to Work.

9 Ways You Can Put Behavioral Automation to Work. 9 Ways You Can Put Behavioral Automation to Work www.streamsend.com The Winning Formula While email marketing is still king, when used in combination with marketing automation and behavioral insights,

More information

Getting started with Managana creating for web and mobile devices

Getting started with Managana creating for web and mobile devices Getting started with Managana creating for web and mobile devices Written and compiled by Lucas Junqueira and Marilia Bergamo 4th Edition: August 2013 (Managana 1.6.0) With information from http://www.managana.org

More information

I/O Files. Chapter 10

I/O Files. Chapter 10 Chapter 10 I/O Files So far we have worked reading and writing text files. However, operating systems represent most of its files as sequences of bytes, not as text. Since reading bytes and converting

More information

BBN ANG 183 Typography Lecture 5A: Breaking text

BBN ANG 183 Typography Lecture 5A: Breaking text BBN ANG 183 Typography Lecture 5A: Breaking text Zoltán Kiss & Péter Szigetvári Dept of English Linguistics, Eötvös Loránd University kz & szp (delg) typo/breaking (5A) 1/ 37 outline probelms with WYSIWYG

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