123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
- .clearfix:before, .clearfix:after {display: table; content: ''; }
- .clearfix:after { clear: both; }
- body {
- font-family: Avenir, 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
- color: #444;
- background: #E5E8EF;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- a {
- outline: none;
- color: #DF7932;
- text-decoration: none;
- }
- a:hover, a:focus {
- color: #333;
- }
- .hidden {
- position: absolute;
- overflow: hidden;
- width: 0;
- height: 0;
- pointer-events: none;
- }
- /* Header */
- .codrops-header {
- padding: 2em 1em 4em;
- text-align: center;
- }
- .codrops-header h1 {
- margin: 0.5em 0 0;
- letter-spacing: -1px;
- font-size: 3em;
- line-height: 1;
- }
- .codrops-header h1 span {
- text-transform: uppercase;
- letter-spacing: 3px;
- display: block;
- padding: 2em 0 0;
- color: #BBBFCB;
- font-size: 0.285em;
- }
- /* Top Navigation Style */
- .codrops-links {
- position: relative;
- display: inline-block;
- text-align: center;
- white-space: nowrap;
- }
- .codrops-links::after {
- position: absolute;
- top: 0;
- left: 50%;
- width: 1px;
- height: 100%;
- background: rgba(0,0,0,0.1);
- content: '';
- -webkit-transform: rotate3d(0,0,1,22.5deg);
- transform: rotate3d(0,0,1,22.5deg);
- }
- .codrops-icon {
- display: inline-block;
- margin: 0.5em;
- padding: 0em 0;
- width: 1.5em;
- text-decoration: none;
- }
- .codrops-icon span {
- display: none;
- }
- .codrops-icon:before {
- margin: 0 5px;
- text-transform: none;
- font-weight: normal;
- font-style: normal;
- font-variant: normal;
- font-family: 'codropsicons';
- line-height: 1;
- speak: none;
- -webkit-font-smoothing: antialiased;
- }
- .codrops-icon--drop:before {
- content: "\e001";
- }
- .codrops-icon--prev:before {
- content: "\e004";
- }
- /* Demo links */
- .codrops-demos {
- margin: 2em 0 0;
- }
- .codrops-demos a {
- display: inline-block;
- margin: 0 0.5em;
- font-weight: bold;
- }
- .codrops-demos a.current-demo {
- color: #333;
- }
- /* Content */
- .content {
- padding: 3em 0;
- }
- /* Related demos */
- .content--related {
- text-align: center;
- font-weight: bold;
- }
- .media-item {
- display: inline-block;
- padding: 1em;
- vertical-align: top;
- -webkit-transition: color 0.3s;
- transition: color 0.3s;
- }
- .media-item__img {
- max-width: 100%;
- opacity: 0.5;
- -webkit-transition: opacity 0.3s;
- transition: opacity 0.3s;
- }
- .media-item:hover .media-item__img,
- .media-item:focus .media-item__img {
- opacity: 1;
- }
- .media-item__title {
- margin: 0;
- padding: 0.5em;
- font-size: 1em;
- }
- @media screen and (max-width: 50em) {
- .codrops-header {
- padding: 3em 10% 4em;
- }
- }
- @media screen and (max-width: 40em) {
- .codrops-header h1 {
- font-size: 2.8em;
- }
- }
|