This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * box-shadow for col | |
| */ | |
| table | |
| { | |
| border-collapse: collapse; | |
| } | |
| col:last-child |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * box-shadow for col | |
| */ | |
| table | |
| { | |
| border-collapse: collapse; | |
| } | |
| col:last-child |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Firefox bug | |
| */ | |
| main | |
| { | |
| position: relative; | |
| transition: left 1s ease-in-out; | |
| /* | |
| Smooth transition does not work in Firefox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Flags | |
| */ | |
| #disclaimer { font: 1em Georgia, serif } | |
| /* Sass-generated code */ | |
| html { | |
| background: #d6ccc2; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Flags | |
| */ | |
| #disclaimer { font: 1em Georgia, serif } | |
| /* Sass-generated code */ | |
| html { | |
| background: #d6ccc2; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * CSS animation, Safari problem | |
| */ | |
| @keyframes makeVisible { | |
| from {transform: rotate(0deg);} | |
| to {transform: rotate(360deg);} | |
| } | |
| @-webkit-keyframes makeVisible { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * CSS animation, Safari problem | |
| */ | |
| @keyframes makeVisible { | |
| from {transform: rotate(0deg);} | |
| to {transform: rotate(360deg);} | |
| } | |
| @-webkit-keyframes makeVisible { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Single-line text, horizontally scrollable | |
| */ | |
| output | |
| { | |
| display: block; | |
| font-size: 2em; | |
| width: 20em; | |
| overflow-y: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * border-corner-shape | |
| */ | |
| #radial-gradient | |
| { | |
| width: 42px; | |
| height: 242px; | |
| background-image: radial-gradient(circle at bottom left, transparent 42px, red 42px); | |
| border-top-left-radius: 42px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Rounded corners and splitted background colors | |
| */ | |
| .thediv { border:1px solid black; border-radius:20px; } | |
| .firstp { background:yellow; margin:0; padding:10px; | |
| border-radius:20px 20px 0 0; } |