Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
amalloy committed May 16, 2011
2 parents 495fc83 + bda3e7a commit 2735985
Show file tree
Hide file tree
Showing 55 changed files with 610 additions and 16,149 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,3 +8,4 @@ pom.xml
*# *#
.cake .cake
.DS_Store .DS_Store
.#*
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -52,6 +52,7 @@ Problem sources:


* Aaron Bedra's [Clojure Koans](https://github.com/functional-koans/clojure-koans) * Aaron Bedra's [Clojure Koans](https://github.com/functional-koans/clojure-koans)
* [Ninety-Nine Lisp Problems](http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html) * [Ninety-Nine Lisp Problems](http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html)
* [Project Euler](http://www.projecteuler.net)


## License ## License


Expand Down
4 changes: 2 additions & 2 deletions config.clj
Expand Up @@ -4,6 +4,6 @@
:db-pwd nil :db-pwd nil
:host "smtp.googlemail.com" :host "smtp.googlemail.com"
:user "team@4clojure.com" :user "team@4clojure.com"
:pass ""
:problem-submission false :problem-submission false
:advanced-user-count 50} :advanced-user-count 50
:pass ""}
5 changes: 3 additions & 2 deletions project.clj
@@ -1,4 +1,4 @@
(defproject foreclojure "0.2.2.1" (defproject foreclojure "0.3.0"
:description "4clojure - a website for lisp beginners" :description "4clojure - a website for lisp beginners"
:dependencies [[org.clojure/clojure "1.2.1"] :dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"] [org.clojure/clojure-contrib "1.2.0"]
Expand All @@ -12,7 +12,8 @@
[clj-github "1.0.1"] [clj-github "1.0.1"]
[ring "0.3.7"] [ring "0.3.7"]
[clj-config "0.1.0"] [clj-config "0.1.0"]
[incanter/incanter-charts "1.2.1"] [incanter/incanter-core "1.2.3"]
[incanter/incanter-charts "1.2.3"]
[org.apache.commons/commons-email "1.2"]] [org.apache.commons/commons-email "1.2"]]
:dev-dependencies [[lein-ring "0.4.0"] :dev-dependencies [[lein-ring "0.4.0"]
[swank-clojure "1.2.1"]] [swank-clojure "1.2.1"]]
Expand Down
87 changes: 73 additions & 14 deletions resources/public/css/style.css
Expand Up @@ -3,14 +3,14 @@ body {
font-size: 12px; font-size: 12px;
font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif; font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif;
color:#564b47; color:#564b47;
margin: 20px 140px 20px 140px; margin: 20px 0;
text-align: center; text-align: center;
} }


img {border:none} img {border:none}




#account{ #account.header-option {
float:right; float:right;
width: 100%; width: 100%;
text-align: right; text-align: right;
Expand All @@ -19,11 +19,16 @@ img {border:none}
font-weight: bold; font-weight: bold;
} }


#account a:link {color: #445599;} #manage-unapproved {
#account a:visited {color: #445599;} position: absolute;
#account a:active {color: #445599;} right: 150px;
#account a:hover {color: #7CFC00;} }
#account a {text-decoration: none; font-size: 12px; font-weight:bold;}
.header-option a:link {color: #445599;}
.header-option a:visited {color: #445599;}
.header-option a:active {color: #445599;}
.header-option a:hover {color: #7CFC00;}
.header-option a {text-decoration: none; font-size: 12px; font-weight:bold;}


#wrapper { #wrapper {
width: 100%; width: 100%;
Expand All @@ -37,14 +42,15 @@ img {border:none}
} }


#content { #content {
width: 95%; width: 85%;
margin: 15px; margin: 15px auto;
padding: 15px 0px 15px 0px; padding: 15px 0px 15px 0px;
text-align: left; text-align: left;
background-color: #fff; background-color: #fff;
overflow: auto; overflow: auto;
-moz-border-radius: 15px; -moz-border-radius: 15px;
border-radius: 15px; border-radius: 15px;
position: relative;
} }


#content_body { #content_body {
Expand All @@ -58,8 +64,9 @@ img {border:none}
} }


#top { #top {
width: 95%; width: 85%;
padding: 15px 0px 15px 0px; padding: 15px 0px 15px 0px;
margin: 0 auto;
} }
div#top a { div#top a {
border: 0; border: 0;
Expand All @@ -76,6 +83,17 @@ h3 {
color: #fff; color: #fff;
} }


#lower-menu {
background-color: darkblue;
padding: 10px 5px 10px;
color: #7CFC00;
}
#lower-menu a:link {color: #fff;}
#lower-menu a:visited {color: #fff;}
#lower-menu a:active {color: #445599;}
#lower-menu a:hover {color: #7CFC00;}
#lower-menu a {text-decoration: none; font-size: 1.1em; font-weight:bold; padding: 0 20px;}

a.novisited {color: #00e;} a.novisited {color: #00e;}


#menu a:link {color: #fff;} #menu a:link {color: #fff;}
Expand Down Expand Up @@ -142,7 +160,7 @@ a.novisited {color: #00e;}
float: left; float: left;
} }


#problem-table{ #problem-table, table#unapproved-problems {
float: left; float: left;
width: 100%; width: 100%;
} }
Expand All @@ -169,8 +187,10 @@ span.error, div.error {


div.message { div.message {
color: red; color: red;
margin-bottom: 8px;
font-size: 16px; font-size: 16px;
width: 75%;
float: left;
position: absolute;
} }


span#prob-title { span#prob-title {
Expand Down Expand Up @@ -334,11 +354,50 @@ button:active {
} }


#golfgraph{ #golfgraph{
width: 90% width: 90%;
} }


#golfgraph img{ #golfgraph img{
height: 300px;
padding-top: 25px; padding-top: 25px;
} }


#golf-scores{
color: black;
font-size: 16px;
width: 25%;
float: right;
background-color:#bbddee;
overflow: auto;
-moz-border-radius: 15px;
border-radius: 15px;
text-align: center;
}

#instruct{
font-weight: bold;
width: 100%;
padding-top: 25px;
}

#golfheader{
font-weight: bold;
background-color:#445599;
color: #fff;
text-align: center;
width: 100%;
}

#graph-link{
width: 100%;
text-align: center;
float: right;
font-weight: bold;
font-size: 12px;
padding-bottom: 5px;
display: none;
}

a.graph-class :hover {color: #445599;}



0 comments on commit 2735985

Please sign in to comment.