Skip to content

Commit

Permalink
adicionado calendario
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavox4ids committed Feb 21, 2013
1 parent e96643e commit ac7646e
Show file tree
Hide file tree
Showing 9 changed files with 1,296 additions and 345 deletions.
14 changes: 9 additions & 5 deletions css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ screen and ( min-device-pixel-ratio:0) and (max-height:700px)
background-color: rgba(255, 255, 255, 0.8);
}

#calculadora table {
width: 88%;
}

footer p {
margin-top: 20px;
color: #fff;
Expand All @@ -427,33 +431,33 @@ footer p {
MENU
========
*/
#nav {
ul#nav {
margin: 10px 0 0 15px;
margin-bottom: 0px;
font-family: 'KulminoituvaRegular', helvetica, sans-serif;
}

ul, li {
ul#nav, ul#nav li {
margin: 0; padding: 0;
overflow: hidden;
}

ul li {
ul#nav li {
float: left;
list-style: none;
margin-right: 1em;
padding: 10px 2px;
}

li a {
ul#nav li a {
color: rgb(252, 188, 188);
text-decoration: none;
float: left;
font-size: 25px;
padding: 12px;
}

li a:hover {
ul#nav li a:hover {
color: #7eb9be;
text-decoration: none;
}
Expand Down
72 changes: 72 additions & 0 deletions css/jquery.icalendar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/* jQuery iCalendar styles v1.1.1 */
.icalendar_popup_text {
cursor: pointer;
color: blue;
text-decoration: underline;
}
.icalendar_popup {
display: none;
position: absolute;
z-index: 100;
}
.icalendar_popup ul {
float: left;
width: 220px;
padding: 2px;
background-color: #eee;
border: 1px solid #aaa;
}
.icalendar_popup .icalendar_list li {
width: 50%;
margin: 0%;
padding: 2px 0px;
background-color: transparent;
border: none;
}
.icalendar_list {
display: block;
list-style-type: none;
font-size: 80%;
margin: 0px;
padding: 0px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Safari3/Opera9 */
.icalendar_list {
font-size: 100%;
}
}
html:first-child .icalendar_list { /* Opera */
font-size: 80%;
}
.icalendar_list li {
float: left;
width: 12%;
margin: 0px 1px;
padding: 1px;
background-color: #eee;
border: 1px outset;
}
/*.icalendar_compact {
background-color: #eee;
border: 1px outset;
}*/
.icalendar_compact li {
width: 16px;
height: 16px;
margin: 0px;
padding: 2px;
background-color: transparent;
border: none;
}
.icalendar_list a {
width: 100%;
text-decoration: none;
}
.icalendar_list span {
display: inline-block;
width: 104px;
height: 17px;
}
.icalendar_list img {
border: none;
}
Binary file added img/calendar_plus_pt_BR.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icalendar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 18 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/default.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/jquery.icalendar.css" media="screen">
</head>
<body>
<a href="https://github.com/gustavox4ids/PoliSonic" target="_blank" class="navbar-fixed-top"><img style="-webkit-user-select: none; position: absolute; top: 0; right: 0; border: 0; z-index:9999;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" width="127" height="127"></a>
Expand Down Expand Up @@ -138,7 +139,22 @@ <h3>Compartilhe nas Redes Sociais</h3>
</footer>

<!-- Javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/code.js"></script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<script type="text/javascript" src="js/jquery.icalendar.js"></script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38655248-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>
</body>
</html>
Loading

0 comments on commit ac7646e

Please sign in to comment.