forked from Mark-H/twitterwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
132 lines (117 loc) · 3.02 KB
/
custom.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@font-face {
font-family: 'Cabin Sketch';
src: url('fonts/cabinsketch-bold-webfont.eot');
src: url('fonts/cabinsketch-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/cabinsketch-bold-webfont.woff') format('woff'),
url('fonts/cabinsketch-bold-webfont.ttf') format('truetype'),
url('fonts/cabinsketch-bold-webfont.svg#CabinSketchBold') format('svg');
font-weight: normal;
font-style: normal;
}
html {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAHklEQVQIW2P4//+/MBQzgDAICEMxXAAMYCoRIlCVANL6FYTYi5d+AAAAAElFTkSuQmCC);
background-position: center -100px; /* 71px */
background-repeat: repeat, no-repeat;
background-color: #008999;
}
body {
font-family: 'Century Gothic', sans-serif;
color: #93cfd6;
font-size: 24px;
}
#schedule div {
position: absolute;
bottom: 0;
right: 0;
left: 0;
background: rgba(255,255,255,0.6);
padding: 20px;
}
#schedule div > * {
margin: 0;
padding: 0;
letter-spacing: -0.1em;
}
#schedule {
color: #000;
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
overflow: hidden;
}
#schedule a {
color: rgba(0,0,0,0.7);
}
#schedule h3 {
padding-top: 0px;
font-size: 54px;
clear: right;
}
#schedule h2 {
line-height: 48px;
font-size: 34px;
}
#schedule > * {
text-shadow: 0px 1px 1px #fff;
}
#schedule img {
position: absolute;
top: 0;
left: 0;
border: 0;
z-index: 0;
width: 100%;
max-width: 100%;
}
/* twitter colours */
#tweets a { color: rgba(255,255,255,0.7); }
.hentry .meta, #tweets .meta a { color: #99CFD7; }
#tweets li { background: rgba(255, 255, 255, 0.2); }
.tweet { color: #fff; }
/* this simply puts a large background image on the schedule element if it matches the schedule time */
#schedule[data-time="0940"] {
background-image: url(/images/sample/remy.jpg);
}
#schedule[data-time="0950"] {
background-image: url(/images/sample/jeremy.jpg);
}
#schedule[data-time="1030"] {
background-image: url(/images/sample/phil.jpg);
}
#schedule[data-time="1110"] {
background-image: url(/images/sample/break1.jpg);
}
#schedule[data-time="1140"] {
background-image: url(/images/sample/marijn.jpg);
}
#schedule[data-time="1220"] {
background-image: url(/images/sample/rik.jpg);
}
#schedule[data-time="1430"] {
background-image: url(/images/sample/nicholas.jpg);
}
#schedule[data-time="1510"] {
background-image: url(/images/sample/glenn.jpg);
}
#schedule[data-time="1550"] {
background-image: url(/images/samplebreak2.jpg);
}
#schedule[data-time="1620"] {
background-image: url(/images/sample/brendan.jpg);
}
#schedule[data-time="1700"] {
background-image: url(/images/sample/marcin.jpg);
}
#schedule[data-time="1900"] {
background-image: url(/images/sample/closing.jpg);
}
/* this allows us to customise what part is animated to fullscreen */
#notices .fullscreen {
top: 100%;
background: white;
}
/* this third notice will slide upwards as it also has .fullscreen */
#notice3.show {
top: 0;
}