orner

Cornerman Teddy Atlas says coaching Andy Ruiz Jr would be like 'dealing with a drug abuser'

Atlas, who has trained former world champions including Michael Moorer and Mike Tyson, said Ruiz had 'a problem with eating' and that he would have to undertake strict measures should they work together.




orner

Im backing Murray but he cant let it get personal with Vallverdu in the opposite corner

There is an 800lb elephant in the room for this Australian Open semi-final in the shape of Dani Vallverdu, Andy Murray's former assistant, but my advice would be: don't make it personal.




orner

Ski hell taught me not to cut corners on insurance, says LUCY WHITE

When Lucy White broke two vertebrae in a skiing accident in the French Alps, she was relieved to have bought insurance. But two hours after calling the emergency line, she was still being left on hold.




orner

E-waste crisis : Around the corner


A recent report published by Toxics Link reviews the waste management situation that India has to deal with on the fast-widening information-technology highway.




orner

World Bank GEP 2014: Global economy set to turn corner

World Bank GEP 2014: Global economy set to turn corner




orner

Buddha corners Didi over crime against women, development

The former chief minister also alleged that all development work in the state had come to a standstill.




orner

Wired Interviews Chickensaurus Paleontologist Jack Horner

Wired Senior Editor Adam Rogers interviews Regents Professor of Paleontology Jack Horner.  Horner argues that chickens are the direct descendants of dinosaurs.




orner

Facebook's Grand Plan to Connect Every Corner of the World Takes Flight

Facebook’s huge internet-beaming drone finally takes it's first flight and it's all part of the tech giant's plans to provide internet access in remote parts of the world.




orner

2017: The Year Ahead - WIRED's 2017 Predictions: Self-Driving Vehicles Are Around the Corner

WIRED predicts the biggest trends for the year ahead. In this segment Alex Davies lays out the five biggest disruptions coming to the world of transport.




orner

Brain and human body modeling: computational human modeling at EMBC 2018 / Sergey Makarov, Marc Horner, Gregory Noetscher, editors

Online Resource




orner

No place on the corner: the costs of aggressive policing / Jan Haldipur

Rotch Library - HV8148.N5 H35 2019




orner

Pure CSS folded-corner effect

Create a simple CSS folded-corner effect without images or extra markup. It works well in all modern browsers and is best suited to designs with simple colour backgrounds.

Demo: Pure CSS folded-corner effect

Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 8+

This post is going to expand on the technique used to create the folded-corner effect that is part of the demo page for Multiple Backgrounds and Borders with CSS 2.1. As a starting point it will look to recreate the appearance of the note style used on the Yiibu‘s fantastic web site. Where Yiibu uses images, this will use pseudo-elements.

Nothing complicated. Any element will do and there’s no need for extra markup. It’s just a simple coloured box to start with. Browsers with no support for pseudo-elements, such as IE6 and IE7, will only be capable of displaying this.

Adding position:relative makes it possible to absolutely position the pseudo-element.

.note {
  position: relative;
  width: 30%;
  padding: 1em 1.5em;
  margin: 2em auto;
  color: #fff;
  background: #97C02F;
}

The folded-corner

The folded-corner is created from a pseudo-element that is positioned in the top corner of the box. The pseudo-element has no width or height but is given a thick border. Varying the size of the border will vary the size of the folded-corner.

In this example, the top and right borders are set to colours that match the background colour of the box’s parent. The left and bottom border are then given a slightly darker or lighter shade of the box’s background colour.

.note:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #658E15 #fff;
}

This is all that’s needed to create a simple folded-corner effect like that found on Yiibu.

Firefox 3.0 doesn’t allow for the positioning of pseudo-elements. You can throw in a couple of extra styles to help tidy things up in that browser.

.note:before {
  ...
  display: block;
  width: 0;
}

Adding a subtle shadow

The appearance of a fold can be slightly enhanced by adding a box-shadow (for browsers that support it) to the pseudo-element. Setting overflow:hidden on the note itself will help hide parts of the shadow that would disrupt the folded-corner effect.

.note:before {
  ...
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

Rounded corners

It’s also relatively simple to make this work with rounded corners if desired. Unfortunately, every modern browser has some form of border-radius bug – including those using the non-prefixed property – which means a slight work around is needed.

Webkit browsers are the only browsers that can come anywhere close to rounding the corner of the pseudo-element if it only has 2 borders. Opera 11 and Firefox 3.6 make a mess of it. Opera 11 makes the biggest mess.

Using 4 borders avoids the problems in Opera 11 and Firefox 3.6. But it will trigger a bug in Safari 5 that leaves the diagonal looking a little jaggy. We can get around this problem by setting at least one border colour to be transparent.

When a background colour is applied to the pseudo-element it will show through the transparent border. Ideally, this approach would form the basis of the entire effect because we could reduce the amount of code needed. But Opera 11 will not show the background colour through the transparent borders unless a border-radius has been set.

.note-rounded:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  background: #658E15;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
  display: block;
  width: 0;
}

