-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.less
83 lines (79 loc) · 1.11 KB
/
style.less
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
html, body {
margin: 0px;
padding: 0px;
height: 100%;
font-family: 'Apple Chancery', Arial;
}
.background {
position: absolute;
z-index: 0;
width: 100%;
img {
width: 100%;
}
}
#room {
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
.clientsConnected {
position: absolute;
color: #bbb;
font-size: 360%;
opacity: 0.7;
margin-left: 15px;
-webkit-transform: rotate(-4deg);
}
}
.note {
position: absolute;
background-image: url(note.png);
width: 100px;
height: 65px;
color: white;
.text {
margin: 8px;
text-align: center;
font-size: 90%;
-webkit-transform: rotate(7deg);
}
}
.light {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
.lamp {
position: absolute;
right: 125px;
top: 180px;
width: 100px;
height: 50px;
overflow: hidden;
z-index: 2;
ellipse {
fill: #d8cec0;
opacity: 0.5;
}
}
.overlay {
background-color: #000;
opacity: 0.4;
min-height: 100%;
width: 100%;
}
&.on {
.lamp {
ellipse {
fill: #fbf149;
}
}
.overlay {
background-color: #fbf149;
opacity: 0.1;
min-height: 100%;
width: 100%;
}
}
}