-
Notifications
You must be signed in to change notification settings - Fork 0
/
presenter.less
74 lines (63 loc) · 1.12 KB
/
presenter.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
@import "colors.less";
body {
display: flex;
flex-flow: column nowrap;
font-family: Monaco;
margin: 0;
background:black;
color: white;
font-size: 16pt;
font-weight: bold;
}
button.timer {
position: fixed;
background: white;
border-radius: 16px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
top: 9px; right: 9px;
padding: 8px;
font-size: 18px;
z-index: 100;
outline: none;
font-family: Monaco;
&:active {
border: thin solid @blue;
}
&.running {
border: thin solid fuchsia;
color: fuchsia;
}
}
build-note {
display: block;
position: relative;
margin: 0;
padding: 16px;
border-bottom: thin solid darkgray;
&.current {
> .title,
> .timer {
color: white;
}
color: white;
font-weight: bold;
border-color: fuchsia;
background: rgba(255, 20, 145, 0.495);
}
> .title {
font-size: 16px;
font-weight: bold;
padding: 6px;
color: @electric-blue;
display: inline-block;
border-radius: 6px;
}
> .timer {
position: absolute;
top: 9px; right: 9px;
color: black;
}
> .note {
white-space: pre-line;
}
}