-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
103 lines (96 loc) · 1.85 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
html {
margin: 0;
height: 100%;
-ms-touch-action: none;
}
a {
color: white;
text-decoration: none;
}
body {
font-family: "Segoe UI";
font-weight: lighter;
margin: 0;
overflow-x: hidden;
overflow-y: hidden;
margin-left: 12px;
width: 600px;
background-image: url("back3.jpg");
background-size: cover;
color: white;
}
section {
&.dashboard {
float: left;
height: inherit;
header {
margin-left: 8px;
}
padding: 4px;
}
&#blades {
padding: 0;
height: inherit;
section.blade {
display: none;
float: left;
margin-left: 2px;
min-height: 400px;
min-width: 300px;
height: inherit;
background-color: rgba(64,64,64,0.4);
header {
margin:0;
padding: 8px;
background-color: rgba(64,64,64,0.6);
div.actions {
float: right;
}
}
aside {
margin: 4px;
input {
width: 100%;
background-color: rgba(64,64,64,0.6);
border: none;
color: white;
font-family: "Segoe WP light";
}
}
}
}
}
section.tiles {
min-height: 300px;
width: 500px;
.tile {
&.size1x1 { width: 50px; height: 50px; }
&.size2x2 { width: 108px; height: 108px; }
&.size4x2 { width: 224px; height: 108px; }
&.size4x4 { width: 224px; height: 224px; }
&.size6x4 { width: 340px; height: 224px; }
object {
width: inherit; height: inherit; pointer-events:none;
}
float: left;
background-color: #444;
margin: 4px;
position: relative;
cursor: pointer;
.label {
position: absolute;
bottom: 4px;
left: 4px;
color: white;
font-size: 12px;
}
}
}
footer {
font-size: 12px;
position: absolute;
bottom: 12px;
left: 20px;
padding: 4px;
background-color: rgba(64,64,64,0.6);
}