summaryrefslogtreecommitdiff
path: root/data/about.css
blob: ab1d85ff4ac9223045acaa4ec28bd477617c93d4 (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
114
115
116
117
118
119
120
121
122
123
/*
 Copyright (C) 2018 Christian Dywan <christian@twotoats.de>

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 See the file COPYING for the full license text.
 */

body {
    background-color: #dedede;
    background-image: url(res:///data/logo-shade.svg);
    background-repeat: no-repeat;
    background-position: 90% 90%;
    color: #222222;
    font-family: -webkit-system-font, sans-serif;
    font-size: 14pt;
}

#columns {
    margin: 10% auto;
}

#icon {
    display: inline-block;
    vertical-align: top;
    text-align: right;
    width: 20%;
    margin-right: 5%;
}

#main {
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-left: 1%;
}

h1 {
    font-size: 24pt;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}

button span {
    vertical-align: middle;
    padding: 2pt 1pt;
}

.message {
    overflow: hidden;
    text-overflow: ellipsis;
}

.description {
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action {
    margin-top: 5%;
}

button {
    font-size: 14pt;
    text-align: right;
}

#grid {
    margin: auto auto;
}

.shortcut {
    width: 27%;
    max-width: 32%;
    height: 30%;
    margin: 1%;
    display: inline-table;
    box-sizing: border-box;
    overflow: hidden;
}

.shortcut a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.shortcut a img {
    width: 50%;
    height: 50%;
    margin: auto;
    margin-bottom: .5em;
    display: block;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12),
                0 1px 2px rgba(0,0,0,0.24);
}

.shortcut a:hover img {
    box-shadow: 0 3px 5px rgba(0,0,0,0.24),
                0 3px 4px rgba(0,0,0,0.48);
}

.shortcut a .title {
    width: 90%;
    color: #222222;
    text-align: center;
    text-overflow: ellipsis;
    word-wrap: nowrap;
    max-height: 2em;
    line-height: 1em;
    overflow: hidden;
    display: block;
    font-size: 70%;
}