summaryrefslogtreecommitdiff
path: root/data/html/event-log.html
blob: a595ea8379a9410cf73574210c144bcabef0e891 (plain)
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
<!doctype html>
<html>
    <head>
        <title>SparkleShare Event Log</title>
        <style>
            body {
                background-color: #f0f0f0;
                color:            <!-- $body-color -->;
                font-size:        <!-- $body-font-size -->;
                font-family:      <!-- $body-font-family -->;
                margin:           0;
                padding:          0;
                margin-top:       20px;
                -webkit-user-select: none;
            }

            small {
                font-size: <!-- $small-font-size -->;
                color:     <!-- $small-color -->;
            }

            .moved-arrow {
                color: <!-- $secondary-font-color -->;
            }

            .day-entry-header {
                font-size:     <!-- $day-entry-header-font-size -->;         
                color:         #babdb6;
                text-align:    center;
                width:         90%;
                text-shadow:   0  1px 0 rgba(255, 255, 255, 1.0);
                margin-bottom: 9px;
                margin-left:   auto;
                margin-right:  auto;            
            }
            
            .day-entry-content {
                padding: 9px;
            }
                        
            a {
                color:           <!-- $a-color -->;
                text-decoration: none;
            }

            a:hover {
                color: <!-- $a-hover-color -->;
            }

            .event-time {
                font-size:     80%;
                color:         <!-- $secondary-font-color -->;
                float:         right;
            }

            .event-entry-content {
                display:               block;
                width:                 400px;
                background-color:      #fff;
                margin-left:           auto;
                margin-right:          auto;
                margin-bottom:         9px;
                padding:               18px;
                -webkit-border-radius: 6px;
                border:                #ddd 1px solid;
            }
            
            dl {
                padding: 0;
                margin: 0;
                padding-bottom: 15px;
            }
            
            dt {
                padding-bottom: 12px;
                padding-top:    12px;
                font-size:      80%;
                color:          <!-- $secondary-font-color -->;
            }
            
            dd {
                width:          300px;
                overflow:       hidden;
                padding-left:   0;
                margin-left:    12px;
                text-overflow:  ellipsis;
                padding-bottom: 9px;
            }

            .no-buddy-icon {
                float:               left;
                margin-right:        12px;
                width:               36px;
                background-image:    url('<!-- $no-buddy-icon-background-image -->');
                background-repeat:   no-repeat;
                background-position: top center; 
            }

            .buddy-icon {
                width:            36px;
                height:           36px;
                background-color: #fff;
            }

            .event-info {
                float: left;
            }
        </style>
    </head>
    <body>
        <!-- $event-log-content -->
    </body>
</html>