2014-11-19 17:54:32 +03:00
|
|
|
/**
|
|
|
|
* ownCloud - 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%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#explore h1 {
|
|
|
|
font-size: 16pt;
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#explore .explore-section {
|
|
|
|
padding: 20px 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#explore .explore-section h2 {
|
|
|
|
color: #333;
|
|
|
|
font-size: 14pt;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#explore .explore-section li {
|
2014-11-19 21:12:12 +03:00
|
|
|
padding: 20px 30px;
|
2014-11-19 18:43:14 +03:00
|
|
|
margin: 0 20px 20px 0;
|
2014-11-19 17:54:32 +03:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 300px;
|
|
|
|
background-color: #f5f5f5;
|
2014-11-19 21:13:55 +03:00
|
|
|
border: 1px solid #ccc;
|
2014-11-19 17:54:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#explore .explore-section h3 {
|
|
|
|
line-height: 45px;
|
|
|
|
height: 45px;
|
|
|
|
font-size: 13pt;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 center;
|
|
|
|
background-size: 24px 24px;
|
|
|
|
padding: 0 0 15px 35px;
|
|
|
|
}
|
|
|
|
|
2014-11-21 15:53:36 +03:00
|
|
|
#explore .explore-section h3 a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-11-19 21:12:12 +03:00
|
|
|
#explore .explore-logo {
|
|
|
|
text-align: center;
|
2014-11-19 17:54:32 +03:00
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
2014-11-19 21:12:12 +03:00
|
|
|
#explore .explore-logo img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-11-19 17:54:32 +03:00
|
|
|
#explore .explore-subscribe {
|
|
|
|
padding-top: 15px;
|
|
|
|
text-align: right;
|
2014-11-19 21:12:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#explore .explore-content {
|
|
|
|
min-height: 100px;
|
|
|
|
/*overflow: auto;*/
|
|
|
|
}
|
|
|
|
|