filebrowser/_embed/public/css/styles.css

865 lines
14 KiB
CSS
Raw Normal View History

2016-07-01 09:46:09 +00:00
body {
2016-12-30 22:57:14 +00:00
font-family: 'Roboto', sans-serif;
padding-top: 7.8em;
background-color: #f8f8f8;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
* {
box-sizing: border-box;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
*,
*:hover,
*:active,
*:focus {
outline: 0
2016-07-01 09:46:09 +00:00
}
a {
2016-12-30 22:57:14 +00:00
text-decoration: none;
2016-07-01 09:46:09 +00:00
}
img {
max-width: 100%;
}
2016-12-30 22:57:14 +00:00
pre {
padding: 1em;
border: 1px solid #e6e6e6;
border-radius: 0.5em;
background-color: #f5f5f5;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.container {
width: 95%;
max-width: 960px;
margin: 0 auto;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
i.spin {
animation: 1s spin linear infinite;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* EDITOR */
2016-07-01 09:46:09 +00:00
2016-12-30 22:57:14 +00:00
#editor .frontmatter {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 1em;
-moz-column-gap: 1em;
column-gap: 1em;
margin-bottom: 1em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .group,
#editor #editor-source {
2016-07-01 09:46:09 +00:00
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
2016-12-30 22:57:14 +00:00
display: block;
border-radius: .2em;
padding: .5em;
margin-bottom: 1em;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
background-color: #fff;
2016-07-01 09:46:09 +00:00
display: inline-block;
2016-12-30 22:57:14 +00:00
width: 100%;
break-inside: avoid-column;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .block {
border-bottom: 1px solid #eee;
margin-bottom: .5em;
padding-bottom: .5em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .block:last-child {
border: 0;
2016-07-01 09:46:09 +00:00
margin: 0;
padding: 0;
}
2016-12-30 22:57:14 +00:00
#editor .block label {
display: block;
color: #212121;
font-weight: 500;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor h3 {
margin: 0 0 .5em;
display: inline-block;
vertical-align: middle;
width: calc(100% - 2.5em);
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .block input,
#editor .block .actions {
display: inline-block;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .block input,
#editor .block textarea,
#editor fieldset input,
#editor fieldset textarea {
border: 0;
background-color: transparent;
overflow: hidden;
color: #9E9E9E;
resize: none;
width: calc(100% - 1.5em);
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .action {
border: 0;
background-color: transparent;
font-size: .8em;
margin: 0;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .delete,
#editor .add {
color: #ddd;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor i {
padding: 0;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .add:hover i {
color: #8BC34A;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .delete:hover i {
color: #E53935;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .add:hover i,
#editor .delete:hover i {
background-color: transparent;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor fieldset>.action {
opacity: 0;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor fieldset:hover>.action {
opacity: 1;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor textarea[name="content"] {
display: none;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor fieldset fieldset {
margin-left: 1em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor button span {
vertical-align: middle;
transition: 0.2s ease-in-out all;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor button span i {
vertical-align: sub;
font-size: 1.3rem;
margin-right: .2em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor #publish {
background-color: #167169;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .group.temp {
background-color: #f5f5f5;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .group.temp label {
font-weight: lighter;
font-size: .8em;
margin-bottom: 1em;
color: #7d7d7d;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .group.temp input {
color: #212121;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#editor .right {
display: inline-block;
text-align: right;
float: right;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* ACTION *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
2016-12-30 22:57:14 +00:00
.action {
display: inline-block;
cursor: pointer;
-webkit-transition: 0.2s ease all;
transition: 0.2s ease all;
border: 0;
margin: 0;
color: #546E7A;
border-radius: 50%;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action.disabled {
opacity: 0.2;
cursor: not-allowed;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action i {
padding: 0.4em;
-webkit-transition: 0.2s ease-in-out all;
transition: 0.2s ease-in-out all;
border-radius: 50%;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action:hover i {
background-color: rgba(0, 0, 0, .1);
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action:hover ul {
display: flex;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul {
2016-07-01 09:46:09 +00:00
position: absolute;
2016-12-30 22:57:14 +00:00
top: 3.1em;
left: 0;
color: #7d7d7d;
list-style: none;
margin: 0;
padding: 0;
background: #fff;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
border-radius: .2em;
flex-direction: column-reverse;
display: none;
transition: .2s ease all;
min-width: 3em;
z-index: 99999;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul:before {
top: -16px;
left: 1em;
right: auto;
border: 8px solid transparent;
border-bottom-color: #ffffff;
content: '';
position: absolute;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul a {
padding: .3em .5em;
border-bottom: 1px solid #f5f5f5;
transition: .2s ease all;
text-align: left;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul a:first-child {
border: 0;
border-bottom-right-radius: .2em;
border-bottom-left-radius: .2em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul a:last-child {
border-top-right-radius: .2em;
border-top-left-radius: .2em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.action ul a:hover {
2016-07-01 09:46:09 +00:00
background-color: #f5f5f5;
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* NEW FILE/DIR *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
2016-12-30 22:57:14 +00:00
.floating {
position: fixed;
bottom: 1em;
right: 1em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
.floating .action {
background-color: #2196f3 !important;
color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .12);
2016-07-05 16:46:45 +00:00
}
2016-12-30 22:57:14 +00:00
#newdir {
position: fixed;
bottom: 1.3em;
right: 5em;
transition: .2s ease all;
opacity: 0;
border: 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
padding: .5em;
width: 22em;
border-radius: .2em;
}
#newdir.enabled {
opacity: 1;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* HEADER *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
header {
2016-12-29 22:50:36 +00:00
z-index: 1000;
2016-12-29 18:36:53 +00:00
background-color: #fff;
border-bottom: 1px solid rgba(0, 0, 0, 0.075);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
2016-12-29 22:50:36 +00:00
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 0;
2016-07-01 09:46:09 +00:00
}
header a,
2016-12-30 22:57:14 +00:00
header a:hover {
2016-07-01 09:46:09 +00:00
color: inherit;
}
header p i {
font-size: 1em !important;
color: rgba(255, 255, 255, .31);
}
2016-12-30 22:57:14 +00:00
header>div {
display: flex;
width: 100%;
padding: 0.5em 0.5em 0.5em 1em;
}
header p {
display: inline-block;
margin: 0;
vertical-align: middle;
}
header p a,
header p a:hover {
color: inherit;
}
header .action span {
display: none;
}
header>div div {
vertical-align: middle;
position: relative;
}
header .actions {
margin-left: auto;
}
#logout {
2016-07-01 09:46:09 +00:00
border-radius: 0;
2016-12-30 22:57:14 +00:00
margin-left: auto;
padding: .15em;
}
/* * * * * * * * * * * * * * * *
* TOP BAR *
* * * * * * * * * * * * * * * */
#top-bar {
height: 4em;
}
#top-bar>div:nth-child(1) {
margin-right: 1em;
font-weight: 500;
font-size: 1.5em;
line-height: 2;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* SEARCH BAR *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
#search {
position: relative;
display: inline-block;
height: 100%;
padding: 0.75em;
vertical-align: middle;
border-radius: 0.3em;
2016-12-29 18:36:53 +00:00
background-color: #f5f5f5;
2016-07-01 09:46:09 +00:00
transition: .1s ease all;
}
#search.active {
background-color: #fff;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .12);
}
#search.active i,
#search.active input {
color: #212121;
}
#search i,
#search input {
vertical-align: middle;
}
#search i {
margin-right: 0.3em;
2016-12-29 06:17:29 +00:00
user-select: none;
2016-07-01 09:46:09 +00:00
}
#search input {
min-width: 20em;
border: 0;
outline: 0;
background-color: transparent;
}
#search.active div {
visibility: visible;
opacity: 1;
top: 100%;
}
2016-11-01 15:00:36 +00:00
#search ul {
padding: 0;
margin: 0;
list-style: none;
}
#search li {
margin-bottom: .5em;
}
#search>div {
2016-07-01 09:46:09 +00:00
position: absolute;
top: 0;
width: 100%;
left: 0;
z-index: 999999;
background-color: #fff;
text-align: left;
color: #ccc;
box-shadow: 0 2px 3px rgba(0, 0, 0, .06), 0 2px 2px rgba(0, 0, 0, .12);
padding: .5em;
border-bottom-left-radius: .3em;
border-bottom-right-radius: .3em;
transition: .1s ease all;
visibility: hidden;
opacity: 0;
overflow-x: hidden;
overflow-y: auto;
max-height: 50vh;
2016-11-01 15:00:36 +00:00
}
#search>div div {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
2016-10-20 21:18:45 +00:00
word-wrap: break-word;
2016-07-01 09:46:09 +00:00
}
2016-11-01 15:00:36 +00:00
#search>div p {
width: 100%;
text-align: center;
display: none;
margin: 0;
max-width: none;
}
#search.ongoing p {
display: block;
}
2016-07-01 09:46:09 +00:00
#search.active div i,
#sidebar #search.active div i {
color: #ccc;
text-align: center;
margin: 0 auto;
display: table;
2016-07-01 09:46:09 +00:00
}
#search::-webkit-input-placeholder {
color: rgba(255, 255, 255, .5);
}
#search:-moz-placeholder {
opacity: 1;
color: rgba(255, 255, 255, .5);
}
#search::-moz-placeholder {
opacity: 1;
color: rgba(255, 255, 255, .5);
}
#search:-ms-input-placeholder {
color: rgba(255, 255, 255, .5);
}
2016-12-30 16:22:26 +00:00
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* BOTTOM BAR *
* * * * * * * * * * * * * * * */
#bottom-bar {
background-color: #fafafa;
border-top: 1px solid rgba(0, 0, 0, 0.075);
border-bottom: 1px solid rgba(0, 0, 0, 0.075);
height: 3.8em;
}
2016-12-30 16:22:26 +00:00
2016-12-30 22:57:14 +00:00
#bottom-bar div:first-child>* {
2016-12-30 16:22:26 +00:00
display: inline-block;
vertical-align: middle;
}
2016-12-30 22:57:14 +00:00
#bottom-bar div:first-child>i {
margin-right: .3em;
}
#file-only {
display: inline-block;
border-right: 1px solid rgba(0, 0, 0, 0.075);
padding-right: .3em;
2016-12-30 16:22:26 +00:00
margin-right: .3em;
2016-12-30 22:57:14 +00:00
transition: .2s ease all;
visibility: visible;
}
#file-only.disabled {
opacity: 0;
visibility: hidden;
2016-12-30 16:22:26 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* BREADCRUMBS *
* * * * * * * * * * * * * * * */
2016-12-30 16:22:26 +00:00
#breadcrumbs-button {
padding: .4em 0.3em;
border-radius: .1em;
cursor: pointer;
transition: .1s ease all;
}
#breadcrumbs-button.active,
#breadcrumbs-button:hover {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
background: #fff;
}
#current-file {
line-height: 2.7em;
}
#breadcrumbs {
transition: .1s ease all;
padding: 0;
margin: 0;
list-style: none;
display: inline-flex;
flex-direction: column;
border-radius: 2px;
border-top-left-radius: 0;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
background: #fff;
position: absolute;
left: 0;
top: 2.3em;
2016-12-30 22:57:14 +00:00
min-width: 7em;
z-index: 999;
opacity: 0;
visibility: hidden;
color: #656565;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#breadcrumbs.active {
2016-07-01 09:46:09 +00:00
opacity: 1;
2016-12-30 22:57:14 +00:00
visibility: visible;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#breadcrumbs li {
line-height: 1.5em;
padding: .3em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* LISTING *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
#listing {
2016-12-30 16:22:26 +00:00
max-width: calc(100% - 1.2em);
width: 100%;
}
#listing h2 {
margin: 0 0 0 0.5em;
font-size: 1em;
color: rgba(0, 0, 0, 0.2);
font-weight: 500;
}
2016-12-30 22:57:14 +00:00
#listing .item div:last-of-type * {
text-overflow: ellipsis;
overflow: hidden;
2016-12-30 16:22:26 +00:00
}
#listing>div {
2016-07-01 09:46:09 +00:00
display: flex;
2016-12-29 10:17:21 +00:00
padding: 0;
2016-07-01 09:46:09 +00:00
flex-wrap: wrap;
2016-12-29 18:36:53 +00:00
justify-content: flex-start;
2016-12-30 16:22:26 +00:00
position: relative;
2016-07-01 09:46:09 +00:00
}
#listing .item {
background-color: #fff;
position: relative;
2016-12-29 10:17:21 +00:00
display: flex;
flex-wrap: nowrap;
2016-12-29 18:01:28 +00:00
color: #6f6f6f;
2016-12-30 16:22:26 +00:00
transition: .1s ease all;
2016-12-30 22:57:14 +00:00
align-items: center;
2016-12-29 10:17:21 +00:00
}
2016-12-30 22:57:14 +00:00
#listing .item div:last-of-type {
2016-12-29 10:17:21 +00:00
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing .item p {
2016-07-01 09:46:09 +00:00
margin: 0;
}
2016-12-30 22:57:14 +00:00
#listing .item .size,
#listing .item .modified {
font-size: 0.9em;
}
#listing .item .name {
2016-07-01 09:46:09 +00:00
font-weight: bold;
}
2016-12-30 22:57:14 +00:00
#listing .item i {
2016-12-29 18:01:28 +00:00
font-size: 4em;
2016-07-01 09:46:09 +00:00
margin-right: 0.1em;
2016-12-29 09:47:55 +00:00
vertical-align: bottom;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* LISTING - MOSAIC *
* * * * * * * * * * * * * * * */
#listing.mosaic {
margin-top: 1em;
2016-12-30 16:22:26 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.mosaic .item {
width: calc(33% - 1em);
margin: .5em;
padding: 0.5em;
border-radius: 0.2em;
box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .12);
2016-12-30 16:22:26 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.mosaic .item:hover {
box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24) !important;
2016-12-30 16:22:26 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.mosaic .header {
display: none;
2016-12-30 16:22:26 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.mosaic .item div:first-of-type {
width: 5em;
}
#listing.mosaic .item div:last-of-type {
width: calc(100% - 5vw);
}
/* * * * * * * * * * * * * * * *
* LISTING - DETAIL *
* * * * * * * * * * * * * * * */
#listing.list {
flex-direction: column;
margin-top: 3.25em;
width: 100%;
max-width: 100%;
2016-12-30 16:22:26 +00:00
}
#listing.list .item {
width: 100%;
margin: 0;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 1em;
}
2016-12-30 22:57:14 +00:00
#listing.list h2 {
display: none;
2016-12-30 16:22:26 +00:00
}
#listing .item[aria-selected=true] {
background: #2196f3 !important;
color: #fff !important;
}
2016-12-29 18:36:53 +00:00
#listing.list .item div:first-of-type {
width: 3em;
}
#listing.list .item div:first-of-type i {
font-size: 2em;
}
#listing.list .item div:last-of-type {
width: calc(100% - 3em);
2016-12-30 16:22:26 +00:00
display: flex;
align-items: center;
}
2016-12-30 22:57:14 +00:00
#listing.list .item .name {
2016-12-30 16:22:26 +00:00
width: 50%;
}
2016-12-30 22:57:14 +00:00
#listing.list .item .size {
2016-12-30 16:22:26 +00:00
width: 25%;
2016-12-29 18:36:53 +00:00
}
2016-12-30 22:57:14 +00:00
#listing .item.header {
display: none !important;
background-color: #ccc;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header i {
font-size: 1.5em;
vertical-align: middle;
margin-left: .2em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header {
display: flex !important;
background: #fafafa;
position: fixed;
2016-07-01 09:46:09 +00:00
width: 100%;
2016-12-30 22:57:14 +00:00
top: 7.8em;
left: 0;
z-index: 999;
padding: .85em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header>div:first-child {
width: 0;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header .name {
margin-right: 3em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header {
display: flex;
background: #fafafa;
position: fixed;
width: 100%;
top: 7.8em;
left: 0;
z-index: 999;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header a {
color: inherit;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header>div:first-child {
width: 0;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .name {
font-weight: normal;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header .name {
margin-right: 3em;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header span {
vertical-align: middle;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header i {
2016-07-01 09:46:09 +00:00
opacity: 0;
2016-12-30 22:57:14 +00:00
transition: .1s ease all;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
#listing.list .header p:hover i,
#listing.list .header .active i {
2016-07-01 09:46:09 +00:00
opacity: 1;
}
2016-12-30 22:57:14 +00:00
#listing.list .item.header .active {
font-weight: bold;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* FOOTER *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
2016-12-30 22:57:14 +00:00
footer {
font-size: 0.6em;
margin: 2em 0 2em;
text-align: center;
color: grey;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
footer a,
footer a:hover {
color: inherit;
2016-07-01 09:46:09 +00:00
}
2016-12-30 22:57:14 +00:00
/* * * * * * * * * * * * * * * *
* ANIMATIONS *
* * * * * * * * * * * * * * * */
2016-07-01 09:46:09 +00:00
2016-12-30 22:57:14 +00:00
@keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
2016-12-29 10:17:21 +00:00
}