2016-11-13 17:52:20 +01:00
|
|
|
@import './_variables.scss';
|
2016-11-05 11:01:17 +01:00
|
|
|
#app {
|
2016-10-26 19:03:55 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 50px;
|
2016-11-06 17:43:43 +01:00
|
|
|
min-height: 100vh;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-02-18 08:48:35 +01:00
|
|
|
button{
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
2017-02-19 12:27:59 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: white;
|
|
|
|
}
|
2017-02-18 08:48:35 +01:00
|
|
|
}
|
|
|
|
|
2016-10-26 19:03:55 +02:00
|
|
|
.container {
|
|
|
|
display: flex;
|
2016-11-12 20:57:54 +01:00
|
|
|
flex-wrap: wrap;
|
2016-10-26 19:03:55 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gaps {
|
|
|
|
margin: -1em 0 0 -1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gaps > .item {
|
|
|
|
padding: 1em 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.auto-size {
|
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
|
|
|
height: 50px;
|
|
|
|
|
2017-01-16 18:57:03 +01:00
|
|
|
.inner-nav {
|
2017-02-16 22:36:09 +01:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2017-01-16 18:57:03 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-02-18 08:48:35 +01:00
|
|
|
flex-basis: 970px;
|
2017-01-16 18:57:03 +01:00
|
|
|
margin: auto;
|
2017-02-16 17:44:36 +01:00
|
|
|
height: 50px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
2017-01-16 18:57:03 +01:00
|
|
|
}
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main-router {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status.compact {
|
|
|
|
color: rgba(0, 0, 0, 0.42);
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Panel */
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0.5em;
|
|
|
|
|
|
|
|
border-radius: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
border-radius: 0.5em 0.5em 0 0;
|
|
|
|
background-size: cover;
|
2017-02-20 16:28:50 +01:00
|
|
|
padding: 0.6em 0;
|
2016-10-26 19:03:55 +02:00
|
|
|
text-align: center;
|
|
|
|
font-size: 1.3em;
|
2017-02-18 20:18:00 +01:00
|
|
|
line-height: 24px;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-footer {
|
|
|
|
border-radius: 0 0 0.5em 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body > p {
|
2017-02-18 08:48:35 +01:00
|
|
|
line-height: 18px;
|
2017-01-15 15:44:56 +01:00
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#content {
|
|
|
|
margin: auto;
|
2017-02-18 08:48:35 +01:00
|
|
|
max-width: 980px;
|
2017-01-15 19:27:23 +01:00
|
|
|
border-radius: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
background-color: rgba(0,0,0,0.1);
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-body {
|
|
|
|
flex: 1;
|
2017-02-18 08:48:35 +01:00
|
|
|
padding-left: 0.5em;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 13:42:33 +01:00
|
|
|
.container > * {
|
|
|
|
min-width: 0px;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
2016-11-13 17:52:20 +01:00
|
|
|
color: grey;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-actions {
|
|
|
|
width: 50%;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
div, favorite-button {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status-text-container {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-el {
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
.notify {
|
|
|
|
.avatar {
|
|
|
|
border-width: 3px;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-left {
|
|
|
|
img {
|
|
|
|
margin-top: 0.2em;
|
|
|
|
float: right;
|
|
|
|
margin-right: 0.3em;
|
|
|
|
border-radius: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.retweet-info {
|
2017-02-18 08:48:35 +01:00
|
|
|
padding: 0.7em 0 0 0.6em;
|
2016-10-26 19:03:55 +02:00
|
|
|
|
|
|
|
.media-left {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
i {
|
|
|
|
align-self: center;
|
|
|
|
text-align: right;
|
|
|
|
flex: 1;
|
|
|
|
padding-right: 0.3em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-heading {
|
|
|
|
small {
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2017-02-18 08:48:35 +01:00
|
|
|
margin-bottom: 0.3em;
|
2016-10-26 19:03:55 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-03 17:28:44 +01:00
|
|
|
nav {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
2016-11-28 14:35:21 +01:00
|
|
|
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
transition: opacity .2s
|
|
|
|
}
|
|
|
|
.fade-enter, .fade-leave-active {
|
|
|
|
opacity: 0
|
|
|
|
}
|
2016-12-02 14:33:03 +01:00
|
|
|
|
|
|
|
.main {
|
2017-02-18 13:02:50 +01:00
|
|
|
flex: 1;
|
|
|
|
flex-basis: 65%;
|
2016-12-02 14:33:03 +01:00
|
|
|
}
|
2017-01-17 17:27:39 +01:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
flex: 1;
|
2017-02-18 13:02:50 +01:00
|
|
|
flex-basis: 35%;
|
2017-01-17 17:27:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-shown {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-switcher {
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 959px) {
|
|
|
|
.mobile-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-switcher {
|
|
|
|
display: flex;
|
|
|
|
}
|
2017-02-20 11:46:20 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
padding: 0 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
margin: 0.5em 0 0.5em 0;
|
|
|
|
}
|
2017-01-17 17:27:39 +01:00
|
|
|
}
|
2017-02-16 22:25:41 +01:00
|
|
|
|
|
|
|
.item.right {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|