-
Notifications
You must be signed in to change notification settings - Fork 12
/
events.css
61 lines (52 loc) · 828 Bytes
/
events.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
margin: 0;
font: 12pt 'Fauna One', sans;
}
.header {
padding: 10px;
font-weight: bold;
font-size: 18pt;
text-align: center;
color: white;
background: cadetblue;
box-shadow: 0 0 4px grey;
}
.fixed {
position: fixed;
width: 100%;
z-index: 99;
}
.at-top {
top: 0;
}
.with-top-margin {
margin-top: 70px;
}
ul {
padding: 0;
list-style-type: none;
width: 640px;
margin: 0 auto;
}
.event {
margin-bottom: 10px;
padding: 5px;
border-bottom: 1px solid #ddd;
}
.event small {
color: #444;
font-size: 10pt;
}
.event-title {
color: #222;
font-size: 11pt;
}
.action-type {
margin-left: 5px;
color: #fff;
font-size: 10pt;
padding: 2px 6px;
background: cadetblue;
border-radius: 6px;
float: right;
}