-
Notifications
You must be signed in to change notification settings - Fork 2
/
static.css
105 lines (92 loc) · 1.16 KB
/
static.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
body, html
{
height: 100%;
}
body
{
font-family: "PT Sans", "Sans";
margin: 0px;
}
ul
{
list-style-type: square;
}
#content
{
height: 100%;
}
#content > div
{
}
#heading
{
position: relative;
z-index: 2;
margin-top: 0px;
margin-bottom: 0px;
text-align: center;
background: #fff;
height: 5%;
}
#left
{
float: left;
z-index: 0;
width: 85%;
height: 95%;
}
#faces
{
max-height: 100%;
position: relative;
z-index: 0;
overflow: auto;
}
#names
{
position: relative;
float: right;
z-index: 1;
width: 15%;
height: 95%;
overflow-y: auto;
background-color: #fff;
}
.highlight
{
background-color: pink;
}
#faces > img
{
z-index: 0;
}
.divider
{
margin: 0em 1em 1em 0em;
background-color: #fff;
height: 1em;
border-bottom: 3px dashed #888;
}
#pointer
{
display: block;
visibility: hidden;
position: fixed;
z-index: 1;
background-color: rgba(255,255,255,0.0);
border: 3px solid red;
/* box-shadow: 0px 0px 50px 25px black; */
box-shadow: 0px 0px 0px 3px black;
}
#footer
{
position: absolute;
bottom: 3%;
left: 3%;
width: 50%;
border-radius: 1em;
padding: 1em;
margin-left: auto;
margin-right: auto;
background-color: rgba(127,255,127,0.8);
}