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
" Version 1.2 | |
" Script create :IMG command, whitch insert HTML IMG tag | |
" with fill atributes width and height. | |
" | |
" It's need _identify_ utility from ImageMagic! | |
" | |
" (c) Petr Mach <gsl@seznam.cz>, 2003 | |
" http://iglu.cz/wraith/ | |
" | |
" Call it without parameter for file browser for selecting image. |
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
.line { | |
display: block; | |
border: none; | |
color: #333; | |
background: transparent; | |
border-bottom: 1px dotted black; | |
padding: 5px 2px 0 2px; | |
} | |
.line:focus { |
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
div[class*="gradient"]{ | |
background-color: #DEB8A0; | |
box-shadow: 0 0 0 1px #a27b62; | |
} | |
.gradient-light-linear { | |
background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); | |
} | |
.gradient-dark-linear { |
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
.simple-input { | |
display: block; | |
padding: 5px; | |
border: 4px solid #F1B720; | |
border-radius: 5px; | |
color: #333; | |
transition: all 0.3s ease-out; | |
} | |
.simple-input:hover { |
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
.inline-link-1 { | |
display: inline-block; | |
margin: 0 0.2em; | |
padding: 3px; | |
background: #97CAF2; | |
border-radius: 2px; | |
transition: all 0.3s ease-out; | |
/* Font styles */ | |
text-decoration: none; | |
font-weight: bold; |
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
div[class*="rounded"] { | |
background: #fca1cc; | |
} | |
.light-rounded { | |
border-radius: 3px; | |
} | |
.heavy-rounded { | |
border-radius: 8px; |
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
div[class*="emphasize-"] { | |
background: #69D2E7; | |
} | |
.emphasize-dark { | |
box-shadow: 0 0 5px 2px rgba(0,0,0,.35) | |
} | |
.emphasize-light { | |
box-shadow: 0 0 0 10px rgba(255,255,255,.25) |
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
.drop-shadow { | |
background: #9479fa; | |
} | |
.drop-shadow.top { | |
box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4) | |
} | |
.drop-shadow.right { | |
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4) |
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
@include handhelds { | |
table.responsive { | |
width: 100%; | |
thead { | |
display: none; | |
} | |
tr { | |
display: block; | |
} | |
td, th { |
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
.depth { | |
display: block; | |
border: 1px solid rgba(255,255,255,0.6); | |
background: linear-gradient(#eee, #fff); | |
transition: all 0.3s ease-out; | |
box-shadow: | |
inset 0 1px 4px rgba(0,0,0,0.4); | |
padding: 5px; | |
color: #555; | |
} |
NewerOlder