shadow

Displaced Somalis share Ramadan meal under shadow of COVID-19

In makeshift metal homes in a camp in Mogadishu, women wrapped in brightly patterned scarves are making savoury pastries and mixing flour for flatbreads.




shadow

The foreshadowing / Marcus Sedgwick

Sedgwick, Marcus, author




shadow

Shadow of the scorpion / Neal Asher

Asher, Neal L., 1961-




shadow

Book of shadows. Volume one / edited by Angela Challis




shadow

The shadow of dream cast upon Giardini della Biennale

Rotch Library - N6488.I8 V433 2019 U38




shadow

Like a fading shadow: a novel / Antonio Muñoz Molina ; translated by Camilo A. Ramirez

Hayden Library - PQ6663.U4795 C6613 2017




shadow

Out of the shadows: reimagining gay men's lives / Walt Odets

Dewey Library - HQ76.2.U5 O326 2019




shadow

The fruit of all my grief: lives in the shadows of the American dream / J. Malcolm Garcia

Dewey Library - HN59.2.G35 2019




shadow

Plum shadows and Plank Bridge: two memoirs about courtesans / by Mao Xiang and Yu Huai ; translated and edited by Wai-yee Li

Dewey Library - HQ250.A5 P58 2020




shadow

Ethereal shadows : communication and power in contemporary Italy / Franco "Bifo" Berardi, Marco Jacquemet, Gianfranco Vitali ; translated by Jessica Otey

Berardi, Franco




shadow

CSS3: spread value and box-shadow on one side only

This morning I awakened with a question in my twitter stream from @deebeefunky. He was frustrated by the fact that when he sets a blur on box-shadow, it shows on two sides of the box. He wants it to show on only one side. Of course, that got me thinking. I did come up with [...]




shadow

Long shadow of lynching




shadow

How Pilobolus Brings Shadows to Life

Pilobolus artistic directors Matt Kent and Renee Jaworski explain how their dancers use shadow to create almost anything imaginable. Beholder image © Wizards 2018 You can watch new episodes of WIRED Masterminds on the free WIRED channel, available on Roku, Apple TV, Amazon Fire TV, and Android TV: https://www.wired.com/brandlab/2018/06/wired-smart-tv-app-new-way-watch-wired/




shadow

Out from the shadows [videorecording] / produced by Rosemarie Reed Productions, Ltd. ; producer/director, Rosemarie Reed ; writers, Rosemarie Reed, Michael Wachholz




shadow

Prog: Lifting shadows off a dream

MEDIA PhonCD ML5.P76 v.101




shadow

Shadow libraries: access to educational materials in global higher education / edited by Joe Karaganis

Browsery Z286.S37 S48 2018




shadow

A well-ordered thing: Dmitrii Mendeleev and the shadow of the periodic table / Michael D. Gordin

Hayden Library - QD22.M43 G67 2019




shadow

Shadow banking : scope, origins and theories / edited by Anastasia Nesvetailova




shadow

Research handbook on shadow banking : legal and regulatory aspects / edited by Iris H.-Y Chiu (Professor of Corporate Law and Financial Regulation, University College London, UK), Iain G. MacNeil (Alexander Stone Professor of Commercial Law, University of




shadow

In the shadows of glories past: jihad for modern science in Muslim societies, 1850 to the Arab Spring / John W. Livingston

Hayden Library - BP166.14.M63 L58 2017




shadow

Victor Frankenstein, the monster and the shadows of technology: the Frankenstein prophecies / Robert D. Romanyshyn

Dewey Library - PR5397.F73 R66 2019




shadow

Meaningful Feedback Helps Invisible Teachers Move Out of the Shadows

Senior Researcher Elias Walsh looks into helping provide meaningful feedback to "invisible teachers" - those who leave the profession feeling as though they have made no progress with their students.




shadow

Shadow play [videorecording] / written and directed by Chris Hilton ; produced by Sylvie le Clézio and Chris Hilton




shadow

Fighters in the shadows : a new history of the French resistance / Robert Gildea

Gildea, Robert, author




shadow

Shadows of doubt: stereotypes, crime, and the pursuit of justice / Brendan O'Flaherty, Rajiv Sethi

Online Resource




shadow

CSS drop-shadows without images

Drop-shadows are easy enough to create using pseudo-elements. It’s a nice and robust way to progressively enhance a design. This post is a summary of the technique and some of the possible appearances.

Demo: CSS drop-shadows without images

Known support: Firefox 3.5+, Chrome 5+, Safari 5+, Opera 10.6+, IE 9+

I’ll be looking mainly at a few details involved in making this effect more robust. Divya Manian covered the basic principle in her article Drop Shadows with CSS3 and Matt Hamm recently shared his Pure CSS3 box-shadow page curl effect.

After a bit of back-and-forth on Twitter with Simurai, and proposing a couple of additions to Divya’s and Matt’s demos using jsbin, I felt like documenting and explaining the parts that make up this technique.

The basic technique

There is no need for extra markup, the effect can be applied to a single element. A couple of pseudo-elements are generated from an element and then pushed behind it.

.drop-shadow {
  position: relative;
  width: 90%;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
}

The pseudo-elements need to be positioned and given explicit or implicit dimensions.

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
}

