Merge branch 'lars' into 'master'
Lars See merge request !154
This commit was merged in pull request #158.
This commit is contained in:
@@ -144,4 +144,22 @@ body {
|
||||
|
||||
.chat-message-other .chat-time {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
.chat-message-self, .chat-message-other {
|
||||
max-width: 75%;
|
||||
}
|
||||
.chat {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#chat-recent-panel {
|
||||
left: 0;
|
||||
width: 320px;
|
||||
}
|
||||
#chat-history {
|
||||
left: 50%;
|
||||
width: calc(100% - 390px);
|
||||
}
|
||||
}
|
||||
@@ -26,7 +26,8 @@ header {
|
||||
}
|
||||
|
||||
#header-search {
|
||||
padding-left: 42px;
|
||||
margin: 24px 0 24px 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
@@ -49,4 +50,10 @@ header div {
|
||||
|
||||
#open-notifications {
|
||||
padding: 5px 20px 5px 0px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
#header-logo {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -293,4 +293,14 @@ div[data-title]:hover:after {
|
||||
-webkit-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
background: #4CAF50;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
body {
|
||||
font-size: 28px!important;
|
||||
}
|
||||
button {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -86,4 +86,18 @@
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
#contact-menu, #notification-center {
|
||||
display: none;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
.content {
|
||||
margin-left: 0;
|
||||
}
|
||||
#quick-links i {
|
||||
font-size: 48px!important;
|
||||
}
|
||||
}
|
||||
47
website/public/styles/mobilefriendly.css
Normal file
47
website/public/styles/mobilefriendly.css
Normal file
@@ -0,0 +1,47 @@
|
||||
/* MAIN */
|
||||
body {
|
||||
font-size: 28px!important;
|
||||
}
|
||||
button {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
/* HEADER */
|
||||
#header-logo {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* PROFILE */
|
||||
.post-box {
|
||||
width: calc(100% - 65px);
|
||||
}
|
||||
|
||||
/* MENU */
|
||||
#contact-menu, #notification-center {
|
||||
display: none;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
.content {
|
||||
margin-left: 0;
|
||||
}
|
||||
#quick-links i {
|
||||
font-size: 48px!important;
|
||||
}
|
||||
|
||||
/* CHAT */
|
||||
.chat-message-self, .chat-message-other {
|
||||
max-width: 75%;
|
||||
}
|
||||
.chat {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#chat-recent-panel {
|
||||
left: 0;
|
||||
width: 320px;
|
||||
}
|
||||
#chat-history {
|
||||
left: 50%;
|
||||
width: calc(100% - 390px);
|
||||
}
|
||||
@@ -116,7 +116,7 @@ div.posts .post form textarea.newpost {
|
||||
}
|
||||
|
||||
/* mobile */
|
||||
@media only screen and (max-width: 1000px) {
|
||||
@media only screen and (max-width: 1080px) {
|
||||
.post-box {
|
||||
width: calc(100% - 65px);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user