-
-
Save shama/84e57c994f5a14c3fa01 to your computer and use it in GitHub Desktop.
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
/*@import url(http://fonts.googleapis.com/css?family=Chela+One); | |
@import url(http://fonts.googleapis.com/css?family=Architects+Daughter); | |
@import url(http://fonts.googleapis.com/css?family=Marck+Script);*/ | |
/* Samsung Galaxy S4 Landscape */ | |
/*@media screen (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi) and (device-width: 1920px) and (orientation: landscape){ | |
} | |
*/ | |
/* Samsung Galaxy S4 Portrait */ | |
.maincontainer { | |
width: 100%; | |
height: 100px; | |
margin: 0 auto; | |
background-color: #D9534F; | |
text-align: center; | |
} | |
/*@import url(http://fonts.googleapis.com/css?family=Chela+One); | |
@import url(http://fonts.googleapis.com/css?family=Architects+Daughter); | |
@import url(http://fonts.googleapis.com/css?family=Marck+Script);*/ | |
/* Samsung Galaxy S4 Landscape */ | |
/*@media screen (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi) and (device-width: 1920px) and (orientation: landscape){ | |
} | |
*/ | |
/* Samsung Galaxy S4 Portrait */ | |
.maincontainer { | |
width: 100%; | |
height: 100px; | |
margin: 0 auto; | |
background-color: #D9534F; | |
text-align: center; | |
} | |
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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
concat: { | |
css: { | |
src: ['one.css', 'two.css'], | |
dest: 'bundle.css' | |
}, | |
}, | |
}); | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.registerTask('default', ['concat']); | |
}; |
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
/*@import url(http://fonts.googleapis.com/css?family=Chela+One); | |
@import url(http://fonts.googleapis.com/css?family=Architects+Daughter); | |
@import url(http://fonts.googleapis.com/css?family=Marck+Script);*/ | |
/* Samsung Galaxy S4 Landscape */ | |
/*@media screen (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi) and (device-width: 1920px) and (orientation: landscape){ | |
} | |
*/ | |
/* Samsung Galaxy S4 Portrait */ | |
.maincontainer { | |
width: 100%; | |
height: 100px; | |
margin: 0 auto; | |
background-color: #D9534F; | |
text-align: center; | |
} | |
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
/*@import url(http://fonts.googleapis.com/css?family=Chela+One); | |
@import url(http://fonts.googleapis.com/css?family=Architects+Daughter); | |
@import url(http://fonts.googleapis.com/css?family=Marck+Script);*/ | |
/* Samsung Galaxy S4 Landscape */ | |
/*@media screen (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi) and (device-width: 1920px) and (orientation: landscape){ | |
} | |
*/ | |
/* Samsung Galaxy S4 Portrait */ | |
.maincontainer { | |
width: 100%; | |
height: 100px; | |
margin: 0 auto; | |
background-color: #D9534F; | |
text-align: center; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment