Skip to content

Commit

Permalink
Fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Aug 10, 2016
1 parent 23f3e97 commit 0ccc324
Show file tree
Hide file tree
Showing 10 changed files with 3,234 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,3 +1,2 @@
_site/
.sass-cache/
assets/css/
41 changes: 41 additions & 0 deletions Rakefile
@@ -0,0 +1,41 @@
require "rubygems"
require "tmpdir"

require "bundler/setup"
require "jekyll"


# Change your GitHub reponame
GITHUB_REPONAME = "Rafiot/misp-website"


namespace :site do
desc "Generate blog files"
task :generate do
Jekyll::Site.new(Jekyll.configuration({
"source" => ".",
"destination" => "_site"
})).process
end


desc "Generate and publish blog to gh-pages"
task :publish => [:generate] do
Dir.mktmpdir do |tmp|
cp_r "_site/.", tmp

pwd = Dir.pwd
Dir.chdir tmp

system "git init"
system "git add ."
message = "Site updated at #{Time.now.utc}"
system "git commit -m #{message.inspect}"
system "git remote add origin git@github.com:#{GITHUB_REPONAME}.git"
system "git push origin master:refs/heads/gh-pages --force"

Dir.chdir pwd
end
end
end

4 changes: 4 additions & 0 deletions assets/css/font-awesome.min.css

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions assets/css/ie8.css
@@ -0,0 +1,67 @@
/*
Arcana by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Form */

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
position: relative;
-ms-behavior: url("assets/js/ie/PIE.htc");
}

/* Image */

.image {
-ms-behavior: url("assets/js/ie/PIE.htc");
}

.image img {
position: relative;
-ms-behavior: url("assets/js/ie/PIE.htc");
}

/* Icon */

.icon.major {
position: relative;
-ms-behavior: url("assets/js/ie/PIE.htc");
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
position: relative;
-ms-behavior: url("assets/js/ie/PIE.htc");
}

/* Box */

.box.post .inner {
margin-left: 35%;
}

/* Dropotron */

.dropotron {
-ms-behavior: url("assets/js/ie/PIE.htc");
}

/* Banner */

#banner {
-ms-behavior: url("assets/js/ie/backgroundsize.min.htc");
}

/* Wrapper */

.wrapper.style2 {
background: #fdfdfd url("images/bg01.png");
}
11 changes: 11 additions & 0 deletions assets/css/ie9.css
@@ -0,0 +1,11 @@
/*
Arcana by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Header */

#nav > ul > li.current:before {
display: none;
}
Binary file added assets/css/images/bg01.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/css/images/bg02.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/css/images/bg03.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0ccc324

Please sign in to comment.