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
<style scoped> | |
.l-card { | |
display: flex; | |
} | |
.l-card__item { | |
width: 8rem; | |
border: 1px solid rgba(0, 0, 0, 0.1); | |
background-size: 8rem; | |
background-repeat: no-repeat; | |
background-position: 50% 50%; |
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
/** | |
* Tooltip / Infobox | |
*/ | |
body { | |
background: #fafafa; | |
min-height: 100%; | |
} | |
.spacer { | |
position: relative; |
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
/** | |
* Modal dialog | |
*/ | |
.modal { | |
display: flex; | |
position: fixed; | |
top: 0; | |
left: 0; |
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
// ---- | |
// libsass (v3.3.6) | |
// ---- | |
/* | |
* ****************************************************************************************** | |
* ****************************************************************************************** | |
* Obsolete Mixins and Functions | |
* ****************************************************************************************** | |
* ****************************************************************************************** |
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
/** | |
* Input Buttons | |
*/ | |
button[type="button"], | |
button[type="reset"], | |
button[type="submit"], | |
input[type="reset"], | |
input[type="submit"], | |
input[type="button"] { |
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
/** | |
* CSS drop-shadows without images | |
*/ | |
body { | |
min-height: 100%; | |
background: #dee; | |
background: linear-gradient(45deg, #dee, #eee); | |
color: #333; | |
font: 100%/1.2 Arial, sans-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
/** | |
* CSS3 border-radius | |
*/ | |
html { box-sizing: border-box; } | |
*, | |
*:before, | |
*:after { box-sizing: inherit; } |