aboutsummaryrefslogtreecommitdiffstats
path: root/static/css/index.css
diff options
context:
space:
mode:
authorWeitian LI <liweitianux@gmail.com>2014-04-20 16:17:47 +0800
committerWeitian LI <liweitianux@gmail.com>2014-04-20 16:17:47 +0800
commitd477d14d624bea299a62199799607155d43a4226 (patch)
treec82c424f77993b7138f01249c99cd3309612d012 /static/css/index.css
parent0005d0926d15d9034d8cb47da3861e5ab6dd02f1 (diff)
downloaddjango-skaschool-d477d14d624bea299a62199799607155d43a4226.tar.bz2
* implemented the index page
o base.html, navbar.html, favicon.html, index.html o added static files related to index page * performed south migrations * implemented registration templates * implemented regiration views and pages
Diffstat (limited to 'static/css/index.css')
-rw-r--r--static/css/index.css101
1 files changed, 101 insertions, 0 deletions
diff --git a/static/css/index.css b/static/css/index.css
new file mode 100644
index 0000000..344ff07
--- /dev/null
+++ b/static/css/index.css
@@ -0,0 +1,101 @@
+/*
+ * skaschool website custom css
+ * index.css
+ *
+ * Weitian LI
+ */
+
+.skaschool-home {
+ background: url(../images/skaschool-bg.jpg) no-repeat center center fixed;
+ -webkit-background-size: cover;
+ -moz-background-size: cover;
+ -o-background-size: cover;
+ background-size: cover;
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/skaschool-bg.jpg', sizingMethod='scale');
+ -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/skaschool-bg.jpg', sizingMethod='scale')";
+}
+
+.masthead {
+ color: #CCCCCC;
+ padding: 30px 15px;
+ position: relative;
+ text-align: center;
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
+}
+.masthead h1 {
+ color: #EEEEEE;
+}
+.masthead .btn-outline-inverse {
+ margin: 10px;
+}
+.masthead-links {
+ list-style: none outside none;
+ margin-top: 10px;
+ margin-bottom: 20px;
+ padding: 0 15px;
+ text-align: center;
+}
+.masthead-links li {
+ display: inline;
+}
+.masthead-links li + li {
+ margin-left: 10px;
+}
+.masthead-links a {
+ color: #EEEEEE;
+}
+@media (min-width: 768px) {
+ .masthead {
+ padding-top: 80px;
+ padding-bottom: 140px;
+ text-align: left;
+ }
+ .masthead .lead {
+ font-size: 20px;
+ margin-right: 25%;
+ }
+ .masthead .btn-outline-inverse {
+ font-size: 18px;
+ margin: 18px 5px 18px 0;
+ padding: 16px 20px;
+ width: auto;
+ }
+ .masthead-links {
+ padding: 0;
+ text-align: left;
+ }
+}
+
+/* Outline button for use within the docs */
+.btn-outline {
+ color: #563d7c;
+ background-color: #FFFFFF;
+ border-color: #e5e5e5;
+}
+.btn-outline:hover,
+.btn-outline:focus,
+.btn-outline:active {
+ color: #fff;
+ background-color: #563d7c;
+ border-color: #563d7c;
+}
+
+/* Inverted outline button (white on dark) */
+.btn-outline-inverse {
+ color: #E5E5E5;
+ background-color: transparent;
+ border-color: #E5E5E5;
+}
+.btn-outline-inverse:hover,
+.btn-outline-inverse:focus,
+.btn-outline-inverse:active {
+ color: #252525;
+ text-shadow: none;
+ background-color: #E5E5E5;
+ border-color: #E5E5E5;
+}
+
+footer {
+ color: #CCCCCC;
+}
+