-
Notifications
You must be signed in to change notification settings - Fork 0
/
numerals_styles.css
123 lines (97 loc) · 3.05 KB
/
numerals_styles.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
112
113
114
115
116
117
118
119
120
121
122
123
/* UPLOAD STAND SAT 20-JUL-24 */
* {
margin: 0;
padding: 0;
}
/* ### CHANGES FROM CHAT_GPT CODE ### */
body, html {
/* height: 100%; */ /* COMMENTED // NO EFFECT */
box-sizing: border-box; /* ADDED // (STILL CUTS INTO BORDER WIDTH WHEN 100%) */
}
.svg-container {
display: flex;
align-items: center;
/* JUSTIFY "CENTER" WAS ODD CHOICE */
/* PROBABLY "DEFAULT MAJORITY AESTHETIC" */
justify-content: left; /* CHANGED FROM "CENTER" TO "LEFT" */
height: 50vh; /* Set the height to half of the viewport height */
width: 100%; /* ### */
/* CONTENT (TOP ROW) OUTSIDE INITIAL VIEW-WIDTH REMAINS HIDDEN */
/* WHEN SCROLLING WINDOW (BOTTOM ROW) */
overflow-x: scroll; /* Enable horizontal scrolling if needed // DEFAULT IS "AUTO" */
overflow-y: hidden; /* ADDED // SEEMS TO ELIMINATE VERTICAL OVERFLOW */
}
.svg-element {
height: 99.25%; /* Set the height to 100% to match the container height */
/* USING 99 TO GET TOP AND BTM BORDER DISPLAYED */
/* width: auto; */ /* SVG will scale proportionally based on the height */
/* COMMENTED // IS DEFAULT */
/* THIS IS THE ## MAJOR ## HIT! */
flex-shrink: 0; /* Prevent elements from shrinking to fit */
border: 0px dashed rgba(200 200 200 / .5); /* ADDED FOR VIZ ONLY */
}
p {
/* PLATFORM-DEPENDENT DEFAULT FOR UI (MAC_OS = SF PRO) */
font-family: system-UI;
line-height: 0.96;
/* SF PRO TEXT/DISPLAY */
/* font-family: SF Pro Text; */
/* font-family: SF Pro Display; */ /* SMALLER X-HEIGHT */
/* line-height: 1; */
/* ZDF TYPE */
/* font-family: ZDF Type; */
/* font-family: ZDF Type Cond; */
/* line-height: 1.01; */
/* REAL */
/* font-family: Real Text Pro; */
/* line-height: 1.11; */
/* HELVETICA */
/* font-family: Helvetica; */
/* line-height: 1.18; */
}
.base {
font-weight: 500; /* 400 = REGULAR // 500 = MEDIUM */
font-size: 45.2vh;
color: rgba(100 255 100 / .75);
border: 0px solid rgba(0 0 255 / 1);
}
/* EFFECTING BASELINE SHIFT */
.typewrapper {
height: 99%;
vertical-align: top;
border: 1px solid rgba(255 0 0 / 1);
}
/* (IN SVG NAMESPACE) */
.typebox rect {
fill: none;
stroke: rgba(0 0 255 / 1);
stroke-width: 1px;
}
.typebox line {
fill: none;
stroke: rgba(0 0 255 / 1);
stroke-width: 1px;
}
.glyph {
fill: none;
stroke: rgba(100 255 100 / 0.75);
stroke-width: 100;
stroke-linecap: square; /* butt square round */
stroke-linejoin: round; /* bevel miter round */
}
/* OVERRIDE FOR TEST OF EXTENDED CURVED TERMINALS */
.extended {
stroke-linecap: butt; /* butt square round */
stroke-linejoin: bevel; /* bevel miter round */
}
/* SAME AS "TYPEBOX" BUT DIFFERENT COLORS */
.overlay rect {
fill: none;
stroke: rgba(255 0 0 / 1);
stroke-width: 1px;
}
.overlay line {
fill: none;
stroke: rgba(255 0 0 / 1);
stroke-width: 1px;
}