blob: d3fb0a05d921b203405810f05fad4d1387a1d2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(include "eww_vars.yuck")
(defwidget day []
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
(label :class "label" :text DAY)))
(defwidget month []
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
(label :class "label" :text MONTH)))
(defwidget year []
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
(label :class "label" :text YEAR)))
(defwidget daytype []
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
(label :class "label" :text DAYTYPE)))
(defwidget gif1 []
(box :halign "center" :valign "center" :class "container"
(image :path 'images/gif1.gif')))
(defwidget gif2 []
(box :halign "center" :valign "center" :class "container"
(image :path 'images/gif2.gif')))
|