Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Sep 18, 2012
0 parents commit f6a5938
Show file tree
Hide file tree
Showing 6 changed files with 141 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
components
build
14 changes: 14 additions & 0 deletions Makefile
@@ -0,0 +1,14 @@

build: components style.css
@component build --dev

style.css: aurora-calendar.css
rework < $< > $@

components:
@component install --dev

clean:
rm -fr build components

.PHONY: clean
14 changes: 14 additions & 0 deletions Readme.md
@@ -0,0 +1,14 @@

# aurora-calendar

Aurora calendar theme

![](http://f.cl.ly/items/043N1r0e1L130y162R2f/Screen%20Shot%202012-09-17%20at%209.17.32%20PM.png)

## Installation

$ component install aurora-calendar

# License

MIT
37 changes: 37 additions & 0 deletions aurora-calendar.css
@@ -0,0 +1,37 @@
body {
font: 14px "Helvetica Neue", Helvetica, Arial;
padding: 80px;
color: #333;
}
a {
display: block;
padding: 5px;
text-decoration: none;
color: inherit;
border-radius: 3px;
}
a:hover {
background: #efefef;
}
a:active {
opacity: .75;
}
.calendar-table {
float: left;
font-size: 13px;
border-radius: 5px;
box-shadow: 0 1px 2px #eee;
border-bottom: 1px solid #ddd;
}
.calendar-table .selected {
background: none;
}
.calendar-table .selected a {
/* TODO: remove when rework(1) fixes gradients */
background: -webkit-linear-gradient(#76aaef, #0085CC);
background: -moz-linear-gradient(#76aaef, #0085CC);
background: -ms-linear-gradient(#76aaef, #0085CC);
background: -o-linear-gradient(#76aaef, #0085CC);
box-shadow: inset 0 1px #2b8dea;
color: white;
}
14 changes: 14 additions & 0 deletions component.json
@@ -0,0 +1,14 @@
{
"name": "aurora-calendar",
"repo": "component/aurora-calendar",
"description": "Aurora calendar theme",
"version": "0.0.1",
"keywords": ["aurora", "theme", "calendar"],
"dependencies": {},
"development": {
"component/calendar": "*"
},
"styles": [
"style.css"
]
}
60 changes: 60 additions & 0 deletions style.css
@@ -0,0 +1,60 @@
body {
font: 14px "Helvetica Neue", Helvetica, Arial;
padding: 80px;
color: #333
}

a {
display: block;
padding: 5px;
text-decoration: none;
color: inherit;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px
}

a:hover {
background: #efefef
}

a:active {
opacity: .75;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
filter: alpha(opacity=75)
}

.calendar-table {
float: left;
font-size: 13px;
border-bottom: 1px solid #ddd;
-o-border-radius: 5px;
-ms-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-o-box-shadow: 0 1px 2px #eee;
-ms-box-shadow: 0 1px 2px #eee;
-moz-box-shadow: 0 1px 2px #eee;
-webkit-box-shadow: 0 1px 2px #eee;
box-shadow: 0 1px 2px #eee
}

.calendar-table .selected {
background: none
}

.calendar-table .selected a {
background: -webkit-linear-gradient(#76aaef, #0085CC);
background: -moz-linear-gradient(#76aaef, #0085CC);
background: -ms-linear-gradient(#76aaef, #0085CC);
background: -o-linear-gradient(#76aaef, #0085CC);
color: white;
-o-box-shadow: inset 0 1px #2b8dea;
-ms-box-shadow: inset 0 1px #2b8dea;
-moz-box-shadow: inset 0 1px #2b8dea;
-webkit-box-shadow: inset 0 1px #2b8dea;
box-shadow: inset 0 1px #2b8dea
}

0 comments on commit f6a5938

Please sign in to comment.