The next step is to add a CSS3 box-shadow and apply CSS3 transforms. Different types of drop-shadow can be produced by varying these values and the types of transforms applied.

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

One of the pseudo-elements then needs to be positioned on the other side of the element and rotated in the opposite direction. This is easily done by overriding only the properties that need to differ.

.drop-shadow:after{
  right: 10px;
  left: auto;
  transform: rotate(3deg);
 }

The final core code is as shown below. There is just one more addition – max-width – to prevent the drop-shadow from extending too far below very wide elements.

.drop-shadow {
  position: relative;
  width: 90%;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  box-shadow :0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

.drop-shadow:after{
  right: 10px;
  left: auto;
  transform: rotate(3deg);
}

No Firefox 3.0 problems this time

Some pseudo-element hacks require a work-around to avoid looking broken in Firefox 3.0 because that browser does not support the positioning of pseudo-elements. This usually involves implicitly setting their dimensions using offsets.

However, as Divya Manian pointed out to me, in this case we’re only using box-shadow – which Firefox 3.0 doesn’t support – and Firefox 3.0 will ignore the position:absolute declaration for the pseudo-elements. This leaves them with the default display:inline style. As a result, there is no problem explicitly setting the pseudo-element width and height because it won’t be applied to the pseudo-elements in Firefox 3.0.

Further enhancements

From this base there are plenty of ways to tweak the effect by applying skew to the pseudo-elements and modifying the styles of the element itself. A great example of this was shared by Simurai. By adding a border-radius to the element you can give the appearance of page curl.

.drop-shadow {
  border-radius: 0 0 120px 120px / 0 0 6px 6px;
}

I’ve put together a little demo page with a few of drop-shadow effects, including those that build on the work of Divya Manian and Matt Hamm.

If you’ve got your own improvements, please send them to me on Twitter.




shadow

No shadow of a doubt: the 1919 eclipse that confirmed Einstein's theory of relativity / Daniel Kennefick

Barker Library - QC173.55.K35 2019




shadow

Urban development in the margins of a World Heritage Site: in the shadows of Angkor / Adèle Esposito

Rotch Library - HT147.C26 E87 2018




shadow

Energy harvesting from shadow-effect

Energy Environ. Sci., 2020, Advance Article
DOI: 10.1039/D0EE00825G, Communication
Qian Zhang, Qijie Liang, Dilip Krishna Nandakumar, Sai Kishore Ravi, Hao Qu, Lakshmi Suresh, Xueping Zhang, Yaoxin Zhang, Lin Yang, Andrew Thye Shen Wee, Swee Ching Tan
We demonstrate an unprecedented mode of energy harvesting from shadows that fall on the shadow-effect energy generator (SEG). Furthermore, a self-powered proximity sensor is also demonstrated using the SEG.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




shadow

In the shadow of the church: the building of mosques in early medieval Syria / by Mattia Guidetti

Rotch Library - NA4670.G84 2017




shadow

The shadow lines / by Amitav Ghosh

Ghosh, Amitav, 1956- author




shadow

Gods of jade and shadow / Silvia Moreno-Garcia

Moreno-Garcia, Silvia, author




shadow

Batman/The Shadow: the murder geniuses / story by Scott Snyder and Steve Orlando ; script by Steve Orlando ; art by Riley Rossmo ; colors by Ivan Plascencia ; letters by Clem Robins ; cover art and original series covers by Riley Rossmo

Barker Library - PN6728.B36 S674 2017




shadow

American Gods: shadows / story and words by Neil Gaiman ; script and layouts by P. Craig Russell ; art by Scott Hampton ; letters by Rick Parker ; cover by David Mack

Barker Library - PN6728.A482 R87 2018




shadow

Park. Grassy area surrounded by trees casting shadows. bench, cars in background




shadow

Soreno Hotel with cars and slender palm trees casting shadows




shadow

Sand shadows at Matanzas Inlet, Fl




shadow

Evening shadows in Florida




shadow

Analysis and optimization of empirical path loss models and shadowing effects for the Tampa Bay area in the 2.6 GHz band




shadow

Shadows fall on main street




shadow

Bob, the shadow, or, Solving a double mystery




shadow

Buffalo Bill's death grapple; or, Shadowed by the sure shots




shadow

Watch-Eye, the shadow; or, Arabs and angels of a great city




shadow

Silhouette or shadow?, or, A question of evidence




shadow

Buffalo Bill's spy shadower, or, The hermit of Grand Canyon




shadow

The Liberty Boys shadowed, or, After Dick Slater for revenge




shadow

Young Wild West in the shadow of death, or, Saved by a red man's bullet




shadow

Making light: Haydn, musical camp, and the long shadow of German idealism / Raymond Knapp

Lewis Library - ML410.H4 K537 2018




shadow

Inside track: Out of Shadows




shadow

The shadow of terror: 2019 Easter Sunday bombings showed how IS regroups by co-opting local affiliates