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
| fn main() { | |
| let i_start: i8 = 50; | |
| let i_end: i8 = 64; | |
| for i in i_start..i_end { | |
| let l = twice(i); | |
| println!("{}", l); | |
| } | |
| } | |
| fn twice(a: i8) -> i8 { |
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
| body { | |
| background: #fff; | |
| min-height: 100%; | |
| font: 1.2rem/1.4 Source Serif Pro; | |
| } | |
| .side { | |
| float: left; | |
| width: 200px; | |
| margin: 2rem 0 0 20px; |
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
| /* * Guybrush Shovle | |
| */ | |
| @keyframes shovle { | |
| 0% {background-position: -266px -1000px;} | |
| 25% {background-position: -346px -1000px;} | |
| 50% {background-position: -426px -1000px;} | |
| 75% {background-position: -506px -1000px;} | |
| 100% {background-position: -266px -1000px;} | |
| } |
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
| html { | |
| } | |
| .header { | |
| background-color: rgba(165, 255, 0, 1.0); | |
| } | |
| .header img { | |
| width: 64px; | |
| height: 64px; |
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
| body { | |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: rgba(255, 255, 255, 1.0); | |
| min-height: 100%; | |
| font-family: 'Gandhi Sans'; | |
| font-weight: 900; | |
| font-size: 2rem; |
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
| html { | |
| background: url("http://subtlepatterns.com/patterns/pixel_weave.png"); | |
| font-family: Silom; | |
| color: hsla(0,0%,0%,.6); | |
| min-height: 100%; | |
| } | |
| code {font-size:1.2rem;font-weight:900;color:#F2877D} | |
| h1 {color: #1A6C8C} | |
| pre {border: 2px solid #F2877D; font-weight:bold; font-size:1.1rem;padding:8px; background-color: #F2E4BC;} |
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
| body { | |
| margin: 0; | |
| } | |
| .bride { | |
| width: 100%; | |
| content: ""; | |
| height: 150px; | |
| background-color: #FFF; | |
| margin: 0; |
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
| body,html { | |
| background-color: #D5DAE0; | |
| background-image: url(); | |
| background-repeat:no-repeat; | |
| background-attachment:scroll; | |
| background-position:top; | |
| margin: 0px; | |
| padding: 0px; | |
| height: 100%; | |
| } |
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
| html { | |
| background: #aaa; | |
| min-height: 100%; | |
| } | |
| li { | |
| position: absolute; | |
| width: 13%; | |
| border: 1px solid #000; | |
| left: 0; |
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
| /* monster crusher */ | |
| body { | |
| height: 100%; | |
| } | |
| div { | |
| height:400px; | |
| float:left; | |
| width:24%; |