-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
111 lines (95 loc) · 1.92 KB
/
style.css
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
/*
* style.css
* part of WebUI for OneShot
* author eda-abec, (c) 2021
*
*
* values surrounded by '@' are to be filled at runtime
*/
body {
background-color: @color_bg_dark@;
font-family: monospace, monospace;
}
a {
text-decoration: none;
color: @color_text@;
/* not using this is deliberate. Without forcing, it highlights already clicked nets */
/* color: black; */
}
a:link {
color: inherit;
}
/* Floating Action Button */
#fab {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: @color_accent@;
color: white;
border-radius: 50px;
text-align: center;
vertical-align: middle;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.32);
cursor: pointer;
font-size: 40px;
z-index: 999;
}
table {
margin: 0;
position: absolute;
top: 35%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -35%);
background-color: @color_bg@;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.12);
border: none;
padding: 8px;
}
table #header {
background-color: @color_primary@;
}
table #header * {
background-color: @color_primary@;
border-radius: 0px;
color: white;
font-weight: bold;
padding: 4px;
padding-left: 8px;
padding-right: 8px;
}
td {
border: none;
border-radius: 50px;
}
td a {
display: block;
width: 100%;
height: 100%;
}
.flags {
text-shadow: 0 0 0 @color_bg_dark@;
font-size: 20px;
color: transparent;
}
#logareaWrapper {
/* TODO this still needs work */
margin: 0;
position: absolute;
left: 50%;
margin-right: -50%;
transform: translate(-50%, 0);
/* TODO border around */
/* padding: 16px; */
width: 96%;
min-height: 96%;
word-wrap: break-word;
background-color: @color_bg@;
box-shadow: 5px 5px 10px rgba(0, 0, 0,0.12);
}
#logarea {
padding: 16px;
background-color: @color_bg@;
}