forked from verythorough/eye-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (49 loc) · 895 Bytes
/
style.css
File metadata and controls
64 lines (49 loc) · 895 Bytes
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
body {
font-family: sans-serif;
width: 100vw; }
.chart {
position: relative;
width: 100%;
height: 96vh;
font-weight: bold; }
.letter-box {
display: flex;
flex-direction: column;
justify-content: space-between; }
#letter-box-1 {
width: 100%;
height: 100%;
font-family: serif; }
#letter-box-2 {
width: 60%;
height: 66%; }
#letter-box-3 {
width: 38%;
height: 48%; }
#letter-box-4 {
width: 30%;
height: 38%; }
#letter-box-5 {
width: 18%;
height: 20%; }
.letter-row {
display: flex;
justify-content: space-between; }
.singleton {
justify-content: center; }
#focus-point {
width: 5%;
height: 5%; }
img {
max-width: 100%; }
.large-letters {
font-size: 20vh; }
.medium-letters {
font-size: 10vh; }
.small-letters {
font-size: 5vh; }
.centered {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); }