forked from alexbain/lirc_web
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.less
More file actions
126 lines (103 loc) · 1.68 KB
/
app.less
File metadata and controls
126 lines (103 loc) · 1.68 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Colors
@colorWetAsphalt: #34495E;
@colorConcrete: #95A5A6;
@colorSilver: #BDC3C7;
@colorClouds: #ECF0F1;
@colorPeterRiver: #3498DB;
@colorGreenSea: #16A085;
@colorTurqoise: #1ABC9C;
body {
margin: 0;
padding: 70px 0 0 0;
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
-webkit-highlight: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.commands li {
margin: 20px 0;
padding: 0;
}
h1 {
background: @colorWetAsphalt;
color: #fff;
margin: 0 0 30px;
padding: 10px 0;
text-align: center;
z-index: 5;
left: 0;
position: fixed;
top: 0;
width: 100%;
&.is-remote {
background: @colorPeterRiver;
}
}
.command {
margin: 20px 0;
}
.command:nth-child(even) .btn-primary {
background: @colorGreenSea;
}
.no-touch .command-link:hover {
background: #2fe2bf;
}
.no-touch .command-link:active {
background: #16a085;
}
.command-link.active {
background: #2fe2bf !important;
}
.remote-link.active {
background: #5dade2 !important;
}
.btn-wide {
padding-left: 0;
padding-right: 0;
width: 100%;
}
.remote {
margin: 0;
padding: 0;
position: relative;
}
.remotes-nav {
}
.remotes-nav li {
margin: 20px 0;
}
.back {
position: absolute;
top: 7px;
left: 8px;
}
a,
a:hover,
a:active,
.btn,
.btn:hover,
.btn:active {
-webkit-transition: 0s !important;
-moz-transition: 0s !important;
-o-transition: 0s !important;
transition: 0s !important;
-webkit-backface-visibility: hidden !important;
}
#container {
margin: 0 40px;
}
.remote {
display: none;
}
.remote.active {
display: block;
}
.hidden {
display: none !important;
}