2015-10-16 15:12:49 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: 'sawasdeeregular';
|
|
|
|
src: url('../fonts/sawasdee-webfont.woff2') format('woff2');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2015-08-20 18:41:51 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
2015-08-26 20:17:18 +02:00
|
|
|
padding: 0;
|
2015-08-20 18:41:51 +02:00
|
|
|
margin: 0;
|
2015-10-16 15:12:49 +02:00
|
|
|
font-family: 'sawasdeeregular';
|
2015-08-26 20:17:18 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
color: white;
|
|
|
|
overflow-x: hidden;
|
2015-10-29 11:32:07 +01:00
|
|
|
background: url('../img/background.svg');
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-10-16 15:12:49 +02:00
|
|
|
|
|
|
|
/* Common */
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.alert.alert-default {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
2015-10-16 15:12:49 +02:00
|
|
|
.app-icon {
|
|
|
|
background-position: center center;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
/* Launcher View */
|
|
|
|
|
|
|
|
.launcher {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2015-10-16 15:12:49 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
2015-08-26 20:17:18 +02:00
|
|
|
}
|
|
|
|
|
2015-10-20 13:15:27 +02:00
|
|
|
.launcher > .crossfade-image {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-28 17:22:14 +01:00
|
|
|
.launcher .crossfade-image .top,
|
|
|
|
.launcher .crossfade-image .bottom {
|
2015-10-20 13:15:27 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2015-10-12 17:44:18 +02:00
|
|
|
.launcher .main {
|
|
|
|
flex-direction: row;
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.launcher .nav {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2015-10-16 15:12:49 +02:00
|
|
|
width: 60px;
|
2015-10-29 11:32:07 +01:00
|
|
|
z-index: 10;
|
2015-08-26 20:17:18 +02:00
|
|
|
}
|
|
|
|
|
2015-10-12 17:44:18 +02:00
|
|
|
.launcher .nav a.goback {
|
2015-08-26 20:17:18 +02:00
|
|
|
text-decoration: none;
|
|
|
|
color: white;
|
2015-10-12 17:44:18 +02:00
|
|
|
font-size: 60px;
|
|
|
|
text-shadow: 1px 1px #444;
|
2015-10-16 15:12:49 +02:00
|
|
|
font-family: sans-serif;
|
2015-08-26 20:17:18 +02:00
|
|
|
}
|
|
|
|
|
2015-10-12 17:44:18 +02:00
|
|
|
.launcher .nav a.goback:hover {
|
2015-08-26 20:17:18 +02:00
|
|
|
-webkit-animation: 500ms pulse-large infinite;
|
|
|
|
}
|
|
|
|
|
2015-10-12 17:44:18 +02:00
|
|
|
.launcher .category-header {
|
|
|
|
padding: 25px 40px 0;
|
|
|
|
font-size: 50px;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: 1px 1px #444;
|
2015-10-29 17:39:36 +01:00
|
|
|
z-index: 10;
|
2015-10-12 17:44:18 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher .category-header > .category-label {
|
|
|
|
float: right;
|
2015-10-20 11:07:06 +02:00
|
|
|
font-size: 46px;
|
|
|
|
letter-spacing: -4px;
|
|
|
|
text-shadow: none;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher .category-header .goback {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.launcher ul.apps-list {
|
2015-08-20 18:41:51 +02:00
|
|
|
margin: 0;
|
2015-10-16 15:12:49 +02:00
|
|
|
padding: 0 20%;
|
2015-08-20 18:41:51 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
list-style: none;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
2015-08-26 20:17:18 +02:00
|
|
|
flex-grow: 1;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-10-12 17:44:18 +02:00
|
|
|
.launcher .nav ~ ul.apps-list {
|
2015-10-16 15:12:49 +02:00
|
|
|
margin-left: -60px;
|
2015-10-12 17:44:18 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher li.app-item {
|
2015-08-20 18:41:51 +02:00
|
|
|
margin: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
box-shadow: 5px 5px 30px -2px rgba(0,0,0,0.5);
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 10px 5px;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 5px;
|
|
|
|
transition: 150ms linear;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2015-09-18 12:13:24 +02:00
|
|
|
width: 125px;
|
|
|
|
height: 125px;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher li.app-item::after {
|
2015-08-20 18:41:51 +02:00
|
|
|
content: ' ';
|
|
|
|
display: block;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
|
|
width: 150%;
|
|
|
|
height: 125%;
|
|
|
|
position: absolute;
|
|
|
|
left: -50%;
|
|
|
|
top: -75%;
|
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher li.app-item:hover {
|
2015-08-20 18:41:51 +02:00
|
|
|
background-color: rgba(0,0,0,0.6);
|
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher li.app-item > .app-icon {
|
2015-10-16 15:12:49 +02:00
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
margin: auto;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.launcher li.app-item > .app-label {
|
2015-08-20 18:41:51 +02:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
2015-09-18 12:13:24 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 90%;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: auto;
|
2015-08-20 18:41:51 +02:00
|
|
|
}
|
|
|
|
|
2015-08-28 14:20:07 +02:00
|
|
|
/* Edit View */
|
|
|
|
|
2015-08-30 21:29:19 +02:00
|
|
|
.edit {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex-direction: column;
|
2015-10-29 16:36:44 +01:00
|
|
|
background-color: #f7f7f7;
|
2015-08-30 21:29:19 +02:00
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.edit .title {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2015-09-18 12:13:24 +02:00
|
|
|
.edit .menu-bar {
|
|
|
|
padding: 5px 10px;
|
2015-10-13 17:27:15 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2015-09-18 12:13:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit .menu-bar button {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
2015-10-13 17:27:15 +02:00
|
|
|
.edit .left {
|
2015-10-13 20:44:55 +02:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
2015-10-13 17:27:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit .main {
|
|
|
|
flex: 3;
|
2015-10-13 20:44:55 +02:00
|
|
|
display: flex;
|
2015-10-13 17:27:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit .right {
|
|
|
|
flex: 1;
|
2015-10-13 20:44:55 +02:00
|
|
|
display: flex;
|
2015-10-13 17:27:15 +02:00
|
|
|
}
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.edit .workspace {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 10px;
|
2015-10-13 20:44:55 +02:00
|
|
|
flex: 1;
|
2015-09-11 16:25:45 +02:00
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.edit .workspace .main {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.edit .left-menu {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2015-09-16 17:26:56 +02:00
|
|
|
overflow-y: auto;
|
2015-09-11 16:25:45 +02:00
|
|
|
}
|
|
|
|
|
2015-10-13 17:27:15 +02:00
|
|
|
.edit .workspace .left .apps-menu {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.edit .workspace .right {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.edit .item-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2015-09-17 17:29:59 +02:00
|
|
|
flex: 2;
|
2015-09-11 16:25:45 +02:00
|
|
|
}
|
|
|
|
|
2015-09-18 12:13:24 +02:00
|
|
|
.edit .item-form > form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.edit .apps-list {
|
|
|
|
overflow: auto;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.edit .apps-list .icon-theme-selector > select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit .apps-list ul.desktop-apps {
|
2015-08-28 14:20:07 +02:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
2015-09-11 16:25:45 +02:00
|
|
|
height: 100%;
|
2015-10-13 17:27:15 +02:00
|
|
|
display: block;
|
2015-10-13 20:44:55 +02:00
|
|
|
margin-right: 5px;
|
2015-08-28 14:20:07 +02:00
|
|
|
}
|
|
|
|
|
2015-09-03 15:50:23 +02:00
|
|
|
.edit .desktop-app > .app-icon {
|
2015-10-13 20:44:55 +02:00
|
|
|
height: 20px;
|
2015-10-16 15:12:49 +02:00
|
|
|
width: 20px;
|
2015-08-28 14:20:07 +02:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2015-10-13 20:44:55 +02:00
|
|
|
.edit .desktop-app.list-group-item {
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
2015-09-11 16:25:45 +02:00
|
|
|
.edit .profile-tree {
|
|
|
|
padding: 0 5px;
|
2015-10-13 20:44:55 +02:00
|
|
|
width: 100%;
|
2015-10-19 09:02:10 +02:00
|
|
|
height: 100%;
|
2015-11-03 17:45:37 +01:00
|
|
|
overflow-y: auto;
|
2015-09-11 16:25:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit .profile-tree ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit .profile-tree > .tree-item > ul {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit .profile-tree .tree-item .alert {
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit .profile-tree .tree-item .app-icon {
|
|
|
|
height: 25px;
|
2015-10-16 15:12:49 +02:00
|
|
|
width: 25px;
|
2015-09-11 16:25:45 +02:00
|
|
|
margin-right: 5px;
|
2015-10-16 15:12:49 +02:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2015-09-11 16:25:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit .app-item-edit {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
/* Animations */
|
|
|
|
|
2015-10-29 09:36:42 +01:00
|
|
|
.crossfade-leave {
|
2015-10-28 17:22:14 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.crossfade-leave.crossfade-leave-active {
|
|
|
|
opacity: 0.01;
|
2015-10-29 09:36:42 +01:00
|
|
|
transition: opacity 500ms ease-in-out;
|
2015-10-28 17:22:14 +01:00
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
.pulse {
|
2015-08-20 18:41:51 +02:00
|
|
|
-webkit-animation: 1s pulse infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes pulse {
|
|
|
|
0% { transform: scale(1); }
|
|
|
|
50% { transform: scale(1.1); }
|
|
|
|
100% { transform: scale(1); }
|
|
|
|
}
|
2015-08-26 20:17:18 +02:00
|
|
|
|
|
|
|
@-webkit-keyframes pulse-large {
|
|
|
|
0% { transform: scale(1); }
|
2015-10-12 17:44:18 +02:00
|
|
|
50% { transform: scale(1.3); }
|
2015-08-26 20:17:18 +02:00
|
|
|
100% { transform: scale(1); }
|
|
|
|
}
|
|
|
|
|
2015-10-20 13:15:27 +02:00
|
|
|
@-webkit-keyframes fade-out {
|
|
|
|
0% { opacity: 1; }
|
|
|
|
1% { opacity: 0.99; }
|
|
|
|
99% { opacity: 0.01; }
|
|
|
|
100% { opacity: 0; }
|
|
|
|
}
|
|
|
|
|
2015-08-26 20:17:18 +02:00
|
|
|
@-webkit-keyframes slide-in-left {
|
|
|
|
0% { transform: translateX(-100%); }
|
|
|
|
100% { transform: translateX(0%); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes slide-in-right {
|
|
|
|
0% { transform: translateX(100%); }
|
|
|
|
100% { transform: translateX(0%); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes slide-out-left {
|
|
|
|
0% { transform: translateX(0%); }
|
|
|
|
100% { transform: translateX(-100%); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes slide-out-right {
|
|
|
|
0% { transform: translateX(0%); }
|
|
|
|
100% { transform: translateX(100%); }
|
|
|
|
}
|