"calendar"
Bootstrap 3.0.0 Snippet by ASDAFF

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<h1>A <em>Coder's</em> Advent Calendar</h1>
<section id="modal">
<div class="wrapper">
<div class="content">
<div class="close"></div>
<div class="box"></div>
</div>
</div>
</section>
<section id="calendar" class="collectonme">
<div id="day-labels">
<div class="label">Sun</div>
<div class="label">Mon</div>
<div class="label">Tue</div>
<div class="label">Wed</div>
<div class="label">Thu</div>
<div class="label">Fri</div>
<div class="label">Sat</div>
</div>
<div id="one" class="week">
<div class="day noDate"></div>
<div class="day noDate"></div>
<div class="day">
<span class="date">1</span>
<div class="surprise">
<h2>A Hilarious Design Classic</h2>
<p>For your first day, I present for your reading pleasure a wonderful classic comic by the incomparable Matthew Inman (aka The Oatmeal).</p>
<a class="button" href="http://theoatmeal.com/comics/design_hell" target="_blank">Read On</a>
</div>
</div>
<div class="day">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
* {
box-sizing: border-box;
}
html, body {
font-family: helvetica neue,helvetica,arial,sans-serif;
font-weight: 200;
height: 100%;
min-height: 100%;
}
body {
background-color: #204198;
}
h1 {
font-size: 35px;
margin: 0;
padding: 50px 0;
text-align: center;
color: white;
text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}
h1 em {
font-weight: 500;
}
#modal {
position: fixed;
z-index: 1;
top: -100%;
left: 0;
height: 100%;
width: 100%;
background: rgba(48, 93, 212, 0.9);
}
#modal .wrapper {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: