Skip to content

Commit 7a69e7e

Browse files
author
Christian Strappazzon
committed
added files
1 parent f8d43a2 commit 7a69e7e

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

assets/css/pymi.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* Meetup calendario evento */
2+
3+
#next-meetup {
4+
position:relative;
5+
width: 570px;
6+
}
7+
8+
#calendar {
9+
float:left;
10+
margin: 35px 15px 15px 15px;
11+
font-weight: bold;
12+
border: 2px solid black;
13+
}
14+
15+
#month {
16+
position: relative;
17+
left: 0;
18+
top: 0;
19+
margin: 0;
20+
padding: 10px 15px;
21+
color: #fff;
22+
background-color: #BC0000;
23+
border-bottom: 2px solid black;
24+
font-size: 15px;
25+
}
26+
27+
#day {
28+
font-size: 44px;
29+
}
30+

assets/js/motto.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
$(document).ready(function(){
2+
var motti = [
3+
"La pyBissa de Milan",
4+
"Il serpent[1] di Milano",
5+
"Python Milano's Flying Cathedral",
6+
"Il secondo serpente di Milano, dopo il biscione",
7+
];
8+
9+
var motto = motti[Math.floor(Math.random() * motti.length)];
10+
11+
$('#motto').text('"""' + motto + '"""');
12+
13+
});

0 commit comments

Comments
 (0)