-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (52 loc) · 840 Bytes
/
Copy pathstyles.css
File metadata and controls
53 lines (52 loc) · 840 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
body,
html {
padding: 0;
margin: 0;
}
* {
box-sizing: border-box;
}
.container {
text-align: center;
margin-top: 50px;
padding-bottom: 2rem;
}
#jsonDisplay {
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-around;
}
#gridContainer {
margin-top: 20px;
display: flex;
align-items: center;
flex-direction: column;
}
#getText {
margin: 1rem 0;
}
textarea {
width: 50vw;
min-height: 10vw;
overflow: auto;
}
.newLine {
margin: 0 0; /* Adjust the margin as needed */
padding: 0 0;
display: flex;
flex-direction: row;
align-items: center;
}
.cell {
display: inline-block;
border: 1px solid #2c012c;
background-color: #690069;
margin: 0;
outline: 0;
vertical-align: top; /* Add this line */
}
#jsonDisplay {
margin-top: 20px;
white-space: pre-wrap;
}