summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 18:22:47 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 18:22:47 +0000
commitf290227150bb13c72c87012e20a9ff7959f31a5f (patch)
treeb327aa93f52d5b373702eebb5e2d7e1882f7923a /css
parente086df75301b2d17a3f6caacfa735d4c705b878b (diff)
downloadvdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.gz
vdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.bz2
Moved *.ecpp to pages and *.css to css subdir, added images dir
Diffstat (limited to 'css')
-rw-r--r--css/Makefile39
-rw-r--r--css/styles.css93
2 files changed, 132 insertions, 0 deletions
diff --git a/css/Makefile b/css/Makefile
new file mode 100644
index 0000000..006548e
--- /dev/null
+++ b/css/Makefile
@@ -0,0 +1,39 @@
+CXX ?= g++
+AR ?= ar
+ECPPC ?= ecppc
+
+CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC
+
+CXXFLAGS += `tntnet-config --cxxflags`
+LDFLAGS += `tntnet-config --libs`
+
+INCLUDES += -I..
+
+### The directory environment:
+VDRDIR ?= ../../../..
+
+### The object files (add further files here):
+
+OBJS = styles.o
+
+### Default rules:
+
+.PHONY: all clean
+
+### Implicit rules:
+
+%.o: %.cpp
+ $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
+
+%.cpp: %.css
+ $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b $<
+
+### Targets:
+
+all: libcss.a
+
+libcss.a: $(OBJS)
+ $(AR) r $@ $^
+
+clean:
+ @rm -f *~ *.o core* libcss.a $(OBJS:%.o=%.cpp)
diff --git a/css/styles.css b/css/styles.css
new file mode 100644
index 0000000..e3df546
--- /dev/null
+++ b/css/styles.css
@@ -0,0 +1,93 @@
+body {
+ margin: 0px;
+ padding: 0px;
+ font-size: 12px;
+ font-family: Helvetica,Arial,sans-serif;
+}
+
+div.left_area {
+ width: 150px;
+ float: left;
+ margin: 5px;
+}
+
+div.inhalt {
+ float: left;
+ margin: 5px;
+}
+
+div.menu {
+ border: 1px solid #6D96A9;
+ color: #6D96A9;
+ padding: 5px;
+}
+
+div.menu a {
+ text-decoration: none;
+}
+
+div.menu a:hover {
+ text-decoration: none;
+ background: #DEE6EE;
+}
+
+
+div.head_box {
+ border: 1px solid #6D96A9;
+ background: #DEE6EE;
+ margin: 2px;
+ padding: 5px;
+ font-weight: bold;
+ font-size: 14px;
+ color: black;
+}
+
+
+
+div.event {
+ width: 250px;
+ float: left;
+ border: 1px solid #6D96A9;
+ margin: 2px;
+}
+
+div.event div.tools {
+ width: 20px;
+ height: 225px;
+ float: left;
+ background: #DEE6EE;
+ padding: 2px;
+ margin: 0px;
+}
+
+div.event div.content {
+ float: left;
+ margin: 0;
+ padding: 5px;
+ height: 225px;
+}
+
+div.event div.content. div.description {
+ overflow: auto;
+}
+
+div.event div.content p {
+
+}
+
+div.event .station {
+ background: #6D96A9;
+ color: white;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 3px 3px 10px;
+}
+
+div.event div.content .title {
+ font-weight: bold;
+}
+
+div.event div.content .short {
+ font-size: 11px;
+}
+