This file contains 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
/** | |
* Frosted glass effect | |
*/ | |
body { | |
min-height: 100vh; | |
box-sizing: border-box; | |
margin: 0; | |
padding-top: calc(50vh - 6em); | |
font: 150%/1.6 Baskerville, Palatino, serif; |
This file contains 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
/* The difference between inline and block absolutes */ |
This file contains 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
button { | |
position:relative; | |
display:block; | |
margin:50px; | |
padding:0; | |
width:250px; | |
height:50px; | |
border:none; | |
border-radius:50px; |
This file contains 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
/** | |
* Green button | |
*/ | |
body { | |
padding-top: 100px; | |
font: 24px/1.2 'Arial', sans-serif; | |
} | |
.button { | |
position: absolute; |
This file contains 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
/** | |
* Candy | |
*/ | |
html { | |
background-color: silver; | |
background-image: linear-gradient(45deg, gray 25%, transparent 25%, transparent 75%, gray 75%, gray), | |
linear-gradient(45deg, gray 26%, transparent 26%, transparent 75%, gray 75%, gray); | |
background-size:20px 20px; | |
background-position:0 0, 10px 10px; | |
min-height: 100%; |
This file contains 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: #dda1ee } |
This file contains 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
file=$(shell rpm -q --specfile npm.spec --qf 'npm-%{version}.tgz') | |
rpm: $(file) | |
rpmbuild -ba npm.spec \ | |
--define '_sourcedir $(CURDIR)' \ | |
--define '_builddir $(CURDIR)' \ | |
--define '_srcrpmdir $(CURDIR)' \ | |
--define '_rpmdir $(CURDIR)' | |
mv noarch/* . | |
rm -rf noarch package |