Code Monkey home page Code Monkey logo

plasma's People

Contributors

barakcoh avatar csakai avatar deenaedw avatar everest113 avatar gerev avatar itai-katz avatar kangax avatar kobim avatar maniator avatar nickstamas avatar pseuyi avatar rainbowstripes avatar rfarine avatar roomfive avatar sbauch avatar shirankfir avatar weavivoren avatar williamtan37 avatar wingyli avatar yale avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

plasma's Issues

Side bar

Preview:

screen shot 2016-10-20 at 14 41 52


CSS:

/* Side bar */
background-color: $purple100;
width: 70px;
height: 100%;

Related issues:

  • Side bar item #27
  • Brand item #28
  • User & settings item #29
  • Support item #30
  • Search item #31

Table header <th>

Preview:

screen shot 2016-11-29 at 15 17 11


CSS:

/* <th> */
height: 70px;
border-bottom: 1px solid $gray200;
font: $bold5;
color: $weworkblack;

/* Sorted by <th> */
border-bottom: 3px solid $weworkyellow;

Select

Related issue: Options & option groups #16


Preview:

screen shot 2016-10-19 at 16 56 38


CSS (limited):

Search CSS largely the same as a text input (see #14).
Additions and differences below:

Regular:

/* css arrow */
background-image: 
  linear-gradient(45deg, transparent 50%, $weworkblack 50%),
  linear-gradient(135deg, $weworkblack 50%, transparent 50%);
background-position: 
  calc(100% - 15px) 16px, 
  calc(100% - 10px) 16px;
background-size: 
  5px 5px, 
  5px 6px;
background-repeat: no-repeat;

Large:

/* css arrow */
background-position: 
  calc(100% - 20px) 21px, 
  calc(100% - 15px) 21px;

Textarea

Preview:

screen shot 2016-10-19 at 17 09 14


CSS (limited):

Search CSS largely the same as a text input (see #14).
Additions and differences below:

Regular:

/* Textarea */
height: none;
padding: 10px;
(minimum 4 rows)

Large:

/* Textarea */
padding: 15px;

Number input

Preview:

screen shot 2016-10-19 at 16 34 34


CSS (limited):

Number input CSS largely the same as a text input (see #14).
Additions and differences below:

Regular:

/* Number input */
min-width: 60px;

/* Plus/minus control (normal) */
width: 15px;
background-color: $white300;
border: 1px solid darken($white300, 10%);

/* Plus/minus (active) */
background-color: darken($white300, 10%);

/* Plus/minus control (disabled) */
border-color: $gray300;
background-color: $white;
color: $gray300;

/* Plus/minus control (error) */
border-color: $warningred;
background: $warningred;
color: $white;

Large:

/* Number input */
min-width: 70px;

Link button style

There are 5 styles for buttons in Plasma. This is the 'link' and 'link with an icon' style(s).

This button style has 4 states, including as they appear left-to-right below: normal, hover, active and disabled.


Link (with no icon) design:

link-button


Link (with icon) design:

link-icon-button


Assets:


CSS (limited):

/* Normal */
background-color: none;
border: none;
height: 38px;
padding: 0;
transition: all 0.2s;
font: $bold5;
color: $weworkblack;

/* :before (link with an icon) */
content: "";
display: block;
background: url("path_to_icon.png") no-repeat;
width: 30px;
height: 30px;
float: left;
margin: 4px 0;

/* Hover */
opacity: 0.7;

/* Active */
opacity: 0.4;

/* Disabled */
opacity: 0.1;

Row that opens the side drawer

Rows that on-click open the side drawer behave like this:


Preview:

screen shot 2016-11-29 at 15 47 20


CSS:

/* Row on hover */
background-color: rgba(255,207,113,0.05); 
/* $weworkyellow @ 5% */

Multi-select and option tags

Related issue: Select #15


Preview:

screen shot 2016-10-19 at 17 12 35


Assets:


CSS (limited):

Multi-select CSS largely the same as a select (see #15).
Additions and differences below:

Regular:

/* Multi-select */
padding: 3px 0;

/* Option tag */
height: 32px;
padding: 0 30px 0 10px;
border-radius: 2px;
margin-left: 3px;
background-color: $purple200;
font: $regular2;
color: $gray600;

/* Option tag ‘x’ icon */
background-image: 
  url(path_to_icon.png);
width: 30px;
height: 30px;
background-position: center right;

Large:

/* Option tag */
height: 42px;

Fixed right

Preview:

screen shot 2016-12-06 at 11 33 38

screen shot 2016-12-06 at 11 33 46


CSS (limited):

/* Fixed right */
height: 100%;
min-width: 200px;
padding: 0 30px;
border-left: 1px dashed $gray300;

/* Fixed right (fixed position) */
position: fixed;
margin-top: 30px;

Preview (in-situ):

cms-8-building-edit

cms-9-building-edit-scrolled

Inline label

Related issue: Legend & label (#22)


Preview:

screen shot 2016-10-21 at 17 00 40


CSS (limited):

Regular:

/* Inline label */
font: $bold5;
line-height: 40px;
margin-right: 20px;

Large:

/* Inline label */
font: $bold4;
line-height: 50px;

Actions <td>

Preview:

screen shot 2016-11-29 at 15 59 43


CSS:

/* Action <td> */
padding: 0 0 0 4px;

/* Icon */
height: 30px;
width: 30px;
color: $gray300;

Note:
The actions menu on-hover of the action icon still needs design spec. Will follow soon.

Field caption

'Field caption' is an optional ‘caption’ below a form field or fieldset, with three use cases:

  • Instruction: Provide more context to what the form field is asking.
  • Error: Why is this form field showing an error.
  • Link: A link or action related to the form field.

Preview:

screen shot 2016-10-20 at 14 11 52


CSS:

Regular:

* Instruction (text below) */
font: $regular3;
color: $gray200;
margin-top : 5px;

/* Error (text below) */
font: $bold6;
color: $warningred;
margin-top : 5px;

/* Link/action (text below) */
font: $bold6;
color: $linkblue;
margin-top : 5px;

/* Disabled state */
color: $gray300;

Large:

/* No change */

Tertiary (light) button style

Related to #11


This is an alternative variant on the default tertiary style — a light version for overlaying images and dark background colors.

/* Same styles as the default tertiary button, but switch any instance of WeWork Black or #000 with Gray 600 */

Design:

screen shot 2016-11-07 at 14 36 47

Table cell <td>

Preview:

screen shot 2016-11-29 at 15 09 29


CSS:

/* <td> */
padding: 10px 0;
min-height: 40px;
border-bottom: 1px solid $gray300;
font: $regular2;
color: $weworkblack;

/* Links */
font-weight: bold;
color: $linkblue;

/* First <td> with text */
padding-left: 20px;

Table <table>

Preview:

screen shot 2016-11-29 at 15 10 51


CSS:

/* <table> */
background: $white;
border-top: 1px solid $gray300;
border-left: 1px solid $gray300;
border-right: 1px solid $gray300;
border-radius: 2px;
border-spacing: 0;
width: 100%;

Related issues:

  • Table cell #47
  • Table header #48
  • Null state for a #49
  • Row that opens the side drawer #50

Font styles

9 font styles for Plasma:


Bold 1

sample bold 1

/* Bold 1 */
font-family: Helvetica;
font-weight: bold;
font-size: 80px;
letter-spacing: -3px;
line-height: 80px;

Bold 2

sample bold 2

/* Bold 2 */
font-family: Helvetica;
font-weight: Bold;
font-size: 40px;
letter-spacing: -1px;
line-height: 44px;

Bold 3

sample bold 3

/* Bold 3 */
font-family: Helvetica;
font-weight: Bold;
font-size: 30px;
letter-spacing: -0.3px;
line-height: 30px;

Bold 4

sample bold 4

/* Bold 4 */
font-family: Helvetica;
font-weight: Bold;
font-size: 16px;
line-height: 20px;

Bold 5

sample bold 5

/* Bold 5 */
font-family: Helvetica;
font-weight: Bold;
font-size: 13px;
line-height: 20px;

Bold 6

sample bold 6

/* Bold 5 */
font-family: Helvetica;
font-weight: Bold;
font-size: 11px;
line-height: 18px;

Regular 1

sample regular 1

/* Regular 1 */
font-family: Helvetica;
font-weight: Regular;
font-size: 16px;
line-height: 20px;

Regular 2

sample regular 2

/* Regular 2 */
font-family: Helvetica;
font-weight: Regular;
font-size: 13px;
line-height: 20px;

Regular 3

sample regular 3

/* Regular 3 */
font-family: Helvetica;
font-weight: Regular;
font-size: 11px;
line-height: 18px;

Overflow menu

Preview:

screen shot 2016-12-15 at 11 36 05


CSS (limited):

/* Icon part of menu */
background: $white;
width: 38px; /* 4px either side of 30x30 action icon */
height: 30px;
(icon) color: $gray200;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);

/* CSS for menu part same as options for a select #16 */

Alert bar

An alert bar slides down from the top of the screen, overlaying all page content. There are three types of alert bar as seen below:


Warning:
Red with button to dismiss the alert bar

alert-warning


Error:
Red with button to refresh the page

alert-error


Message:
Purple with button to dismiss the alert bar

alert-message


CSS:

/* Alert bar */
background-color: $warningred;
opacity: 0.94;
height: 70px;
padding: 0 30px;

/* Message alert bar */
background-color: $purple200;

/* Text to the left */
font: $bold5;
color: $gray600;

/* Link + icon style button to the far right */

Icons for button:

Both .svg icons should be $gray600 color.

Legend & label

Related issue: Inline label (#32)


Preview:

screen shot 2016-10-19 at 18 18 36


CSS (limited):

Regular:

/* Label & legend */
font: $bold5;
margin-bottom: 5px;

Large:

/* Label & legend */
font: $bold4;

Tooltip

Preview:

screen shot 2016-12-12 at 11 06 28


CSS (limited):

/* Tooltip */
background-color: rgba(36,39,40,0.94); /* $weworkblack @ 94% */
padding: 15px;
min-width: 150px;
font: $bold6;
color: $gray600;
border-radius: 3px;
text-align:left;

Secondary button style

There are 5 styles for buttons in Plasma. This is the secondary style.

Each button style has up to 5 states, including as they appear left-to-right below: normal, hover, active, loading and disabled.


Design:

secondary-button


CSS:

Hopefully the below will help :) Doesn't cover everything, but does cover off some of the core css for each state.

/* Normal */
background-color: $white300;
border: 1px solid darken($white300, 10%);
border-radius: 5px;
height: 38px;
padding: 0 20px;
transition: all 0.2s;
font: $bold5;
color: $weworkblack;

/* Hover */
background-color: darken($white300, 5%);
border-color: darken($white300, 10%);

/* Active */
background-color: darken($white300, 10%);
border-color: darken($white300, 20%);

/* Loading icon */
width: 20px;
height: 20px;
color: #000;
opacity: 0.1;

/* Disabled */
background-color: none;
border-color: #000;
color: #000;
opacity: 0.1;

Search item

Preview:

screen shot 2016-10-20 at 15 00 55


CSS:

/* CSS largely the same as side bar item (#26). Differences below */

/* Search side bar item */
background-color: rgba(0,0,0,0.1); /* #000 @ 10% */
/* Icon centered vertically */
/* No text on search item */

Avatar <td>

Preview:

screen shot 2016-11-29 at 15 51 24


CSS:

/* Avatar <td> */
padding: 10px 0 10px 10px;

/* Avatar */
width: 30px;
height: 30px;
border-radius: 100%;

Modal

Preview:

modal-preview


Animation:

Perhaps we could play with a subtle animation on load of the modal (also upon exiting it)... Maybe the purple overlay fades in quick, then after a very short delay the modal loads (zoomIn). Done a quick demo here: https://codepen.io/roomfive/pen/WGLdBP


CSS:

/* Modal (outer container) */
min-width: 500px;
border-radius: 10px;
background-color: $white;
box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
padding: 40px 40px 0 40px;

/* Header (above frame) */
font: $bold3;
margin-bottom: 30px;

/* Frame (inner container) */
border: 1px dashed $gray300;
border-radius: 2px;
padding: 30px;

/* Buttons (below frame) */
margin: 30px 0;

/* Fullscreen overlay */
opacity: 0.94;
Background-color: $purple100;

Spec:

screen shot 2016-10-21 at 11 03 58


Also see related issue: 'Tabs in a modal' #41

Side bar item

Preview:

screen shot 2016-10-20 at 14 50 07


CSS:

/* Side bar item */
height: 50px; /* 70px with padding */
padding: 10px 0;
font: $regular2;
color: $gray600;
text-align: center;
border-bottom: 1px solid rgba(0,0,0,0.3);

/* Icon */
width: 30px;
height: 30px;
/* Icon color is $gray300 */

/* Active state (:before) */
background-color: $purple200;
width: 5px;
height: 100%;
display: block;

/* Active state */
background-color: rgba(89,105,139,0.1); /* $purple200 @ 10% */

/* Hover state */
background-color: $purple200;

Checkbox

Preview:

screen shot 2016-10-19 at 18 08 37


CSS (limited):

Search CSS largely the same as a radio button (see #20).
Additions and differences below:

Regular:

/* Input */
width: 16px;
height: 16px;
border-radius: 2px;

Support item

Preview:

screen shot 2016-10-20 at 14 58 41


CSS:

/* CSS largely the same as side bar item (#26). Differences below */

/* Support side bar item */
border-bottom: none;
margin-bottom: 10px;

Hero screen

Talk to me (Andrew) about this one... Had an idea for a transition between the log in screen and the opening screen of the product (on load) that will make more sense explaining in person :)


Preview:

screen shot 2016-10-26 at 15 59 12


Outline:

screen shot 2016-11-07 at 17 03 05


CSS (limited):

/* Log in screen */

/* H1 */
font: $bold1;
color: $gray600;
margin-bottom: 40px;

/* Use the primary button */

/* H1 and button */
width: 70%;
max-width: 800px;
padding: 0 15%;
/* H1 and button vertically centered */

/* Side bar */
background-color: none;
/* Only brand item present in side bar */

/* Background */
background-size: cover;

Photos used in mocks:

Text input

Preview:

screen shot 2016-10-19 at 16 40 35


Assets:


CSS (limited):

Regular

/* Text input */
background: $white;
height: 38px;
padding: 0 10px;
border: 1px solid $gray300;
border-radius: 2px;
font: $regular2;
color: $weworkblack;

/* Placeholder */
color: $gray200;

/* Hover */
border-color: $gray200;

/* Focus */
border-color: $gray200;
box-shadow: 0 0 4px 1px $gray300;

/* Disabled */
color: $gray300;
cursor: not-allowed;

/* Instruction (text below) */
font: $regular3;
color: $gray200;
margin-top : 5px;

/* Error (input) */
border-color: $warningred;

/* Error (text below) */
font: $bold6;
color: $warningred;
margin-top : 5px;

Large

/* Text input */
height: 48px;
padding: 0 15px;
font: $regular1;

Empty state for a table

In the event that a table has no data, the rows are replaced with a simple message explaining why/that the table has no data.


Preview:

screen shot 2016-11-29 at 16 43 28


CSS:

/* Empty state message */
font: $bold3;
color: $gray300;
padding: 40px;

Range input

Preview:

screen shot 2016-10-20 at 14 13 08


CSS:

Regular:

/* Slider bar */
height: 3px;
border-radius: 100%;
background-color: $gray300;
margin: 7px 0 12px 0;

/* Slider */
width: 9px;
height: 9px;
border: 3px solid $purple200;
border-radius: 100%;
background-color: $white;

/* Values */
font: $regular3;
color: $gray200;

Large:

/* Slider bar */
margin: 11px 0 16px 0;

/* Values */
font: $regular2;

Tertiary button style

There are 5 styles for buttons in Plasma. This is the tertiary style.

Each button style has up to 5 states, including as they appear left-to-right below: normal, hover, active, loading and disabled.


Design:

tertiary-button


CSS (limited):

/* Normal */
background-color: none;
border: 1px solid $weworkblack;
border-radius: 5px;
height: 38px;
padding: 0 20px;
transition: all 0.2s;
font: $bold5;
color: $weworkblack;

/* Hover */
background-color: rgba(0, 0, 0, 0.05);

/* Active */
background-color: rgba(0, 0, 0, 0.1);

/* Loading icon */
width: 20px;
height: 20px;
color: #000;
opacity: 0.1;

/* Disabled */
background-color: none;
border-color: #000;
color: #000;
opacity: 0.1;

See also: Tertiary (light) button style (issue #37)

Search

Preview:

screen shot 2016-10-19 at 17 16 23


Assets:


CSS (limited):

Search CSS largely the same as a text input (see #14) and select (see #15).
Additions and differences below:

Regular:

/* Search */
text-indent: 38px;

/* Search icon (normal) */
color: $gray300;
width: 30px;
height: 30px;
margin: 4px;

/* Search icon (hover) */
color: $gray200;

Large:

/* Search */
text-indent: 48px;

/* Search icon */
margin: 9px;

Prefix and suffix (on a text input)

Preview:

screen shot 2016-11-15 at 15 14 21


CSS:

Regular:

padding: 0 10px;
font: $regular2;
color: $weworkblack;
background-color: $gray600;
border-color: $gray300;

Large:

padding: 0 15px;
font: $regular1;

Fixed left

Preview:

screen shot 2016-12-06 at 11 29 56

screen shot 2016-12-06 at 11 30 09


CSS (limited):

/* Fixed left */
height: 100%;
min-width: 200px;
padding: 0 30px;
border-right: 1px dashed $gray300;

/* Fixed left (fixed position) */
position: fixed;
margin-top: 30px;

Preview (in-situ):

cms-4-buildings

cms-5-buildings-scrolled

Update to SASS hex colors

Note: These are aren't 'final', but well progressed, and necessary for some further issues coming up related to buttons (issues for those following shortly). Any changes to these colors will be minimal in future though.

Some tweaks to the hex color values (and naming):

_digital-brand-colors


WeWork Black
#252729

Gray 100
#575757

Gray 200
#C2C2C2

Gray 300
#E0E0E0

Gray 400
#EAEBEC

Gray 500
#F4F4F4

Gray 600
#FAF9F8


White
#FFFFFF

White 100
#FFFEF2

White 200
#FCF9EB

White 300
#ECE9D9

White 400
#D7D4C4

White 500
#969186


WeWork Yellow
#FFCF71

WeLive Red
#EF4822


Link Blue
#5499C3

Warning Red
#D86262


Purple 100
#2B3445

Purple 200
#59698B

Image <td>

Preview:

screen shot 2016-11-29 at 15 53 10


CSS:

/* Image <td> */
padding: 10px 0 10px 10px;

/* Image */
width: 100px;
height: 60px;
background-image: url();
background-size: cover;

Primary button style

There are 5 styles for buttons in Plasma. This is the primary style.

Each button style has up to 5 states, including as they appear left-to-right below: normal, hover, active, loading and disabled.


Design:

primary-button


CSS:

Hopefully the below will help :) Doesn't cover everything, but does cover off some of the core css for each state.

/* Normal */
background-color: $weworkyellow;
border: 1px solid darken($weworkyellow, 15%);
border-radius: 5px;
height: 38px;
padding: 0 20px;
transition: all 0.2s;
font: $bold5;
color: $weworkblack;

/* Hover */
background-color: darken($weworkyellow, 5%);
border-color: darken($weworkyellow, 20%);

/* Active */
background-color: darken($weworkyellow, 10%);
border-color: darken($weworkyellow, 30%);

/* Loading icon */
width: 20px;
height: 20px;
color: #FFF;
opacity: 0.1;

/* Disabled */
background-color: none;
border-color: #000;
color: #000;
opacity: 0.1;

Radio buttons

Preview:

screen shot 2016-10-19 at 18 06 28


CSS (limited):

Regular:

/* Input & label */
margin: 3px 0;

/* Input */
width: 16px;
height: 16px;
border-radius: 100%;
background: $white;
border: 1px solid $gray300;

/* Label (normal) */
margin-left: 10px;
font: $regular2;
color: $weworkblack;

/* Checked (dot) */
height: 8px;
width: 8px;
border-radius: 100%;
background-color: $weworkblack;
top: 3px;
left: 3px;
transition: background 0.2s linear;

/* Hover (input) */
border-color: $gray200;

/* Hover (label) */
opacity: 0.7;

/* Focus (input) */
border-color: $gray200;
box-shadow: 0 0 4px 1px $gray300;

/* Focus (label) */
opacity: 0.4;

/* Error (input) */
border-color: $warningred;

/* Error (text below fieldset) */
font: $bold6;
color: $warningred;

Large:

/* Input & label */
margin: 6px 0;

/* Label (normal) */
font: $regular1;

Null state for a <td>

To signify that a table row is cancelled, complete, occupied etc.


Preview:

screen shot 2016-11-29 at 15 33 16


CSS:

/* Null <td> */
background-color: $gray600;

Segmented card

Only a small tweak.

The border-color for the left and right segment should be Gray 300 #E0E0E0

Alert overlay

Preview:

cms-8

Outline:

screen shot 2016-11-07 at 17 07 13

screen shot 2016-11-07 at 17 07 22

screen shot 2016-11-07 at 17 07 28


CSS (limited):

/* Messaging */

/* Fullscreen overlay */
background-color: $purple100;
opacity: 0.94;

/* H1 and button */
width: 70%;
max-width: 800px;
padding: 0 15%;

/* H1 */
font: $bold1;
color: $gray600;
margin-bottom: 40px;

/* Use the primary button for the primary action */

/* Use the tertiary (light) button for the secondary action, if there is one */

Options & option groups

Related issue: Select #15


Preview:

screen shot 2016-10-19 at 17 06 00


CSS (limited):

Regular:

/* Options */
background: $white;
padding: 10px 0;
font: $regular2;
line-height: 30px;
color: $weworkblack;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);

/* Hover (an option) */
background-color: rgba(0, 0, 0, 0.05);
(height: 30px;)

/* <optgroup> */
font: $bold6;
line-height: 30px;

Large:

/* css arrow */
/* No difference for large size inputs */

Date input

Preview:

screen shot 2016-12-06 at 14 59 05


Assets:


CSS (limited):

Search CSS largely the same as a text input (see #14) and select (see #15).
Additions and differences below:

Regular:

/* Search */
text-indent: 38px;

/* Search icon (normal) */
color: $gray300;
width: 30px;
height: 30px;
margin: 4px;

/* Search icon (hover) */
color: $gray200;

Large:

/* Search */
text-indent: 48px;

/* Search icon */
margin: 9px;

Tabs in a modal

Related to modal issue #25


modal-tabs-preview-1

modal-tabs-preview-2


CSS:

/* Tabs */
padding: 14px 0 0 14px; /* so first tab aligns with labels */
border-bottom: 1px solid $gray300;

/* Tab */
height: 38px;
padding: 0 15px;
font: $regular2;
color: $weworkblack;
background-color: rgba(255,207,113,0.05); /* $weworkyellow @ 5% opacity) */
border: 1px solid $gray300;

border-radius: 2px 2px 0 0; /* first tab */
border-radius: 0; /* middle tab(s) */
border-radius: 0 2px 0 0; /* last tab */

/* Active tab */
background-color: $white;
border-bottom: 1px solid $white;

/* Hover (non-active tab) */
background-color: rgba(0, 0, 0, 0.02);

/* Focus (non-active tab) */
background-color: rgba(0, 0, 0, 0.05);

Spec:

screen shot 2017-04-10 at 15 58 24

Pill

Preview:

screen shot 2016-11-29 at 13 22 15


CSS:

/* Pill */
font: $regular3;
color: $gray600;
padding: 0 5px;
background-color: $purple200;
border-radius: 2px;

User & settings item

Preview:

screen shot 2016-10-20 at 14 54 56


CSS:

/* CSS largely the same as side bar item (#26). Differences below */

/* User & settings item */
padding: 10px 0 20px 0;

/* User avatar */
width: 34px;
height: 34px;
border: 3px solid rgba(0,0,0,0.1);
margin: 0 0 5px 0;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.