File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+ } ) ;
You can’t perform that action at this time.
0 commit comments