Skip to content

Commit 2860bfa

Browse files
committed
initial commit
0 parents  commit 2860bfa

33 files changed

+2515
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.sass-cache/
2+
*.sublime-project
3+
*.sublime-workspace
4+
node_modules
5+
bower_components

config.rb

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Require any additional compass plugins here.
2+
3+
# Set this to the root of your project when deployed:
4+
http_path = "/"
5+
css_dir = "css"
6+
sass_dir = "sass"
7+
images_dir = "img"
8+
javascripts_dir = "js"
9+
10+
11+
# You can select your preferred output style here (can be overridden via the command line):
12+
# output_style = :expanded or :nested or :compact or :compressed
13+
output_style = :compact
14+
15+
# To enable relative paths to assets via compass helper functions. Uncomment:
16+
relative_assets = true
17+
18+
# To disable debugging comments that display the original location of your selectors. Uncomment:
19+
line_comments = false
20+
21+
preferred_syntax = :sass
22+
23+
24+
# ===================
25+
# Uncomment this part to make sprite name static, icons-123asda.png -> icons.png
26+
# useful for diffs in screen.css
27+
# ===================
28+
# # Make a copy of sprites with a name that has no uniqueness of the hash.
29+
# on_sprite_saved do |filename|
30+
# if File.exists?(filename)
31+
# FileUtils.cp filename, filename.gsub(%r{-s[a-z0-9]{10}\.png$}, '.png')
32+
# end
33+
# end
34+
# # Replace in stylesheets generated references to sprites
35+
# # by their counterparts without the hash uniqueness.
36+
# on_stylesheet_saved do |filename|
37+
# if File.exists?(filename)
38+
# css = File.read filename
39+
# File.open(filename, 'w+') do |f|
40+
# f << css.gsub(%r{-s[a-z0-9]{10}\.png}, '.png')
41+
# end
42+
# end
43+
# end
44+
45+
# # this one for switching between production and dev versions of the website
46+
# module Sass::Script::Functions
47+
# def image_path(string)
48+
# assert_type string, :String
49+
# Sass::Script::String.new("../img/#{string.value}")
50+
# end
51+
# alias_method :"image-path",:image_path
52+
# declare :"image-path", :args => [:string]
53+
# end

css/screen.css

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; vertical-align: baseline; }
2+
3+
body, html { height: 100%; }
4+
5+
img, fieldset, a img { border: none; }
6+
7+
input[type="text"], input[type="email"], input[type="tel"], textarea { -webkit-appearance: none; }
8+
9+
input[type="submit"], button { cursor: pointer; }
10+
input[type="submit"]::-moz-focus-inner, button::-moz-focus-inner { padding: 0; border: 0; }
11+
12+
textarea { overflow: auto; }
13+
14+
input, button { margin: 0; padding: 0; border: 0; }
15+
16+
div, input, textarea, select, button, h1, h2, h3, h4, h5, h6, a, span, a:focus { outline: none; }
17+
18+
ul, ol { list-style-type: none; }
19+
20+
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) { * { -webkit-text-size-adjust: none; } }
21+
table { border-spacing: 0; border-collapse: collapse; width: 100%; }
22+
23+
body { font-family: Arial, sans-serif; font-size: 12px; line-height: 1.4; }
24+
25+
.l { *zoom: 1; }
26+
.l:after { content: " "; display: table; clear: both; }
27+
.l .l-col1 { float: left; width: 20%; }
28+
.l .l-col2 { float: right; width: 70%; }

img/icons/codedby.png

1018 Bytes
Loading

img/icons/coderiver.png

1.01 KB
Loading

index.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Template</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="format-detection" content="telephone=no">
8+
<!-- theme color for android 5.0 -->
9+
<meta name="theme-color" content="#fff">
10+
<!-- <meta name="viewport" content="width=1200"> -->
11+
<!-- <meta name="viewport" content="initial-scale=1, user-scalable=no"> -->
12+
<link rel="stylesheet" media="all" href="css/screen.css" >
13+
<!--[if IE]><script src="js/html5shiv.js"></script><![endif]-->
14+
</head>
15+
<body>
16+
<!-- BEGIN out-->
17+
<div class="out">
18+
19+
</div>
20+
<!-- END out-->
21+
<!-- load scripts -->
22+
<script src="js/lib/head.js" data-headjs-load="js/init.js"></script>
23+
</body>
24+
</html>

js/common.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
head.ready(function() {
2+
3+
// $(document).on("click", function(){
4+
// $(".js-popup").hide();
5+
// });
6+
7+
// function scrollFixedElements() {
8+
// var scroll_left = $(this).scrollLeft();
9+
// $(".fixed-element").css({
10+
// left: -scroll_left
11+
// });
12+
// }
13+
// scrollFixedElements();
14+
// $(window).scroll(function(){
15+
// scrollFixedElements()
16+
// });
17+
18+
console.log($('body').html());
19+
});

js/html5shiv.js

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/init.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
head.load("js/lib/jquery.js",
2+
"js/lib/cycle.js",
3+
"js/common.js");

js/lib/cycle.carousel.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)