summaryrefslogtreecommitdiff
path: root/web/views/embed/layout.erb
blob: 5bda56ec5a1ab2bef83eed0db9648fcd4a13630f (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <style>
body {
    font-family: Arial,sans-serif;
    font-size: 0.8em;
    padding: 0;
    margin: 0;
}

div.main {
    width: 180px;
    background-color: #ffffff;
    border: 1px solid #a0a0a0;
    border-radius: 4px;
    padding: 4px;
}

a img {
    border: none;
    position: relative;
    top: 1px;
}

a {
    text-decoration: none;
    color: #083e76;
}

div.content {
    margin-top: 6px;
    text-align: right;
}

div.content table {
    border-collapse: collapse;
}

div.content td.ft {
    padding-right: 8px;
}

</style>
</head>
<body>
<div class="main">
<%= yield %>
</div>
</body>
</html>