The CSS file on the demo page has more comments on the work arounds. Every browser has its own peculiarities when it comes to using border-radius or borders on elements with no width or height. This is the merely simplest solution I’ve found to deal with those browser inconsistencies.

The final code

This is all the CSS needed to create a simple folded-corner effect, with a subtle shadow, from a single HTML element. To include a variant with rounded corners, the “note” object can be extended with the modifications described previously.

.note {
  position: relative;
  width: 30%;
  padding: 1em 1.5em;
  margin: 2em auto;
  color: #fff;
  background: #97C02F;
  overflow: hidden;
}

.note:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #fff #fff #658E15 #658E15;
  background: #658E15;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  /* Firefox 3.0 damage limitation */
  display: block; width: 0;
}

.note.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.note.rounded:before {
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}

The demo page shows the final effect, an example with rounded corners, and how different coloured notes are easy to create from this base.

This technique works less well when the element receiving the folded-corner effect is sitting on top of a background image rather than a simple background colour. However, the same limitation exists for image-based methods of creating this effect.




orner

The marriage record of Hendrix, Andrew J., Jr. and Corner, C. M., Mrs




orner

The marriage record of Thomas, William C. and Corner, Carrio




orner

Confederate Memorial on the snowy corner of 5th Avenue and Main Street in Albemarle County, Virginia




orner

A Four corner tassel hat, a cape, a four corner hat tassel, and a fur cape




orner

Snell & Hamlett North Shore Co. Real Estate (northwest corner of Central Avenue and 4th Street). Formerly Noel Mitchell's Real Estate office; Parked cars, many pedestrians. Arsenault p. 217




orner

West Coast Title Building (also called Equitable Building) on northeast corner of Central Avenue and 4th Street. Trolley, cars, people




orner

First Presbyterian Church, corner of 3rd Street and 4th Avenue North; parked cars, lampposts, building next door




orner

First Presbyterian Church, corner of 3rd Street and 4th Avenue North (street markers visible)




orner

Corner of Central Avenue and 4th Street; Businesses include Tennessee House, American Bank and Trust Company, Star, Dancing, Sharit's Meats, Postal Telegraph, Billman Real Estate, plus cars, people (one with umbrella). Arsenault p. 246




orner

Beverly Hotel across the street; car with background of two-story building, row of parked cars, man standing in distance, corner of Central Avenue and 4th Street




orner

Francis smoking a cigar, standing on the corner of Central Avenue and 2nd Street North, sign for Detroit Hotel Grill in background




orner

Same scene as #630 but with stouter man with mustache wearing glasses, hat, three piece suit and watch chain, standing on corner of Central Avenue and 2nd Street North. Cars, sign for Detroit Hotel Grill. This may be Elon Robison, who had a competing came




orner

Oil on mangroves on southwest corner Eleanor Island




orner

Oiled and dead mangroves northwest corner of Eleanor Island




orner

Dead oiled mangroves northwest corner of Eleanor Island




orner

Dead red mangroves on northwest corner of Eleanor Island




orner

Oiled area northwest corner Eleanor Island




orner

Oil coating on northwest corner Eleanor Island




orner

Hotel Aragon, corner Forsyth and Julia Sts., Jacksonville, Florida




orner

7th Avenue, Ybor City Fla. Centro Espanol (Cuban Center) bldg. on right corner




orner

Franklin Street from corner of Lafayette Street, Tampa, Florida




orner

Watkins Block, Corner Pine and Orange Avenue, Orlando, Fla




orner

New business block, corner Church Street and Orange Avenue, Orlando, Fla




orner

Wigwam Hotel - corner First Street North and Third Avenue - St. Petersburg, Fla




orner

Corner 2nd Avenue and First Street, St. Petersburg, Fla




orner

A Corner in the solarium, Hotel Paul Smith, Auburndale, Florida




orner

Corner of Court of Ringling Art Museum, Sarasota, Florida




orner

Sevilla Building on northwest corner of Franics St. and Cherry St. in West Tampa




orner

Aerial view of the corner of Franklin Street and Lafayette Street




orner

[The The YWCA building near the corner of Grand Central Avenue and Plant Avenue




orner

[The The Tampa Daily Times building on southwest corner of Franklin and Washington Streets




orner

Drowdy's Corner being refurbished for future occupancy by D.P. Davis Properties at 502 South Franklin Street




orner

D.P. Davis Properties office on the corner of 502 South Franklin Street and Madison Street




orner

D.P. Davis Properties offices with pedestrian traffic on corner of Franklin and Madison Streets




orner

Standard Oil Company service station at the southeast corner of 4th Avenue and 23rd Street




orner

YWCA property on the southeast corner of Twigg and Morgan Streets




orner

Ehrlich Manufacturing Company cigar factory at the corner of Tampania Avenue and Spruce Street




orner

Val's Corner on the northeast corner of Tampa and Lafayette Streets