summaryrefslogtreecommitdiffstats
path: root/css/explore.css
blob: 8bf60a75421919f3b31a714cf2624f1c96796578 (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
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2014
 */

/**
 * Explore styles
 */
.explore #app-content-wrapper {
    height: 100%;
}

#explore {
    height: 100%;
    width: 100%;
    padding: 45px 0 45px 45px;
}


#explore .grid-item {
    float: left;
    width: 300px;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin: 0 25px 25px 0;
}

#explore h1 {
    font-size: 13pt;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 24px 24px;
    padding: 5px 0 0 35px;
}

#explore h1 a {
    word-wrap: break-word;
}

#explore h1 a:hover {
    text-decoration: underline;
}

#explore .category-wrapper {
    text-align: center;
}

#explore .category {
    font-weight: normal;
    font-size: 10pt;
    color: var(--color-primary-text);
    background-color: var(--color-primary);
    padding: 10px;
    font-weight: bold;
}

#explore .grid-item-content {
    padding: 30px;
}

#explore .explore-logo {
    text-align: center;
    margin-top: 25px;
}

#explore .explore-logo img {
    width: 100%;
}

#explore .explore-subscribe {
    padding-top: 15px;
    text-align: right;
}

#explore .explore-content {
    padding-top: 25px;
}

#explore .explore-filter {
    text-align: right;
    padding: 0 30px 30px;
}

#explore .explore-filter input,
#explore .explore-filter select {
    margin-left: 10px;
    display: inline-block;
}

#explore .explore-filter input {
    width: 200px;
}

#explore .explore-footer {
    clear: both;
    margin: 75px 0;
    text-align: center;
}

#explore .explore-footer a {
    font-size: 11pt;
    color: #0000AA;
    text-decoration: underline;
}